diff --git a/.github/workflows/schema-update.yml b/.github/workflows/schema-update.yml index 9e58c7d..3ed276f 100644 --- a/.github/workflows/schema-update.yml +++ b/.github/workflows/schema-update.yml @@ -65,7 +65,7 @@ jobs: run: | git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" - git add src/rsc/schema.py src/rsc/mcp_index.json src/rsc/mcp_types.json src/rsc/mcp_bm25_corpus.json src/rsc/mcp_fields_corpus.json pyproject.toml + git add src/rsc/schema.py src/rsc/mcp_index.json src/rsc/mcp_types.json src/rsc/mcp_bm25_corpus.json src/rsc/mcp_fields_corpus.json src/rsc/mcp_types_bm25_corpus.json pyproject.toml git restore --staged .github/ git commit -m "chore: generate schema for ${{ steps.schema.outputs.date }}" git pull --rebase origin main diff --git a/src/rsc/__init__.py b/src/rsc/__init__.py index eef8b8f..29aa21e 100644 --- a/src/rsc/__init__.py +++ b/src/rsc/__init__.py @@ -2,6 +2,7 @@ from .fields import field_index_schema_version, search_fields from .index import ( search_operations, + search_types, describe_operation, describe_type, list_queries, @@ -19,4 +20,5 @@ "list_types", "search_fields", "search_operations", + "search_types", ] diff --git a/src/rsc/index.py b/src/rsc/index.py index 98d1656..ade3680 100644 --- a/src/rsc/index.py +++ b/src/rsc/index.py @@ -28,6 +28,8 @@ _types_index: dict | None = None _bm25_index: object | None = None # rank_bm25.BM25Okapi once loaded _bm25_meta: list[dict] | None = None +_types_bm25_index: object | None = None # rank_bm25.BM25Okapi once loaded +_types_bm25_meta: list[dict] | None = None _CAMEL_RE = re.compile(r"[A-Z][a-z]+|[a-z]+|[A-Z]+(?=[A-Z]|$)|\d+") @@ -78,6 +80,19 @@ def _get_bm25(): return _bm25_index, _bm25_meta +def _get_types_bm25(): + global _types_bm25_index, _types_bm25_meta + if _types_bm25_index is None: + from rank_bm25 import BM25Okapi # type: ignore + + data = json.loads( + (importlib.resources.files("rsc") / "mcp_types_bm25_corpus.json").read_text() + ) + _types_bm25_meta = data["meta"] + _types_bm25_index = BM25Okapi(data["corpus"]) + return _types_bm25_index, _types_bm25_meta + + def search_operations(search: str, operation_type: str = "all") -> list[dict]: """Search queries and/or mutations by BM25 relevance with camelCase tokenization. @@ -119,6 +134,40 @@ def search_operations(search: str, operation_type: str = "all") -> list[dict]: return results +def search_types(search: str) -> list[dict]: + """Search the schema's type graph by BM25 relevance. + + Each result is a GraphQL type whose fields semantically match the query. + The 'ops' field lists operations that return this type — use as candidates + when finding an operation for a domain concept (e.g. 'cluster', 'SLA domain'). + + Args: + search: Natural-language query or keywords. + + Returns: + List of dicts with keys: name, ops, score. + """ + index, meta = _get_types_bm25() + raw_tokens = _split_camel(search) + search.lower().split() + query_tokens = [_stem(t) for t in raw_tokens] + scores = index.get_scores(query_tokens) + + candidates = [(i, float(scores[i])) for i in range(len(meta))] + candidates.sort(key=lambda x: x[1], reverse=True) + + results = [] + for i, score in candidates[:10]: + if score <= 0: + break + m = meta[i] + results.append({ + "name": m["name"], + "ops": m["ops"], + "score": round(score, 4), + }) + return results + + def describe_operation(name: str, operation_type: str) -> dict: """Return the full signature for a query or mutation. diff --git a/src/rsc/mcp_indexer.py b/src/rsc/mcp_indexer.py index be9b748..4628dbf 100644 --- a/src/rsc/mcp_indexer.py +++ b/src/rsc/mcp_indexer.py @@ -263,6 +263,137 @@ def build_fields_corpus(types: dict, schema_version: str, out_dir: Path) -> None print(f" mcp_fields_corpus.json: {len(corpus)} fields ({corpus_path.stat().st_size // 1024}KB)", flush=True) +_TYPE_SKIP_FIELDS = frozenset({ + "edges", "nodes", "pageInfo", "endCursor", "startCursor", + "hasNextPage", "hasPreviousPage", "cursor", +}) + +_SYNONYMS: dict[str, list[str]] = { + "org": ["organization", "organizations"], + "vm": ["virtual", "machine"], +} + + +def _expand_synonyms(tokens: list[str]) -> list[str]: + """Return tokens with synonym expansions appended for known abbreviations.""" + result = list(tokens) + for t in tokens: + if t in _SYNONYMS: + result.extend(_SYNONYMS[t]) + return result + + +def build_types_bm25_corpus(ops: dict, types: dict, out_dir: Path) -> None: + """Build per-type BM25 search corpus and save mcp_types_bm25_corpus.json. + + Indexes every object and interface type that is reachable from at least one + operation. Each document aggregates field-name tokens (with synonym expansion) + and the first 8 words of each field description. Connection fields are followed + one level deep so that, e.g., a ``clustersConnection`` field on a parent type + also contributes Cluster's own field vocabulary to the parent document. + + Ops resolution per type: + - Direct: operations whose return type is TypeName or TypeNameConnection. + - Node: if XConnection.nodes → X, X inherits ops returning XConnection. + - Interface: if TypeA implements InterfaceB, TypeA inherits ops returning + InterfaceB or InterfaceBConnection. + """ + # ------------------------------------------------------------------ + # Step 1: build bare-type-name → op-name mapping + # ------------------------------------------------------------------ + type_to_ops: dict[str, list[str]] = {} + + for _op_type, pool in [("query", ops["queries"]), ("mutation", ops["mutations"])]: + for op_name, op_info in pool.items(): + bare = op_info["return_type"].strip("[]!").strip() + if not bare: + continue + if bare.endswith("Connection"): + # The Connection type itself gets the op. + type_to_ops.setdefault(bare, []).append(op_name) + # Resolve Connection → node type via Connection.nodes field. + conn_td = types.get(bare, {}) + nodes_field = conn_td.get("fields", {}).get("nodes", {}) + node_bare = nodes_field.get("type", "").strip("[]!").strip() + if node_bare and node_bare not in _SCALARS: + type_to_ops.setdefault(node_bare, []).append(op_name) + else: + type_to_ops.setdefault(bare, []).append(op_name) + + # ------------------------------------------------------------------ + # Step 2: interface inheritance — propagate interface ops to implementors + # ------------------------------------------------------------------ + for type_name, td in types.items(): + if td.get("kind") != "type": + continue + for iface_name in td.get("implements", []): + # Direct interface ops + for op_name in type_to_ops.get(iface_name, []): + type_to_ops.setdefault(type_name, []).append(op_name) + # Interface connection ops (InterfaceNameConnection) + iface_conn = iface_name + "Connection" + for op_name in type_to_ops.get(iface_conn, []): + type_to_ops.setdefault(type_name, []).append(op_name) + + # ------------------------------------------------------------------ + # Step 3: build corpus — one document per reachable type + # ------------------------------------------------------------------ + corpus: list[list[str]] = [] + meta: list[dict] = [] + + for type_name, td in types.items(): + if td.get("kind") not in ("type", "interface"): + continue + op_list = type_to_ops.get(type_name, []) + if not op_list: + continue + + # Deduplicate while preserving insertion order. + seen_ops: set[str] = set() + deduped_ops: list[str] = [] + for op in op_list: + if op not in seen_ops: + seen_ops.add(op) + deduped_ops.append(op) + + # Token construction: + # 1. Type name tokens with synonym expansion. + tokens = _expand_synonyms(_split_camel(type_name)) + + for field_name, finfo in td.get("fields", {}).items(): + if field_name in _TYPE_SKIP_FIELDS: + continue + # 2a. Field name tokens with synonym expansion. + tokens.extend(_expand_synonyms(_split_camel(field_name))) + # 2b. First 8 words of field description. + desc = finfo.get("description") + if desc: + tokens.extend(desc.lower().split()[:8]) + # 3. Follow Connection fields one level deep (depth=0, no recursion). + field_bare = finfo.get("type", "").strip("[]!").strip() + if field_bare.endswith("Connection"): + conn_td = types.get(field_bare, {}) + nodes_field = conn_td.get("fields", {}).get("nodes", {}) + node_bare = nodes_field.get("type", "").strip("[]!").strip() + if node_bare and node_bare not in _SCALARS: + node_td = types.get(node_bare, {}) + for sub_fname in node_td.get("fields", {}).keys(): + if sub_fname in _TYPE_SKIP_FIELDS: + continue + tokens.extend(_expand_synonyms(_split_camel(sub_fname))) + + corpus.append(_stem_all(tokens)) + meta.append({"name": type_name, "ops": deduped_ops}) + + out = {"meta": meta, "corpus": corpus} + corpus_path = out_dir / "mcp_types_bm25_corpus.json" + corpus_path.write_text(json.dumps(out, separators=(",", ":"))) + print( + f" mcp_types_bm25_corpus.json: {len(corpus)} types ({corpus_path.stat().st_size // 1024}KB)", + flush=True, + ) + + def main() -> None: repo_root = Path(__file__).parent.parent.parent schemas_dir = repo_root / "schemas" @@ -289,6 +420,7 @@ def main() -> None: build_bm25_corpus(ops, types, out_dir) build_fields_corpus(types, schema_version, out_dir) + build_types_bm25_corpus(ops, types, out_dir) if __name__ == "__main__": diff --git a/src/rsc/mcp_types_bm25_corpus.json b/src/rsc/mcp_types_bm25_corpus.json new file mode 100644 index 0000000..e4da7ce --- /dev/null +++ b/src/rsc/mcp_types_bm25_corpus.json @@ -0,0 +1 @@ +{"meta":[{"name":"AccessGroup","ops":["sonarUserGroups"]},{"name":"AccessGroupConnection","ops":["sonarUserGroups"]},{"name":"AccessUser","ops":["sonarUsers"]},{"name":"AccessUserConnection","ops":["sonarUsers"]},{"name":"AccountProduct","ops":["allAccountProducts"]},{"name":"AccountSetting","ops":["accountSettings"]},{"name":"AcknowledgeClusterNotificationReply","ops":["acknowledgeClusterNotification"]},{"name":"ActivateDataCategoryReply","ops":["activateDataCategory"]},{"name":"ActivateDataTypeReply","ops":["activateDataType"]},{"name":"ActivateDocumentAttributeReply","ops":["activateDocumentAttribute"]},{"name":"ActiveDirectoryDomain","ops":["activeDirectoryDomain","activeDirectoryDomains","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"ActiveDirectoryDomainConnection","ops":["activeDirectoryDomains"]},{"name":"ActiveDirectoryDomainController","ops":["activeDirectoryDomainController","activeDirectoryDomainControllers","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","cdmHierarchySnappableNew","cdmHierarchySnappablesNew"]},{"name":"ActiveDirectoryDomainControllerConnection","ops":["activeDirectoryDomainControllers"]},{"name":"ActiveDirectorySnappableSearchResponse","ops":["activeDirectorySearchSnapshots"]},{"name":"ActiveDirectorySnappableSearchResponseConnection","ops":["activeDirectorySearchSnapshots"]},{"name":"ActivityEntry","ops":["activities"]},{"name":"ActivityEntryConnection","ops":["activities"]},{"name":"ActivitySeries","ops":["activitySeries","activitySeriesConnection"]},{"name":"ActivitySeriesConnection","ops":["activitySeriesConnection"]},{"name":"ActivityTimelineResult","ops":["userActivityTimeline","userFileActivityTimeline"]},{"name":"ActivityTimelineResultConnection","ops":["userActivityTimeline","userFileActivityTimeline"]},{"name":"AdGroup","ops":["allO365AdGroups"]},{"name":"AdVolumeExport","ops":["adVolumeExports"]},{"name":"AdVolumeExportConnection","ops":["adVolumeExports"]},{"name":"AddAndJoinSmbDomainReply","ops":["addAndJoinSmbDomain"]},{"name":"AddAwsAuthenticationServerBasedCloudAccountReply","ops":["addAwsAuthenticationServerBasedCloudAccount"]},{"name":"AddAwsIamUserBasedCloudAccountReply","ops":["addAwsIamUserBasedCloudAccount"]},{"name":"AddAzureCloudAccountExocomputeConfigurationsReply","ops":["addAzureCloudAccountExocomputeConfigurations"]},{"name":"AddAzureCloudAccountReply","ops":["addAzureCloudAccount"]},{"name":"AddAzureCloudAccountWithoutOauthReply","ops":["addAzureCloudAccountWithoutOauth"]},{"name":"AddCloudDirectKerberosCredentialReply","ops":["addCloudDirectKerberosCredential"]},{"name":"AddCloudDirectSharesToSystemReply","ops":["addCloudDirectSharesToSystem"]},{"name":"AddCloudDirectSystemReply","ops":["addCloudDirectSystem"]},{"name":"AddCloudNativeSqlServerBackupCredentialsReply","ops":["addCloudNativeSqlServerBackupCredentials"]},{"name":"AddClusterCertificateReply","ops":["addClusterCertificate"]},{"name":"AddClusterNodesReply","ops":["addClusterNodes"]},{"name":"AddClusterRouteReply","ops":["addClusterRoute"]},{"name":"AddConfiguredGroupToHierarchyReply","ops":["addConfiguredGroupToHierarchy"]},{"name":"AddCrossAccountServiceConsumerReply","ops":["addCrossAccountServiceConsumer"]},{"name":"AddCustomIntelFeedReply","ops":["addCustomIntelFeed"]},{"name":"AddDb2InstanceReply","ops":["addDb2Instance"]},{"name":"AddGcpCloudAccountManualAuthProjectReply","ops":["addGcpCloudAccountManualAuthProject"]},{"name":"AddGlobalCertificateReply","ops":["addGlobalCertificate"]},{"name":"AddIdentityProviderReply","ops":["addIdentityProvider"]},{"name":"AddManagedVolumeReply","ops":["addManagedVolume"]},{"name":"AddMongoSourceReply","ops":["addMongoSource"]},{"name":"AddMysqldbInstanceResponse","ops":["addMysqlInstance"]},{"name":"AddO365OrgResponse","ops":["addO365Org","o365SaasSetupComplete"]},{"name":"AddOpsManagerMongoSourceResponse","ops":["addOpsManagerManagedMongoSource"]},{"name":"AddPostgreSqlDbClusterReply","ops":["addPostgreSQLDbCluster"]},{"name":"AddSapHanaSystemReply","ops":["addSapHanaSystem"]},{"name":"AddStorageArraysReply","ops":["addStorageArrays"]},{"name":"AddSyslogExportRuleReply","ops":["addSyslogExportRule"]},{"name":"AddVmAppConsistentSpecsReply","ops":["addVmAppConsistentSpecs"]},{"name":"AgentDeploymentSettings","ops":["agentDeploymentSetting","updateAgentDeploymentSetting"]},{"name":"AgentDeploymentSettingsInfo","ops":["allAgentDeploymentSettings"]},{"name":"AllEnabledFeaturesForAccountReply","ops":["allEnabledFeaturesForAccount"]},{"name":"AllRcvAccountEntitlements","ops":["allRcvAccountEntitlements"]},{"name":"AllStorageArraysReply","ops":["allStorageArrays"]},{"name":"AllWorkloadsRecoveryInfoReply","ops":["allWorkloadsRecoveryInfo"]},{"name":"AmiTypeForAwsNativeArchivedSnapshotExportReply","ops":["amiTypeForAwsNativeArchivedSnapshotExport"]},{"name":"AnalyzeO365MvbReply","ops":["analyzeO365Mvb"]},{"name":"AnalyzedColumn","ops":["fileSchemaResults"]},{"name":"AnalyzedColumnConnection","ops":["fileSchemaResults"]},{"name":"Analyzer","ops":["activeCustomAnalyzers","customAnalyzer","createCustomAnalyzer","updateCustomAnalyzer"]},{"name":"AnalyzerAccessUsage","ops":["userAnalyzerAccess"]},{"name":"AnalyzerAccessUsageConnection","ops":["userAnalyzerAccess"]},{"name":"AnalyzerConnection","ops":["activeCustomAnalyzers"]},{"name":"AnalyzerGroup","ops":["analyzerGroups"]},{"name":"AnalyzerGroupConnection","ops":["analyzerGroups"]},{"name":"AnalyzerUsage","ops":["analyzerUsages"]},{"name":"AnalyzerUsageConnection","ops":["analyzerUsages"]},{"name":"AnomalyResult","ops":["anomalyResults"]},{"name":"AnomalyResultConnection","ops":["anomalyResults"]},{"name":"AnomalyResultGroupedData","ops":["anomalyResultsGrouped"]},{"name":"AnomalyResultGroupedDataConnection","ops":["anomalyResultsGrouped"]},{"name":"AppAccessGraph","ops":["appAccessGraph"]},{"name":"AppAccessImpact","ops":["appAccessImpact"]},{"name":"AppAccessPrincipal","ops":["appAccessPrincipals"]},{"name":"AppAccessPrincipalConnection","ops":["appAccessPrincipals"]},{"name":"ApproveRcvPrivateEndpointReply","ops":["approveRcvPrivateEndpoint"]},{"name":"ArchivalEntity","ops":["archivalEntities"]},{"name":"ArchivalEntityConnection","ops":["archivalEntities"]},{"name":"ArchivalEntityTarget","ops":["archivalEntities"]},{"name":"ArchivalEntityTargetMapping","ops":["archivalEntities"]},{"name":"ArchivalLocationForFailoverGroup","ops":["archivalLocationsForFailoverGroup"]},{"name":"ArchivalLocationForFailoverGroupConnection","ops":["archivalLocationsForFailoverGroup"]},{"name":"ArchivalLocationForecast","ops":["allArchivalLocationForecasts"]},{"name":"ArchivalLocationForecastRefreshStatus","ops":["archivalLocationForecastRefreshStatus"]},{"name":"ArchivalMigrationInfo","ops":["archivalMigration"]},{"name":"ArchivalObjectInfo","ops":["allArchivalPerObjectInfo","archivalPerObjectInfo"]},{"name":"ArchivalObjectInfoConnection","ops":["allArchivalPerObjectInfo","archivalPerObjectInfo"]},{"name":"ArchivalStorageUsage","ops":["archivalStorageUsage"]},{"name":"ArchiveK8sClusterReply","ops":["archiveK8sCluster"]},{"name":"AssignCloudAccountToClusterReply","ops":["assignCloudAccountToCluster"]},{"name":"AssignMssqlSlaDomainPropertiesAsyncReply","ops":["assignMssqlSlaDomainPropertiesAsync"]},{"name":"AsyncDownloadReply","ops":["downloadAuditLogCsvAsync","downloadReportCsvAsync","downloadReportPdfAsync","sendScheduledReportAsync"]},{"name":"AsyncJobStatus","ops":["gcpNativeExportDisk","gcpNativeExportGceInstance","gcpNativeRestoreGceInstance","startAwsExocomputeDisableJob","startAwsNativeAccountDisableJob","startDisableAzureNativeSubscriptionProtectionJob","startEc2InstanceSnapshotExportJob","startExportAwsNativeEbsVolumeSnapshotJob","startExportAzureNativeManagedDiskJob","startExportAzureNativeVirtualMachineJob","startExportAzureSqlDatabaseDbJob","startExportAzureSqlManagedInstanceDbJob","startExportRdsInstanceJob","startRecoverAzureNativeStorageAccountJob","startRecoverS3SnapshotJob","startRestoreAwsNativeEc2InstanceSnapshotJob","startRestoreAzureNativeVirtualMachineJob","uploadDatabaseSnapshotToBlobstore"]},{"name":"AsyncRequestStatus","ops":["checkCloudComputeConnectivityJobProgress","db2DatabaseJobStatus","filesetRequestStatus","fusionComputeVmRequestStatus","hypervHostAsyncRequestStatus","hypervScvmmAsyncRequestStatus","hypervVirtualMachineAsyncRequestStatus","mssqlJobStatus","nutanixClusterAsyncRequestStatus","nutanixVmAsyncRequestStatus","oracleDatabaseAsyncRequestDetails","postgresDbClusterAsyncRequestStatus","recoverDb2DatabaseToEndOfBackup","recoverDb2DatabaseToPointInTime","supportBundle","vSphereVMAsyncRequestStatus","vcenterAsyncRequestStatus","addStorageArrayV1","assignSlaToMongoDbCollection","bulkCreateOnDemandMssqlBackup","bulkExportMssqlDatabases","bulkRecoverSapHanaDatabases","bulkTierExistingSnapshots","bulkUpdateSystemConfig","configureSapHanaRestore","createActiveDirectoryDownloadFilesJob","createActiveDirectoryLiveMount","createActiveDirectoryUnmount","createDomainControllerSnapshot","createDownloadSnapshotForVolumeGroup","createExchangeMount","createFilesetSnapshot","createFusionComputeMount","createFusionComputeVmBackup","createHypervVirtualMachineSnapshotDiskMount","createHypervVirtualMachineSnapshotMount","createK8sProtectionSetSnapshot","createMssqlLiveMount","createMssqlLogShippingConfiguration","createNutanixCluster","createOnDemandDb2Backup","createOnDemandExchangeBackup","createOnDemandMongoDatabaseBackup","createOnDemandMongoDatabaseBackupV2","createOnDemandMssqlBackup","createOnDemandMysqldbInstanceSnapshot","createOnDemandNutanixBackup","createOnDemandSapHanaBackup","createOnDemandSapHanaDataBackup","createOnDemandSapHanaStorageSnapshot","createOnDemandVolumeGroupBackup","createOpsManagerManagedMongoSourceOnDemandSnapshot","createOraclePdbRestore","createPureStorageProtectionGroupSnapshot","createSapHanaSystemRefresh","deleteDb2Database","deleteDb2Instance","deleteExchangeSnapshotMount","deleteFusionComputeMount","deleteFusionComputeVrm","deleteHypervVirtualMachineSnapshotMount","deleteK8sCluster","deleteK8sVmMount","deleteLogShipping","deleteManagedVolumeSnapshotExport","deleteMongoSource","deleteMssqlLiveMount","deleteMysqlInstance","deleteMysqldbInstanceLiveMount","deleteNasSystem","deleteNutanixCluster","deleteNutanixMountV1","deleteOracleMount","deletePostgreSQLDbCluster","deletePostgreSQLDbClusterLiveMount","deleteSapHanaSystem","deleteVolumeGroupMount","deleteVsphereLiveMount","discoverDb2Instance","discoverMongoSource","downloadActiveDirectorySnapshotFromLocation","downloadDb2Snapshot","downloadDb2SnapshotV2","downloadDb2SnapshotsForPointInTimeRecovery","downloadExchangeSnapshot","downloadExchangeSnapshotV2","downloadFilesFromFusionComputeSnapshot","downloadFilesManagedVolumeSnapshotFromArchivalLocation","downloadFilesNutanixSnapshot","downloadFilesNutanixSnapshotFromArchivalLocation","downloadFilesetSnapshot","downloadFilesetSnapshotFromLocation","downloadFromArchiveV2","downloadFusionComputeSnapshotFromLocation","downloadHypervSnapshotFromLocation","downloadHypervVirtualMachineLevelFiles","downloadHypervVirtualMachineSnapshot","downloadHypervVirtualMachineSnapshotFiles","downloadK8sProtectionSetSnapshotFiles","downloadK8sSnapshotFromLocation","downloadManagedVolumeFiles","downloadManagedVolumeFromLocation","downloadMongoCollectionSetSnapshotsForPointInTimeRecovery","downloadMongoOpsManagerSourceSnapshotsForPointInTimeRecovery","downloadMssqlDatabaseBackupFiles","downloadMssqlDatabaseFilesFromArchivalLocation","downloadNutanixSnapshot","downloadNutanixVdisks","downloadNutanixVmFromLocation","downloadOpenstackSnapshotFromLocation","downloadOracleDatabaseSnapshot","downloadOracleSnapshotFromLocation","downloadOracleSnapshotFromLocationV2","downloadPureStorageProtectionGroupSnapshotFromLocation","downloadSapHanaSnapshot","downloadSapHanaSnapshotFromLocation","downloadSapHanaSnapshotsForPointInTimeRecovery","downloadVolumeGroupSnapshotFiles","downloadVolumeGroupSnapshotFromLocation","downloadVsphereVirtualMachineFiles","expireDownloadedDb2Snapshots","expireDownloadedSapHanaSnapshots","expireMongoCollectionSetDownloadedSnapshots","expireMongoOpsManagerSourceDownloadedSnapshots","exportFusionComputeSnapshot","exportHypervVirtualMachine","exportK8sProtectionSetSnapshot","exportK8sVirtualMachineSnapshot","exportManagedVolumeSnapshot","exportMssqlDatabase","exportNutanixSnapshot","exportOracleDatabase","exportOracleTablespace","exportProxmoxVmSnapshot","exportPureStorageProtectionGroupSnapshot","exportSlaManagedVolumeSnapshot","failoverHaPolicy","filesetDownloadSnapshotFiles","filesetDownloadSnapshotFilesFromArchivalLocation","filesetExportSnapshotFiles","filesetRecoverFiles","filesetRecoverFilesFromArchivalLocation","generateFilesetBackupReport","generateSupportBundle","hypervOnDemandSnapshot","inplaceExportHypervVirtualMachine","inplaceExportNutanixSnapshot","instantRecoverHypervVirtualMachineSnapshot","instantRecoverOracleSnapshot","makePrimary","migrateFusionComputeMount","migrateNutanixMountV1","migrateVmDataStore","mountNutanixSnapshotV1","mountNutanixVdisks","mountOracleDatabase","patchMongoSource","patchOpsManagerManagedMongoSource","recoverCloudDirectMultiPaths","recoverCloudDirectNasShare","recoverCloudDirectPath","recoverMongoSource","recoverOpsManagerManagedMongoSource","recoverSapHanaDatabaseToFullBackup","recoverSapHanaDatabaseToPointInTime","refreshDb2Database","refreshDomain","refreshFusionComputeVrm","refreshHypervScvmm","refreshHypervServer","refreshK8sV2Cluster","refreshMysqlInstance","refreshNutanixCluster","refreshOracleDatabase","refreshPostgreSQLDbCluster","refreshVsphereVcenter","registerHypervScvmm","reseedLogShippingSecondary","resizeManagedVolume","restoreActiveDirectoryObjects","restoreDomainControllerSnapshot","restoreFilesFromFusionComputeSnapshot","restoreFilesNutanixSnapshot","restoreHypervVirtualMachineSnapshotFiles","restoreK8sProtectionSetSnapshot","restoreMssqlDatabase","restoreNutanixVmSnapshotFilesFromArchivalLocation","restoreOpenstackVmSnapshotFiles","restoreOracleLogs","restoreSapHanaSystemStorage","restoreVolumeGroupSnapshotFiles","retryAddMongoSource","retryAddOpsManagerManagedMongoSource","setWebSignedCertificate","startK8sDiagnosticsJob","startK8sVmMountJob","startVolumeGroupMount","takeManagedVolumeOnDemandSnapshot","takeMssqlLogBackup","takeOnDemandOracleDatabaseSnapshot","takeOnDemandOracleLogSnapshot","takeOnDemandPostgreSQLDbClusterSnapshot","triggerCloudComputeConnectivityCheck","unconfigureSapHanaRestore","updateMssqlLogShippingConfigurationV1","validateOracleDatabaseBackups","vmMakePrimary","vmwareDownloadSnapshotFromLocation","vsphereDeleteVcenter","vsphereExportSnapshotToStandaloneHostV2","vsphereOnDemandSnapshot","vsphereSnapshotConsistency","vsphereSnapshotDownloadFilesFromLocation","vsphereSnapshotRestoreFilesFromLocation","vsphereVmDownloadSnapshot","vsphereVmDownloadSnapshotFiles","vsphereVmExportSnapshotV2","vsphereVmExportSnapshotV3","vsphereVmExportSnapshotWithDownloadFromCloud","vsphereVmInitiateDiskMount","vsphereVmInitiateInPlaceRecovery","vsphereVmInitiateInstantRecoveryV2","vsphereVmInitiateLiveMountV2","vsphereVmMountRelocate","vsphereVmMountRelocateV2","vsphereVmRecoverFilesNew"]},{"name":"AtlassianSite","ops":["saasAppOrganizations","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AuthorizedOperations","ops":["allAuthorizationsForObjects"]},{"name":"AuthorizedPrincipal","ops":["ldapAuthorizedPrincipalConnection"]},{"name":"AuthorizedPrincipalConnection","ops":["ldapAuthorizedPrincipalConnection"]},{"name":"AwsAccount","ops":["allCloudAccounts","cloudAccount","createAwsAccount","createAzureAccount","updateAwsAccount","updateAzureAccount"]},{"name":"AwsArtifactsToDelete","ops":["awsArtifactsToDelete"]},{"name":"AwsCdmVersion","ops":["allAwsCdmVersions"]},{"name":"AwsCloudAccount","ops":["eligibleAccountsForMigrationToAwsOrg"]},{"name":"AwsCloudAccountConnection","ops":["eligibleAccountsForMigrationToAwsOrg"]},{"name":"AwsCloudAccountListSecurityGroupsResponse","ops":["awsCloudAccountListSecurityGroups"]},{"name":"AwsCloudAccountListSubnetsResponse","ops":["awsCloudAccountListSubnets"]},{"name":"AwsCloudAccountListVpcResponse","ops":["awsCloudAccountListVpcs"]},{"name":"AwsCloudAccountWithFeatures","ops":["allAwsCloudAccountsWithFeatures","awsCloudAccountWithFeatures"]},{"name":"AwsCloudAccountsMigrateInitiateReply","ops":["awsCloudAccountsMigrateInitiate"]},{"name":"AwsExocomputeClusterConnectReply","ops":["awsExocomputeClusterConnect"]},{"name":"AwsExocomputeConfig","ops":["allAwsExocomputeConfigs"]},{"name":"AwsExocomputeGetClusterConnectionInfoReply","ops":["awsExocomputeGetClusterConnectionInfo"]},{"name":"AwsFeatureConfig","ops":["allAwsCloudAccountConfigs"]},{"name":"AwsIamPairsWithMissingPermission","ops":["allIamPairsByCloudAccountAndLocation"]},{"name":"AwsNativeAccount","ops":["awsNativeAccount","awsNativeAccounts","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AwsNativeAccountConnection","ops":["awsNativeAccounts"]},{"name":"AwsNativeConfig","ops":["hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AwsNativeDynamoDbTable","ops":["awsNativeDynamoDbTable","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AwsNativeDynamoDbTablePointInTimeRestoreWindow","ops":["awsNativeDynamoDbTablePointInTimeRestoreWindow"]},{"name":"AwsNativeEbsVolume","ops":["awsNativeEbsVolume","awsNativeEbsVolumes","awsNativeEbsVolumesByName","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"AwsNativeEbsVolumeConnection","ops":["awsNativeEbsVolumes","awsNativeEbsVolumesByName"]},{"name":"AwsNativeEc2Instance","ops":["awsNativeEc2Instance","awsNativeEc2Instances","awsNativeEc2InstancesByName","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"AwsNativeEc2InstanceConnection","ops":["awsNativeEc2Instances","awsNativeEc2InstancesByName"]},{"name":"AwsNativeEc2InstanceTypeOffering","ops":["allEc2InstanceTypesByRegionFromAws"]},{"name":"AwsNativeRdsInstance","ops":["awsNativeRdsInstance","awsNativeRdsInstances","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AwsNativeRdsInstanceConnection","ops":["awsNativeRdsInstances"]},{"name":"AwsNativeRdsPointInTimeRestoreWindow","ops":["awsNativeRdsPointInTimeRestoreWindow"]},{"name":"AwsNativeRegionHierarchyObject","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AwsNativeRoot","ops":["awsNativeRoot"]},{"name":"AwsNativeS3Bucket","ops":["awsNativeS3Bucket","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AwsRegionDetailsReply","ops":["awsRegionDetails"]},{"name":"AwsRoleBasedAccount","ops":["allCloudAccounts","cloudAccount","createAwsAccount","createAzureAccount","updateAwsAccount","updateAzureAccount"]},{"name":"AwsTrustPolicy","ops":["awsTrustPolicy"]},{"name":"AwsValidatePermissionsReply","ops":["awsValidatePermissions"]},{"name":"AwsVpc","ops":["allVpcsByRegionFromAws","allVpcsFromAws"]},{"name":"AzureAccount","ops":["allCloudAccounts","cloudAccount","createAwsAccount","createAzureAccount","updateAwsAccount","updateAzureAccount"]},{"name":"AzureAdDirectory","ops":["azureAdDirectories","azureAdDirectory","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"AzureAdDirectoryConnection","ops":["azureAdDirectories"]},{"name":"AzureAdObject","ops":["azureAdObjectsByType","searchAzureAdSnapshot"]},{"name":"AzureAdObjectConnection","ops":["azureAdObjectsByType","searchAzureAdSnapshot"]},{"name":"AzureArmTemplateByFeature","ops":["allAzureArmTemplatesByFeature"]},{"name":"AzureBlobContainerCcprovision","ops":["allAzureBlobContainersByStorageAccount"]},{"name":"AzureBlobContainerCcprovisionConnection","ops":["allAzureBlobContainersByStorageAccount"]},{"name":"AzureCdmVersion","ops":["allAzureCdmVersions"]},{"name":"AzureCloudAccountAddWithCustomerAppInitiateReply","ops":["azureCloudAccountAddWithCustomerAppInitiate"]},{"name":"AzureCloudAccountDetailsForFeatureReply","ops":["azureCloudAccountDetailsForFeature"]},{"name":"AzureCloudAccountPermissionConfigResponse","ops":["azureCloudAccountPermissionConfig"]},{"name":"AzureCloudAccountSubscriptionWithFeatures","ops":["azureCloudAccountSubscriptionWithFeatures"]},{"name":"AzureCloudAccountTenant","ops":["allAzureCloudAccountTenants","azureCloudAccountTenant"]},{"name":"AzureCloudAccountTenantWithExoConfigs","ops":["azureCloudAccountTenantWithExoConfigs"]},{"name":"AzureClusterStorageAccountRedundancyReply","ops":["azureClusterStorageAccountRedundancy"]},{"name":"AzureDevOpsConnectionStatusSummaryReply","ops":["azureDevOpsConnectionStatusSummary"]},{"name":"AzureDevOpsOrgInfo","ops":["allAzureDevOpsOrgsInTenant"]},{"name":"AzureDevOpsOrganization","ops":["azureDevOpsOrganization","azureDevOpsOrganizations","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzureDevOpsOrganizationConnection","ops":["azureDevOpsOrganizations"]},{"name":"AzureDevOpsProject","ops":["azureDevOpsProject","azureDevOpsProjects","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzureDevOpsProjectConnection","ops":["azureDevOpsProjects"]},{"name":"AzureDevOpsRepository","ops":["azureDevOpsRepositories","azureDevOpsRepository","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"AzureDevOpsRepositoryConnection","ops":["azureDevOpsRepositories"]},{"name":"AzureEncryptionKey","ops":["allAzureEncryptionKeys"]},{"name":"AzureExocomputeConfigsInAccount","ops":["allAzureExocomputeConfigsInAccount"]},{"name":"AzureKeyVault","ops":["allAzureKeyVaultsByRegion"]},{"name":"AzureListManagementGroupHierarchyReply","ops":["azureListManagementGroupHierarchy"]},{"name":"AzureListManagementGroupsReply","ops":["azureListManagementGroups"]},{"name":"AzureLocationDetailType","ops":["allAzureRegionsWithAzDetails"]},{"name":"AzureManagedIdentity","ops":["allAzureManagedIdentities"]},{"name":"AzureNativeAvailabilitySet","ops":["allAzureNativeAvailabilitySetsByRegionFromAzure"]},{"name":"AzureNativeDiskEncryptionSet","ops":["allAzureDiskEncryptionSetsByRegion","allAzureDiskEncryptionSetsByRegionFromNativeId"]},{"name":"AzureNativeExportCompatibleDiskTypes","ops":["allAzureNativeExportCompatibleDiskTypesByRegionFromAzure"]},{"name":"AzureNativeExportCompatibleVmSizes","ops":["allAzureNativeExportCompatibleVmSizesByRegionFromAzure"]},{"name":"AzureNativeKeyVault","ops":["allAzureNativeKeyVaultsByRegionFromAzure"]},{"name":"AzureNativeManagedDisk","ops":["azureNativeManagedDisk","azureNativeManagedDisks","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzureNativeManagedDiskConnection","ops":["azureNativeManagedDisks"]},{"name":"AzureNativeRegionManagedObject","ops":["azureNativeRegions","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzureNativeRegionManagedObjectConnection","ops":["azureNativeRegions"]},{"name":"AzureNativeResourceGroup","ops":["azureNativeResourceGroup","azureNativeResourceGroupForSql","azureNativeResourceGroups","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzureNativeResourceGroupConnection","ops":["azureNativeResourceGroups"]},{"name":"AzureNativeRoot","ops":["azureNativeRoot"]},{"name":"AzureNativeSecurityGroup","ops":["allAzureNativeSecurityGroupsByRegionFromAzure"]},{"name":"AzureNativeSqlDatabasePointInTimeRestoreWindow","ops":["azureSqlDatabaseDbPointInTimeRestoreWindowFromAzure","azureSqlManagedInstanceDbPointInTimeRestoreWindowFromAzure"]},{"name":"AzureNativeStorageAccount","ops":["allAzureNativeStorageAccountsFromAzure"]},{"name":"AzureNativeSubnet","ops":["allAzureCloudAccountSubnetsByRegion","allAzureNativeSubnetsByRegionFromAzure"]},{"name":"AzureNativeSubscription","ops":["azureNativeSubscription","azureNativeSubscriptions","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzureNativeSubscriptionConnection","ops":["azureNativeSubscriptions"]},{"name":"AzureNativeVirtualMachine","ops":["azureNativeVirtualMachine","azureNativeVirtualMachines","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"AzureNativeVirtualMachineConnection","ops":["azureNativeVirtualMachines"]},{"name":"AzureNativeVirtualNetwork","ops":["allAzureNativeVirtualNetworks"]},{"name":"AzureNetworkSecurityGroupResp","ops":["azureO365CheckNSGOutboundRules"]},{"name":"AzureNetworkSubnetResp","ops":["azureO365CheckNetworkSubnet"]},{"name":"AzureNetworkSubnetUnusedAddrResp","ops":["azureO365GetNetworkSubnetUnusedAddr"]},{"name":"AzureOauthConsentKickoffReply","ops":["azureOauthConsentKickoff"]},{"name":"AzurePostgresFlexibleServer","ops":["azurePostgresFlexibleServer","azurePostgresFlexibleServers","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzurePostgresFlexibleServerConnection","ops":["azurePostgresFlexibleServers"]},{"name":"AzureRegionsResp","ops":["allHostedAzureRegions"]},{"name":"AzureResourceAvailabilityResp","ops":["azureO365CheckResourceGroupName","azureO365CheckStorageAccountAccessibility","azureO365CheckStorageAccountName","azureO365CheckSubscriptionQuota","azureO365CheckVirtualNetworkName"]},{"name":"AzureResourceGroup","ops":["allResourceGroupsFromAzure"]},{"name":"AzureResourceGroupInfo","ops":["allAzureNativeResourceGroupsInfoIfExist"]},{"name":"AzureRoleBasedAccount","ops":["allCloudAccounts","cloudAccount","createAwsAccount","createAzureAccount","updateAwsAccount","updateAzureAccount"]},{"name":"AzureSqlDatabaseDb","ops":["azureSqlDatabase","azureSqlDatabases","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzureSqlDatabaseDbConnection","ops":["azureSqlDatabases"]},{"name":"AzureSqlDatabaseServer","ops":["azureSqlDatabaseServer","azureSqlDatabaseServers","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzureSqlDatabaseServerConnection","ops":["azureSqlDatabaseServers"]},{"name":"AzureSqlDatabaseServerElasticPool","ops":["allAzureSqlDatabaseServerElasticPools"]},{"name":"AzureSqlManagedInstanceDatabase","ops":["azureSqlManagedInstanceDatabase","azureSqlManagedInstanceDatabases","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzureSqlManagedInstanceDatabaseConnection","ops":["azureSqlManagedInstanceDatabases"]},{"name":"AzureSqlManagedInstanceServer","ops":["azureSqlManagedInstanceServer","azureSqlManagedInstanceServers","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzureSqlManagedInstanceServerConnection","ops":["azureSqlManagedInstanceServers"]},{"name":"AzureStorageAccount","ops":["hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"AzureStorageAccountCcprovision","ops":["allAzureStorageAccountsByRegion"]},{"name":"AzureSubscription","ops":["azureSubscriptions"]},{"name":"AzureSubscriptionConnection","ops":["azureSubscriptions"]},{"name":"AzureSubscriptionMissingPermissions","ops":["allAzureCloudAccountMissingPermissions"]},{"name":"AzureSubscriptionWithExocomputeMapping","ops":["allAzureSubscriptionWithExocomputeMappings"]},{"name":"AzureSubscriptionWithFeaturesType","ops":["allAzureCloudAccountSubscriptionsByFeature"]},{"name":"AzureUserRoleResp","ops":["azureO365ValidateUserRoles"]},{"name":"BackupDevOpsRepositoryReply","ops":["backupDevOpsRepository"]},{"name":"BackupThrottleSetting","ops":["allBackupThrottleSettings"]},{"name":"BatchAsyncJobStatus","ops":["backupO365Mailbox","backupO365Onedrive","backupO365SharepointDrive","backupO365Team","gcpCloudAccountDeleteProjectsV2","gcpNativeRefreshProjects","setupCloudNativeSqlServerBackup","startAwsNativeEc2InstanceSnapshotsJob","startAwsNativeRdsInstanceSnapshotsJob","startCloudNativeSnapshotsIndexJob","startCreateAwsNativeEbsVolumeSnapshotsJob","startCreateAzureNativeManagedDiskSnapshotsJob","startCreateAzureNativeVirtualMachineSnapshotsJob","startDisableAzureCloudAccountJob","startRefreshAwsNativeAccountsJob","startRefreshAzureNativeSubscriptionsJob","takeSaasOnDemandSnapshot"]},{"name":"BatchAsyncRequestStatus","ops":["bulkCreateFusionComputeVmBackup","bulkDeleteNasSystems","createNutanixPrismCentral","deleteNutanixPrismCentral","refreshNutanixPrismCentral","takeCloudDirectSnapshot","vsphereBulkOnDemandSnapshot","vsphereVmBatchExport","vsphereVmBatchExportV3","vsphereVmBatchInPlaceRecovery","vsphereVmInitiateBatchInstantRecovery","vsphereVmInitiateBatchLiveMountV2"]},{"name":"BatchExportHypervVmReply","ops":["batchExportHypervVm"]},{"name":"BatchExportNutanixVmReply","ops":["batchExportNutanixVm"]},{"name":"BatchInstantRecoverHypervVmReply","ops":["batchInstantRecoverHypervVm"]},{"name":"BatchMountHypervVmReply","ops":["batchMountHypervVm"]},{"name":"BatchMountNutanixVmReply","ops":["batchMountNutanixVm"]},{"name":"BatchOnDemandBackupHypervVmReply","ops":["batchOnDemandBackupHypervVm"]},{"name":"BatchQuarantineSnapshotReply","ops":["batchQuarantineSnapshot"]},{"name":"BatchReleaseFromQuarantineSnapshotReply","ops":["batchReleaseFromQuarantineSnapshot"]},{"name":"BatchTriggerExocomputeHealthCheckReply","ops":["batchTriggerExocomputeHealthCheck"]},{"name":"BatchVmwareCdpLiveInfo","ops":["vsphereVmwareCdpLiveInfo"]},{"name":"BatchVmwareVmRecoverableRanges","ops":["vsphereVMRecoverableRangeInBatch"]},{"name":"BeginManagedVolumeSnapshotReply","ops":["beginManagedVolumeSnapshot"]},{"name":"BlobContainer","ops":["azureStorageAccountContainers"]},{"name":"BlobContainerConnection","ops":["azureStorageAccountContainers"]},{"name":"BootstrappableNodeInfoListResponse","ops":["discoverNodes"]},{"name":"BrowseMssqlDatabaseSnapshotReply","ops":["browseMssqlDatabaseSnapshot"]},{"name":"BrowseResponseListResponse","ops":["filesetSnapshotFiles","nutanixBrowseSnapshot"]},{"name":"BulkAddNasSharesReply","ops":["bulkAddNasShares"]},{"name":"BulkCreateFilesetTemplatesReply","ops":["bulkCreateFilesetTemplates"]},{"name":"BulkCreateFilesetsReply","ops":["bulkCreateFilesets"]},{"name":"BulkCreateNasFilesetsReply","ops":["bulkCreateNasFilesets"]},{"name":"BulkDeleteAwsCloudAccountWithoutCftReply","ops":["bulkDeleteAwsCloudAccountWithoutCft"]},{"name":"BulkGenerateFilesetBackupReportReply","ops":["bulkGenerateFilesetBackupReport"]},{"name":"BulkOnDemandSnapshotNutanixVmReply","ops":["bulkOnDemandSnapshotNutanixVm"]},{"name":"BulkRefreshHostsReply","ops":["bulkRefreshHosts"]},{"name":"BulkRegisterHostAsyncReply","ops":["addMssqlHost","bulkRegisterHostAsync"]},{"name":"BulkRegisterHostReply","ops":["bulkRegisterHost"]},{"name":"BulkRegisterSecondaryHostsReply","ops":["bulkRegisterSecondaryHosts"]},{"name":"BulkUpdateFilesetTemplateReply","ops":["bulkUpdateFilesetTemplate"]},{"name":"BulkUpdateHostReply","ops":["bulkUpdateHost"]},{"name":"BulkUpdateMssqlAvailabilityGroupReply","ops":["bulkUpdateMssqlAvailabilityGroup"]},{"name":"BulkUpdateMssqlDbsReply","ops":["bulkUpdateMssqlDbs"]},{"name":"BulkUpdateMssqlInstanceReply","ops":["bulkUpdateMssqlInstance"]},{"name":"BulkUpdateMssqlPropertiesOnHostReply","ops":["bulkUpdateMssqlPropertiesOnHost"]},{"name":"BulkUpdateMssqlPropertiesOnWindowsClusterReply","ops":["bulkUpdateMssqlPropertiesOnWindowsCluster"]},{"name":"BulkUpdateNasSharesReply","ops":["bulkUpdateNasShares"]},{"name":"BulkUpdateOracleDatabasesReply","ops":["bulkUpdateOracleDatabases"]},{"name":"BulkUpdateOracleHostsReply","ops":["bulkUpdateOracleHosts"]},{"name":"BulkUpdateOracleRacsReply","ops":["bulkUpdateOracleRacs"]},{"name":"BulkUpdateSupportTunnelReply","ops":["bulkUpdateSupportTunnel"]},{"name":"CancelJobReply","ops":["cancelDownloadPackage","cancelScheduledUpgrade"]},{"name":"CapSettingsData","ops":["capSettingsData"]},{"name":"CassandraColumnFamily","ops":["cassandraColumnFamilies","cassandraColumnFamily","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"CassandraColumnFamilyConnection","ops":["cassandraColumnFamilies"]},{"name":"CassandraKeyspace","ops":["cassandraKeyspace","cassandraKeyspaces","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"CassandraKeyspaceConnection","ops":["cassandraKeyspaces"]},{"name":"CassandraSource","ops":["cassandraSource","cassandraSources","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"CassandraSourceConnection","ops":["cassandraSources"]},{"name":"CcProvisionJobReply","ops":["addNodesToCloudCluster","createAwsCluster","createAzureCluster","migrateCloudClusterDisks","recoverCloudCluster","removeClusterNodes","updateManagedIdentitiesAsync"]},{"name":"CcProvisionMetadataReply","ops":["ccProvisionMetadata"]},{"name":"CdmGuestCredential","ops":["allCdmGuestCredentials"]},{"name":"CdmHierarchyObject","ops":["fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"CdmHierarchyObjectConnection","ops":["fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"CdmHierarchySnappableNew","ops":["cdmHierarchySnappableNew","cdmHierarchySnappablesNew"]},{"name":"CdmInventorySubHierarchyRoot","ops":["cdmInventorySubHierarchyRoot"]},{"name":"CdmManagedAwsTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"CdmManagedAzureTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"CdmManagedDcaTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"CdmManagedGcpTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"CdmManagedGlacierTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"CdmManagedLckTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"CdmManagedNfsTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"CdmManagedS3CompatibleTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"CdmManagedTapeTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"CdmOvaDetail","ops":["allCdmOvaDetails","allRvcLsOvaDetails","allRvcSsOvaDetails"]},{"name":"CdmSnapshot","ops":["snapshot","allSnapshotsByIds","snapshotOfASnappableConnection","snapshotOfSnappablesConnection"]},{"name":"CdmTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"CdmUpgradeAvailabilityReply","ops":["isUpgradeAvailable"]},{"name":"CdmUpgradeRecommendationReply","ops":["isUpgradeRecommended"]},{"name":"CdmUpgradeReleaseDetailsFromSupportPortalReply","ops":["getCdmReleaseDetailsForClusterFromSupportPortal","getCdmReleaseDetailsForVersionFromSupportPortal","getCdmReleaseDetailsFromSupportPortal"]},{"name":"CdpVmInfo","ops":["allCdpVmsInfos"]},{"name":"CdpVmInfoConnection","ops":["allCdpVmsInfos"]},{"name":"Certificate","ops":["certificates","certificatesWithKey"]},{"name":"CertificateConnection","ops":["certificates","certificatesWithKey"]},{"name":"CertificateSummaryListResponse","ops":["clusterCertificates"]},{"name":"ChangeVfdOnHostReply","ops":["changeVfdOnHost"]},{"name":"CheckArchivedSnapshotsLockedReply","ops":["cloudNativeCheckArchivedSnapshotsLocked"]},{"name":"CheckAwsMarketplaceSubscriptionReply","ops":["awsMarketplaceSubscriptionInfo"]},{"name":"CheckAzureMarketplaceTermsReply","ops":["azureMarketplaceTermsInfo"]},{"name":"CheckAzurePersistentStorageSubscriptionCanUnmapReply","ops":["checkAzurePersistentStorageSubscriptionCanUnmap"]},{"name":"CheckClusterRuSupportReply","ops":["checkClusterRuSupport"]},{"name":"CheckLatestVersionMgmtAppExistsReply","ops":["checkLatestVersionMgmtAppExists"]},{"name":"ClassifiableAssetCount","ops":["classifiableAssetCount"]},{"name":"ClassificationPolicyDetail","ops":["policies","policy","createPolicy","updatePolicy"]},{"name":"ClassificationPolicyDetailConnection","ops":["policies"]},{"name":"CleanupRecoveriesReply","ops":["cleanupRecoveries"]},{"name":"ClearCloudNativeSqlServerBackupCredentialsReply","ops":["clearCloudNativeSqlServerBackupCredentials"]},{"name":"ClearHostRbsNetworkLimitReply","ops":["clearHostRbsNetworkLimit"]},{"name":"ClosestSnapshotSearchResult","ops":["allSnapshotsClosestToPointInTime"]},{"name":"CloudAccount","ops":["allCloudAccounts","cloudAccount","createAwsAccount","createAzureAccount","updateAwsAccount","updateAzureAccount"]},{"name":"CloudAccountFeaturePermission","ops":["allCurrentFeaturePermissionsForCloudAccounts","allLatestFeaturePermissionsForCloudAccounts"]},{"name":"CloudAccountInfo","ops":["cloudAccounts"]},{"name":"CloudAccountWithExocomputeMapping","ops":["allAccountsWithExocomputeMappings"]},{"name":"CloudAccountsExocomputeAccountMapping","ops":["allCloudAccountExocomputeMappings"]},{"name":"CloudAccountsGetListFiltersReply","ops":["cloudAccountsGetListFilters"]},{"name":"CloudDirectAddSubdirBackupReply","ops":["cloudDirectAddSubdirBackup"]},{"name":"CloudDirectCheckSharePathResp","ops":["cloudDirectCheckSharePath"]},{"name":"CloudDirectEventSeriesTaskReportReply","ops":["cloudDirectEventSeriesTaskReport"]},{"name":"CloudDirectGlobalSearchResult","ops":["cloudDirectGlobalSearch"]},{"name":"CloudDirectJobRecentErrorsReportReply","ops":["cloudDirectJobRecentErrorsReport"]},{"name":"CloudDirectNasBucket","ops":["cloudDirectNasBucket","cloudDirectNasBuckets","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"CloudDirectNasBucketConnection","ops":["cloudDirectNasBuckets"]},{"name":"CloudDirectNasExport","ops":["cloudDirectNasExport","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"CloudDirectNasNamespace","ops":["cloudDirectNasNamespace","cloudDirectNasNamespaces","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"CloudDirectNasNamespaceConnection","ops":["cloudDirectNasNamespaces"]},{"name":"CloudDirectNasShare","ops":["cloudDirectNasShare","cloudDirectNasShares","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"CloudDirectNasShareConnection","ops":["cloudDirectNasShares"]},{"name":"CloudDirectNasSystem","ops":["cloudDirectNasSystem","cloudDirectNasSystems","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"CloudDirectNasSystemConnection","ops":["cloudDirectNasSystems"]},{"name":"CloudDirectSetGlobalSmbAuthReply","ops":["cloudDirectSetGlobalSmbAuth"]},{"name":"CloudDirectSetKerberosEnforceConfigReply","ops":["cloudDirectSetKerberosEnforceConfig"]},{"name":"CloudDirectSetWanThrottleSettingsReply","ops":["cloudDirectSetWanThrottleSettings"]},{"name":"CloudDirectSite","ops":["allCloudDirectSites"]},{"name":"CloudDirectSnapshot","ops":["cloudDirectSnapshot","cloudDirectSnapshots","newestSnapshotForCloudDirectObject","oldestSnapshotForCloudDirectObject","snapshotsOfCloudDirectBucket","snapshotsOfCloudDirectShare","allSnapshotsByIds","snapshotOfASnappableConnection","snapshotOfSnappablesConnection"]},{"name":"CloudDirectSnapshotConnection","ops":["cloudDirectSnapshots","snapshotsOfCloudDirectBucket","snapshotsOfCloudDirectShare"]},{"name":"CloudDirectSnapshotExclusions","ops":["cloudDirectSnapshotExclusions"]},{"name":"CloudDirectSystemRescanReply","ops":["cloudDirectSystemRescan"]},{"name":"CloudDirectSystems","ops":["cloudDirectSystems"]},{"name":"CloudDirectValidateSharePathResp","ops":["isCloudDirectSharePathValid"]},{"name":"CloudDirectValidateSubdirReply","ops":["cloudDirectValidateSubdir"]},{"name":"CloudNativeCheckRbaConnectivityReply","ops":["cloudNativeCheckRbaConnectivity"]},{"name":"CloudNativeCustomerSettings","ops":["cloudNativeCustomerSettings"]},{"name":"CloudNativeCustomerTagsReply","ops":["cloudNativeCustomerTags"]},{"name":"CloudNativeObjectStoreSnapshotRegexSearchReply","ops":["cloudNativeObjectStoreSnapshotRegexSearch"]},{"name":"CloudNativeSnapshotDetailsForRecoveryReply","ops":["cloudNativeSnapshotDetailsForRecovery"]},{"name":"CloudNativeSnapshotTypeDetailsReply","ops":["cloudNativeSnapshotTypeDetails"]},{"name":"CloudNativeSqlServerSetupScript","ops":["cloudNativeSqlServerSetupScript"]},{"name":"CloudNativeVersionedFile","ops":["cloudNativeWorkloadVersionedFiles"]},{"name":"CloudNativeVersionedFileConnection","ops":["cloudNativeWorkloadVersionedFiles"]},{"name":"Cluster","ops":["allClusterConnection","cluster","clusterConnection","clusterWithUpgradesInfo","radarClusterConnection","updatePreviewerClusterConfig"]},{"name":"ClusterConnection","ops":["allClusterConnection","clusterConnection","clusterWithUpgradesInfo","radarClusterConnection"]},{"name":"ClusterCsr","ops":["clusterCsr"]},{"name":"ClusterDnsReply","ops":["clusterDns"]},{"name":"ClusterEncryptionInfo","ops":["clusterEncryptionInfo"]},{"name":"ClusterEncryptionInfoConnection","ops":["clusterEncryptionInfo"]},{"name":"ClusterEndpoints","ops":["cloudDirectClusterEndpoints"]},{"name":"ClusterGroupBy","ops":["clusterGroupByConnection"]},{"name":"ClusterGroupByConnection","ops":["clusterGroupByConnection"]},{"name":"ClusterIpv6ModeReply","ops":["clusterIpv6Mode"]},{"name":"ClusterLicenseCapacityValidations","ops":["validateClusterLicenseCapacity"]},{"name":"ClusterNodesInstancePropertiesReply","ops":["cloudClusterNodesInstanceProperties"]},{"name":"ClusterOperationJobProgress","ops":["clusterOperationJobProgress"]},{"name":"ClusterProxyReply","ops":["clusterProxy"]},{"name":"ClusterRefs","ops":["clusterRefs"]},{"name":"ClusterRefsConnection","ops":["clusterRefs"]},{"name":"ClusterRegistrationProductInfoType","ops":["clusterRegistrationProductInfo"]},{"name":"ClusterRegistrationToken","ops":["generateClusterRegistrationToken"]},{"name":"ClusterReplicationTarget","ops":["allClusterReplicationTargets"]},{"name":"ClusterReportMigrationJobStatus","ops":["clusterReportMigrationJobStatus"]},{"name":"ClusterRoutesReply","ops":["clusterRoutes"]},{"name":"ClusterSlaDomain","ops":["clusterSlaDomains","allSlaSummariesByIds","slaDomain","slaDomains"]},{"name":"ClusterSlaDomainConnection","ops":["clusterSlaDomains"]},{"name":"ClusterWebCertAndIpmi","ops":["allClusterWebCertsAndIpmis"]},{"name":"ClusterWebSignedCertificateReply","ops":["clusterWebSignedCertificate"]},{"name":"CompleteAzureAdAppSetupReply","ops":["completeAzureAdAppSetup"]},{"name":"CompleteAzureCloudAccountOauthReply","ops":["completeAzureCloudAccountOauth"]},{"name":"CompleteGitHubAppRegistrationReply","ops":["completeGitHubAppRegistration"]},{"name":"CompleteUploadSessionReply","ops":["completeUploadSession"]},{"name":"ComputeClusterDetail","ops":["computeClusterStatus"]},{"name":"ConfirmPartUploadReply","ops":["confirmPartUpload"]},{"name":"CoordinatorLabelsReply","ops":["coordinatorLabels"]},{"name":"CountClustersReply","ops":["countClusters"]},{"name":"CountOfObjectsProtectedBySLAsResult","ops":["countOfObjectsProtectedBySlas"]},{"name":"Crawl","ops":["crawl","crawls"]},{"name":"CrawlConnection","ops":["crawls"]},{"name":"CreateAutomatedRestoreMysqldbInstanceReply","ops":["createAutomatedRestoreMysqldbInstance"]},{"name":"CreateAwsExocomputeConfigsReply","ops":["createAwsExocomputeConfigs"]},{"name":"CreateAzureSaasAppAadReply","ops":["createAzureSaasAppAad"]},{"name":"CreateCloudNativeAwsStorageSettingReply","ops":["createCloudNativeAwsStorageSetting"]},{"name":"CreateCloudNativeAzureStorageSettingReply","ops":["createCloudNativeAzureStorageSetting"]},{"name":"CreateCloudNativeLabelRuleReply","ops":["createCloudNativeLabelRule"]},{"name":"CreateCloudNativeRcvAzureStorageSettingReply","ops":["createCloudNativeRcvAzureStorageSetting"]},{"name":"CreateCloudNativeTagRuleReply","ops":["createCloudNativeTagRule"]},{"name":"CreateCrossAccountRegOauthPayloadReply","ops":["createCrossAccountRegOauthPayload"]},{"name":"CreateCustomDataTypeReply","ops":["createCustomDataType"]},{"name":"CreateFailoverClusterAppReply","ops":["createFailoverClusterApp"]},{"name":"CreateFailoverClusterReply","ops":["createFailoverCluster"]},{"name":"CreateGuestCredentialReply","ops":["createGuestCredential"]},{"name":"CreateIntegrationReply","ops":["createIntegration"]},{"name":"CreateIntegrationsReply","ops":["createIntegrations"]},{"name":"CreateK8sAgentManifestReply","ops":["createK8sAgentManifest"]},{"name":"CreateK8sClusterReply","ops":["createK8sCluster"]},{"name":"CreateLegalHoldReply","ops":["createLegalHold"]},{"name":"CreateO365AppKickoffResp","ops":["createO365AppKickoff"]},{"name":"CreateOnDemandGlueIcebergTableBackupReply","ops":["createOnDemandGlueIcebergTableBackup"]},{"name":"CreateOnDemandJobReply","ops":["backupAzureAdDirectory","backupM365Mailbox","backupM365Onedrive","backupM365SharepointDrive","backupM365Team","backupO365SharePointSite","backupO365SharepointList","createK8sNamespaceSnapshots","deleteAzureAdDirectory","deleteO365Org","exportK8sNamespace","exportO365Mailbox","exportO365MailboxV2","manageProtectionForLinkedObjects","refreshK8sCluster","refreshO365Org","restoreK8sNamespace","restoreO365FullTeams","restoreO365Mailbox","restoreO365MailboxV2","restoreO365Snappable","restoreO365TeamsConversations","restoreO365TeamsFiles"]},{"name":"CreateOrgReply","ops":["createOrg"]},{"name":"CreateOrgSwitchSessionReply","ops":["createOrgSwitchSession"]},{"name":"CreateRcvPrivateEndpointApprovalRequestReply","ops":["createRcvPrivateEndpointApprovalRequest"]},{"name":"CreateRecoveryPlanV2Reply","ops":["createRecoveryPlanV2"]},{"name":"CreateRecoverySpecsReply","ops":["createRecoverySpecs"]},{"name":"CreateRemediationMetadata","ops":["createViolationRemediation"]},{"name":"CreateScheduledReportReply","ops":["createScheduledReport"]},{"name":"CreateSecurityPolicyReply","ops":["createSecurityPolicy"]},{"name":"CreateServiceAccountReply","ops":["createServiceAccount"]},{"name":"CreateSsoUsersReply","ops":["createSsoUsers"]},{"name":"CreateTprPolicyReply","ops":["createTprPolicy"]},{"name":"CreateVappSnapshotsReply","ops":["createVappSnapshots"]},{"name":"CreateVappsInstantRecoveryReply","ops":["createVappsInstantRecovery"]},{"name":"CreateVrmReply","ops":["createVrm"]},{"name":"CreateVsphereAdvancedTagReply","ops":["createVsphereAdvancedTag"]},{"name":"CreateVsphereVcenterReply","ops":["createVsphereVcenter"]},{"name":"CreateWebhookReply","ops":["createWebhook"]},{"name":"CreateWebhookV2Reply","ops":["createWebhookV2"]},{"name":"CrossAccountCluster","ops":["allCrossAccountClusters"]},{"name":"CrossAccountClusterConnection","ops":["allCrossAccountClusters"]},{"name":"CrossAccountPairInfo","ops":["crossAccountPairs"]},{"name":"CrossAccountPairInfoConnection","ops":["crossAccountPairs"]},{"name":"CrowdStrikeIngestionStatus","ops":["crowdStrikeIngestionStatus"]},{"name":"CrowdstrikeAlertActivitySummary","ops":["crowdstrikeAlertActivitySummary"]},{"name":"CrowdstrikeCaseActivitySummary","ops":["crowdstrikeCaseActivitySummary"]},{"name":"Csr","ops":["certificateSigningRequest","certificateSigningRequests","generateCsr"]},{"name":"CsrConnection","ops":["certificateSigningRequests"]},{"name":"CustomReportInfo","ops":["allCustomReports","customReports"]},{"name":"CustomReportInfoConnection","ops":["customReports"]},{"name":"CustomTprPolicy","ops":["customTprPolicies"]},{"name":"CustomTprPolicyConnection","ops":["customTprPolicies"]},{"name":"CustomerFacingFile","ops":["userFile"]},{"name":"DailyViolationsSummary","ops":["dailyViolationsSummary"]},{"name":"DataAccessStatsResponse","ops":["dataAccessStats"]},{"name":"DataDiscoveryObjectsCount","ops":["dataDiscoveryObjectsCount"]},{"name":"DataLocationSupportedCluster","ops":["allConnectedClusters"]},{"name":"DataProtectionCoverageSummary","ops":["dataProtectionCoverageSummary"]},{"name":"DayToDayModeStats","ops":["m365DayToDayModeStats"]},{"name":"Db2ConfigureRestoreResponse","ops":["configureDb2Restore"]},{"name":"Db2Database","ops":["db2Database","db2Databases","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"Db2DatabaseConnection","ops":["db2Databases"]},{"name":"Db2Instance","ops":["db2Instance","db2Instances","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"Db2InstanceConnection","ops":["db2Instances"]},{"name":"Db2LogSnapshot","ops":["db2LogSnapshot","db2LogSnapshots"]},{"name":"Db2LogSnapshotConnection","ops":["db2LogSnapshots"]},{"name":"Db2RecoverableRange","ops":["db2RecoverableRange","db2RecoverableRanges"]},{"name":"Db2RecoverableRangeConnection","ops":["db2RecoverableRanges"]},{"name":"DbLogReportProperties","ops":["databaseLogReportingPropertiesForCluster","updateDatabaseLogReportingPropertiesForCluster"]},{"name":"DbLogReportSummaryListReply","ops":["databaseLogReportForCluster"]},{"name":"DbParameterGroup","ops":["allDbParameterGroupsByRegionFromAws"]},{"name":"DeactivateDataTypeReply","ops":["deactivateDataType"]},{"name":"DeactivateDocumentAttributeReply","ops":["deactivateDocumentAttribute"]},{"name":"DefenderIngestionStatus","ops":["allDefenderIngestionStatuses"]},{"name":"DeleteAwsExocomputeConfigsReply","ops":["deleteAwsExocomputeConfigs"]},{"name":"DeleteAzureCloudAccountExocomputeConfigurationsReply","ops":["deleteAzureCloudAccountExocomputeConfigurations"]},{"name":"DeleteAzureCloudAccountReply","ops":["deleteAzureCloudAccount"]},{"name":"DeleteAzureCloudAccountWithoutOauthReply","ops":["deleteAzureCloudAccountWithoutOauth"]},{"name":"DeleteGlobalCertificateReply","ops":["deleteGlobalCertificate"]},{"name":"DeleteManagedVolumeReply","ops":["deleteManagedVolume"]},{"name":"DeleteRecoveryPlansV2Reply","ops":["deleteRecoveryPlansV2"]},{"name":"DeleteStorageArraysReply","ops":["deleteStorageArrays"]},{"name":"DeleteTerminatedClusterOperationJobDataReply","ops":["deleteTerminatedClusterOperationJobData"]},{"name":"DetailedPrivateEndpointConnection","ops":["allRcvPrivateEndpointConnections"]},{"name":"DevOpsBackupJobInformation","ops":["devOpsBackupJobInformation"]},{"name":"DevOpsCloudAccountListCurrentPermissionsReply","ops":["devOpsCloudAccountListCurrentPermissions"]},{"name":"DevOpsCloudAccountListLatestPermissionsReply","ops":["devOpsCloudAccountListLatestPermissions"]},{"name":"DevOpsProtectedObjectCountSummary","ops":["devOpsProtectedObjectCountSummary"]},{"name":"DhrcActiveRecommendation","ops":["allDhrcActiveRecommendations"]},{"name":"DhrcCollectedMetric","ops":["allDhrcLatestMetrics"]},{"name":"DhrcScore","ops":["allDhrcScores"]},{"name":"DiffResult","ops":["diffFmd","searchFileByPrefix"]},{"name":"DisableTargetReply","ops":["disableTarget"]},{"name":"DiskInfo","ops":["setupDisk"]},{"name":"DissolveLegalHoldReply","ops":["dissolveLegalHold"]},{"name":"DocumentAttribute","ops":["allDocumentTypes"]},{"name":"DownloadAnomalyDetailsCsvReply","ops":["downloadAnomalyDetailsCsv"]},{"name":"DownloadCdmTprConfigAsyncReply","ops":["downloadCdmTprConfigurationAsync"]},{"name":"DownloadCdmUpgradesPdfReply","ops":["downloadCdmUpgradesPdf"]},{"name":"DownloadCsvReply","ops":["downloadObjectFilesCsv","downloadObjectsListCsv","downloadSnapshotResultsCsv","downloadUserActivityCsv","downloadUserFileActivityCsv"]},{"name":"DownloadFilesReply","ops":["cloudNativeDownloadFiles"]},{"name":"DownloadPackageReply","ops":["retryDownloadPackageJob"]},{"name":"DownloadPackageReplyWithUuid","ops":["startDownloadPackageBatchJob"]},{"name":"DownloadPackageStatusReply","ops":["downloadPackageStatus"]},{"name":"DownloadResultsCsvReply","ops":["downloadResultsCsv"]},{"name":"DownloadSlaWithReplicationCsvReply","ops":["downloadSlaWithReplicationCsv"]},{"name":"DownloadThreatHuntCsvReply","ops":["downloadThreatHuntCsv"]},{"name":"DownloadThreatHuntV2CsvResponse","ops":["downloadThreatHuntV2ResultsCsv"]},{"name":"DownloadTurboThreatHuntResultsCsvResponse","ops":["downloadTurboThreatHuntCsv"]},{"name":"Dynamics365Organization","ops":["saasAppOrganizations","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"EdgeWindowsToolLink","ops":["edgeWindowsToolLink"]},{"name":"EnableAutomaticFmdUploadReply","ops":["enableAutomaticFmdUpload"]},{"name":"EnableDisableAppConsistencyReply","ops":["enableDisableAppConsistency"]},{"name":"EnableTargetReply","ops":["enableTarget"]},{"name":"EndManagedVolumeSnapshotReply","ops":["endManagedVolumeSnapshot"]},{"name":"EventDigest","ops":["allDistributionListDigests","allEventDigests","distributionListDigest"]},{"name":"ExchangeDag","ops":["exchangeDag","exchangeDags","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"ExchangeDagConnection","ops":["exchangeDags"]},{"name":"ExchangeDatabase","ops":["exchangeDatabase","exchangeDatabases","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","hierarchySnappables","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"ExchangeDatabaseConnection","ops":["exchangeDatabases"]},{"name":"ExchangeHost","ops":["fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"ExchangeLiveMount","ops":["exchangeLiveMounts"]},{"name":"ExchangeLiveMountConnection","ops":["exchangeLiveMounts"]},{"name":"ExchangeServer","ops":["exchangeServer","exchangeServers","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"ExchangeServerConnection","ops":["exchangeServers"]},{"name":"ExcludedContainer","ops":["azureStorageAccountExcludedContainers"]},{"name":"ExcludedContainerConnection","ops":["azureStorageAccountExcludedContainers"]},{"name":"ExocomputeClusterConnectReply","ops":["exocomputeClusterConnect"]},{"name":"ExocomputeGetClusterConnectionInfoReply","ops":["exocomputeGetClusterConnectionInfo"]},{"name":"ExocomputeGetSupportedHealthChecksReply","ops":["exocomputeGetSupportedHealthChecks"]},{"name":"ExocomputeHealthChecksReply","ops":["exocomputeHealthChecks"]},{"name":"ExpireSnoozedDirectoriesReply","ops":["expireSnoozedDirectories"]},{"name":"ExpiredSnapshot","ops":["allSnapshotsByIds","snapshotOfASnappableConnection","snapshotOfSnappablesConnection"]},{"name":"ExportPermissionsReply","ops":["exportPermissions"]},{"name":"ExportPolicyViolationsCsvReply","ops":["exportPolicyViolationsCsv"]},{"name":"ExportPrincipalSummaryResp","ops":["exportPrincipalsSummary"]},{"name":"ExportUrlSpecs","ops":["decryptExportUrl"]},{"name":"FailedRestoreItemsInfoReply","ops":["failedRestoreItemsInfo"]},{"name":"FailoverClusterApp","ops":["failoverClusterApp","failoverClusterApps","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","failoverClusterTopLevelDescendants"]},{"name":"FailoverClusterAppConnection","ops":["failoverClusterApps"]},{"name":"FailoverClusterTopLevelDescendantType","ops":["failoverClusterTopLevelDescendants"]},{"name":"FailoverClusterTopLevelDescendantTypeConnection","ops":["failoverClusterTopLevelDescendants"]},{"name":"FailoverGroupArchivalLocation","ops":["failoverGroupArchivalLocations"]},{"name":"FailoverGroupArchivalLocationConnection","ops":["failoverGroupArchivalLocations"]},{"name":"FailoverGroupHost","ops":["failoverGroupHosts"]},{"name":"FailoverGroupHostConnection","ops":["failoverGroupHosts"]},{"name":"FailoverGroupWorkload","ops":["failoverGroupWorkloads"]},{"name":"FailoverGroupWorkloadConnection","ops":["failoverGroupWorkloads"]},{"name":"FeatureCdmVersionReply","ops":["cdmVersionCheck"]},{"name":"FeatureListMinimumCdmVersionReply","ops":["minimumCdmVersionForFeatureSet"]},{"name":"FeaturePermission","ops":["featurePermissionForDataCenterRoleBasedArchival"]},{"name":"FederatedLoginStatus","ops":["federatedLoginStatus"]},{"name":"FileMatch","ops":["threatMonitoringMatchedFiles"]},{"name":"FileMatchConnection","ops":["threatMonitoringMatchedFiles"]},{"name":"FileResult","ops":["objectFiles","policyObjFolderChildren","userActivities"]},{"name":"FileResultConnection","ops":["objectFiles","policyObjFolderChildren","userActivities"]},{"name":"FilesSummaryCountResultType","ops":["fileSummariesCount"]},{"name":"FilesetDetail","ops":["updateFileset"]},{"name":"FilesetSnapshotDetail","ops":["filesetSnapshot"]},{"name":"FilesetTemplate","ops":["filesetTemplate","filesetTemplates","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"FilesetTemplateConnection","ops":["filesetTemplates"]},{"name":"FinalizeAwsCloudAccountDeletionReply","ops":["finalizeAwsCloudAccountDeletion"]},{"name":"FinalizeAwsCloudAccountProtectionReply","ops":["finalizeAwsCloudAccountProtection"]},{"name":"FinishArchivalMigrationReply","ops":["finishArchivalMigration"]},{"name":"FullSpSiteExclusions","ops":["allSharepointSiteExclusions"]},{"name":"FusionComputeCluster","ops":["fusionComputeCluster","fusionComputeClusters","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"FusionComputeClusterConnection","ops":["fusionComputeClusters"]},{"name":"FusionComputeDatastore","ops":["fusionComputeDatastore","fusionComputeDatastores","fusionComputeRecoverableDatastores","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"FusionComputeDatastoreConnection","ops":["fusionComputeDatastores","fusionComputeRecoverableDatastores"]},{"name":"FusionComputeEchoResponse","ops":["fusionComputeEcho"]},{"name":"FusionComputeHost","ops":["fusionComputeHost","fusionComputeHosts","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"FusionComputeHostConnection","ops":["fusionComputeHosts"]},{"name":"FusionComputeMountDetail","ops":["fusionComputeMounts"]},{"name":"FusionComputeMountDetailConnection","ops":["fusionComputeMounts"]},{"name":"FusionComputeNetwork","ops":["fusionComputeNetwork","fusionComputeNetworks","fusionComputeRecoverableNetworks","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"FusionComputeNetworkConnection","ops":["fusionComputeNetworks","fusionComputeRecoverableNetworks"]},{"name":"FusionComputeSite","ops":["fusionComputeSite","fusionComputeSites","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"FusionComputeSiteConnection","ops":["fusionComputeSites"]},{"name":"FusionComputeSnapshotResourceSpecReply","ops":["fusionComputeSnapshotResourceSpec"]},{"name":"FusionComputeVirtualDisk","ops":["fusionComputeVirtualDisks"]},{"name":"FusionComputeVirtualDiskConnection","ops":["fusionComputeVirtualDisks"]},{"name":"FusionComputeVirtualMachine","ops":["fusionComputeVirtualMachine","fusionComputeVirtualMachines","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","hierarchySnappables","cdmHierarchySnappableNew","cdmHierarchySnappablesNew"]},{"name":"FusionComputeVirtualMachineConnection","ops":["fusionComputeVirtualMachines"]},{"name":"FusionComputeVrm","ops":["fusionComputeVrm","fusionComputeVrms","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"FusionComputeVrmConnection","ops":["fusionComputeVrms"]},{"name":"GcpAlloyDbCluster","ops":["hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"GcpCloudAccountAddProjectsReply","ops":["gcpCloudAccountAddProjects"]},{"name":"GcpCloudAccountGetProjectResponse","ops":["gcpCloudAccountGetProject"]},{"name":"GcpCloudAccountMissingPermissionsForAddition","ops":["allGcpCloudAccountMissingPermissionsForAddition"]},{"name":"GcpCloudAccountOauthCompleteReply","ops":["gcpCloudAccountOauthComplete"]},{"name":"GcpCloudAccountOauthInitiateReply","ops":["gcpCloudAccountOauthInitiate"]},{"name":"GcpCloudAccountProjectDetail","ops":["allGcpCloudAccountProjectsByFeature"]},{"name":"GcpCloudAccountProjectForOauth","ops":["allGcpCloudAccountProjectsForOauth"]},{"name":"GcpCloudAccountUpgradeProjectsReply","ops":["gcpCloudAccountUpgradeProjects"]},{"name":"GcpCloudSqlInstance","ops":["gcpCloudSqlInstance","gcpCloudSqlInstances","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"GcpCloudSqlInstanceConnection","ops":["gcpCloudSqlInstances"]},{"name":"GcpFeatureWithPermissionGroups","ops":["allLatestPermissionsByPermissionsGroupGcp"]},{"name":"GcpGetExocomputeConfigsReply","ops":["gcpExocomputeConfigs"]},{"name":"GcpGetResourceSetupTemplateReply","ops":["gcpGetResourceSetupTemplate"]},{"name":"GcpNativeDisk","ops":["gcpNativeDisk","gcpNativeDisks","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"GcpNativeDiskConnection","ops":["gcpNativeDisks"]},{"name":"GcpNativeGceInstance","ops":["gcpNativeGceInstance","gcpNativeGceInstances","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"GcpNativeGceInstanceConnection","ops":["gcpNativeGceInstances"]},{"name":"GcpNativeKmsCryptoKey","ops":["allGcpNativeAvailableKmsCryptoKeys"]},{"name":"GcpNativeNetwork","ops":["allGcpNativeNetworks"]},{"name":"GcpNativeProject","ops":["gcpNativeProject","gcpNativeProjects","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"GcpNativeProjectConnection","ops":["gcpNativeProjects"]},{"name":"GcpNativeRegion","ops":["allGcpNativeRegions"]},{"name":"GcpNativeRoot","ops":["gcpNativeRoot"]},{"name":"GcpPermission","ops":["allFeaturePermissionsForGcpCloudAccount"]},{"name":"GcpRoleBasedAccount","ops":["allCloudAccounts","cloudAccount","createAwsAccount","createAzureAccount","updateAwsAccount","updateAzureAccount"]},{"name":"GenerateCdmTotpSecretReply","ops":["generateCdmTotpSecret"]},{"name":"GenerateCloudDirectTaskReportReply","ops":["generateCloudDirectTaskReport"]},{"name":"GenerateConfigProtectionRestoreFormReply","ops":["generateConfigProtectionRestoreForm"]},{"name":"GeneratePresignedUrlForDownloadReply","ops":["generatePresignedUrlForDownload"]},{"name":"GeneratePresignedUrlForPartUploadReply","ops":["generatePresignedUrlForPartUpload"]},{"name":"GeneratePreviewMessageForWebhookTemplateReply","ops":["generatePreviewMessageForWebhookTemplate"]},{"name":"GenerateRecoveryReportReply","ops":["generateRecoveryReport"]},{"name":"GenerateTotpSecretReply","ops":["generateTotpSecret"]},{"name":"GenericSnapshot","ops":["allSnapshotsByIds","snapshotOfASnappableConnection","snapshotOfSnappablesConnection"]},{"name":"GenericSnapshotConnection","ops":["snapshotOfASnappableConnection","snapshotOfSnappablesConnection"]},{"name":"GetAnomalyDetailsReply","ops":["anomalyResultOpt"]},{"name":"GetArchivalReaderInfoResp","ops":["archivalReaderInfo"]},{"name":"GetAzureExocomputeNetworkSetupTemplateReply","ops":["azureExocomputeNetworkSetupTemplate"]},{"name":"GetAzureHostTypeResp","ops":["azureO365GetAzureHostType"]},{"name":"GetAzureO365ExocomputeResp","ops":["azureO365Exocompute"]},{"name":"GetCdmUserResponse","ops":["cdmAdminUser"]},{"name":"GetCertificateInfoReply","ops":["certificateInfo"]},{"name":"GetCloudNativeApplicationSnapshotsReply","ops":["cloudNativeApplicationSnapshots"]},{"name":"GetCloudNativeGatewayKmsKeysReply","ops":["cloudNativeGatewayKmsKeys"]},{"name":"GetCloudNativeLabelRulesReply","ops":["cloudNativeLabelRules"]},{"name":"GetCloudNativeTagRulesObjectTypeReply","ops":["cloudNativeTagRulesObjectType"]},{"name":"GetCloudNativeTagRulesReply","ops":["cloudNativeTagRules"]},{"name":"GetCloudObjectsCountByRegionReply","ops":["getCloudObjectsCountByRegion"]},{"name":"GetCustomerFacingDownloadsReply","ops":["allUserFiles"]},{"name":"GetDashboardSummaryReply","ops":["dashboardSummary"]},{"name":"GetDataPreviewReply","ops":["dataPreview"]},{"name":"GetExotaskImageBundleReply","ops":["exotaskImageBundle"]},{"name":"GetHealthCheckErrorReportReply","ops":["healthCheckErrorReport"]},{"name":"GetHealthMonitorPolicyStatusReply","ops":["getHealthMonitorPolicyStatus"]},{"name":"GetHitsExposureStatsReply","ops":["hitsExposureStats"]},{"name":"GetHostRbsNetworkThrottleResponse","ops":["hostRbsNetworkLimit"]},{"name":"GetImplicitlyAuthorizedAncestorSummariesResponse","ops":["o365ObjectAncestors"]},{"name":"GetImplicitlyAuthorizedObjectSummariesResponse","ops":["o365OrgSummaries"]},{"name":"GetLaminarFeatureStatusReply","ops":["getLaminarFeatureStatus"]},{"name":"GetLaminarSSODetailsReply","ops":["laminarSsoDetails"]},{"name":"GetLatestGpoSettingsRes","ops":["latestGpoSettings"]},{"name":"GetLicensedProductsInfoReply","ops":["allLicensedProducts"]},{"name":"GetMfaSettingReply","ops":["globalMfaSetting","mfaSetting"]},{"name":"GetMosaicRecoverableRangeResponse","ops":["cassandraColumnFamilyRecoverableRange","mongodbCollectionRecoverableRange"]},{"name":"GetNutanixMountsReply","ops":["nutanixMountsV2"]},{"name":"GetO365ServiceStatusResp","ops":["o365ServiceStatus"]},{"name":"GetO365StorageStatsResp","ops":["o365StorageStats"]},{"name":"GetObjectProtectionAndSensitivitySummaryReply","ops":["getObjectProtectionAndSensitivitySummary"]},{"name":"GetOrCreateByokAzureAppReply","ops":["getOrCreateByokAzureApp"]},{"name":"GetOwnersFilterValuesReply","ops":["ownersFilterValues"]},{"name":"GetPasskeyConfigReply","ops":["passkeyConfig"]},{"name":"GetPasskeyInfoReply","ops":["passkeyInfo"]},{"name":"GetPausedObjectRes","ops":["pausedObjects"]},{"name":"GetPausedObjectResConnection","ops":["pausedObjects"]},{"name":"GetPendingSlaAssignmentsReply","ops":["getPendingSlaAssignments"]},{"name":"GetPipelineHealthReply","ops":["pipelineHealthForTimeRange"]},{"name":"GetPoliciesMaxLastEvaluatedAtType","ops":["policiesMaxLastEvaluatedAt"]},{"name":"GetPoliciesTimelineReply","ops":["discoveryTimeline"]},{"name":"GetPolicyFilterValuesType","ops":["allPolicyFilterValues"]},{"name":"GetPossibleCategoriesType","ops":["allPolicyCategories"]},{"name":"GetPossibleSnapshotLocationsForObjectsResp","ops":["possibleSnapshotLocationsForObjects"]},{"name":"GetPrincipalCountsReply","ops":["principalCountsSummaries"]},{"name":"GetPrincipalRiskChangesReply","ops":["principalRiskChanges"]},{"name":"GetPrincipalRiskSummaryReply","ops":["allPrincipalRiskSummaries"]},{"name":"GetPrincipalRiskTrendReply","ops":["principalRiskTrend"]},{"name":"GetPrincipalSummaryReply","ops":["principalSummary"]},{"name":"GetPrincipalTagStatsReply","ops":["principalTagStats"]},{"name":"GetPrivilegedPrincipalsSummaryResp","ops":["privilegedPrincipalSummaries"]},{"name":"GetRecoveryAnalysisResultResp","ops":["queryO365RecoveryAnalysisResult"]},{"name":"GetRemediationTypesType","ops":["allRemediationTypes"]},{"name":"GetS3BucketStateForRecoveryReply","ops":["s3BucketStateForRecovery"]},{"name":"GetSchemaResponse","ops":["cassandraColumnFamilySchema"]},{"name":"GetScriptsForManualPermissionValidationReply","ops":["scriptsForManualPermissionValidation"]},{"name":"GetSelfServeRollingUpgradeReply","ops":["selfServeRollingUpgrade"]},{"name":"GetSelfServiceInfoForUserResp","ops":["o365UserSelfServiceInfo"]},{"name":"GetSkippedTeamsSiteReportResp","ops":["skippedTeamsSiteReport"]},{"name":"GetSmbConfigurationReply","ops":["smbConfiguration"]},{"name":"GetSqlServerSetupScriptsReplyBulk","ops":["sqlServerSetupScriptsBulk"]},{"name":"GetSupportCaseCommentsReply","ops":["supportCaseComments"]},{"name":"GetTaskchainStatusReply","ops":["getKorgTaskchainStatus"]},{"name":"GetThreatMonitoringObjectEnablementStatsResponse","ops":["threatMonitoringObjectEnablementStats"]},{"name":"GetTotpStatusReply","ops":["totpConfigStatus"]},{"name":"GetUserDetailReply","ops":["userDetail"]},{"name":"GetUserSessionManagementConfigReply","ops":["userSessionManagementConfig"]},{"name":"GetUsersSummaryReply","ops":["usersSummary"]},{"name":"GetValidRegionsForDynamoDbRecoveryReply","ops":["allValidRegionsForDynamoDbRecovery"]},{"name":"GetWhitelistReply","ops":["ipWhitelist"]},{"name":"GetWorkloadAlertSettingReply","ops":["workloadAlertSetting"]},{"name":"GitHubConnectionStatusSummaryReply","ops":["gitHubConnectionStatusSummary"]},{"name":"GithubOrganization","ops":["gitHubOrganization","gitHubOrganizations","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"GithubOrganizationConnection","ops":["gitHubOrganizations"]},{"name":"GithubRepository","ops":["gitHubRepositories","gitHubRepository","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"GithubRepositoryConnection","ops":["gitHubRepositories"]},{"name":"GlobalCertificate","ops":["assignableGlobalCertificates","globalCertificate","globalCertificates"]},{"name":"GlobalCertificateConnection","ops":["assignableGlobalCertificates","globalCertificates"]},{"name":"GlobalFileSearchReply","ops":["globalFileSearch"]},{"name":"GlobalManagerConnectivity","ops":["refreshGlobalManagerConnectivityStatus"]},{"name":"GlobalSlaForFilter","ops":["globalSlaFilterConnection"]},{"name":"GlobalSlaForFilterConnection","ops":["globalSlaFilterConnection"]},{"name":"GlobalSlaReply","ops":["createGlobalSla","updateGlobalSla","allSlaSummariesByIds","slaDomain","slaDomains"]},{"name":"GlobalSlaStatus","ops":["globalSlaStatuses"]},{"name":"GlobalSlaStatusConnection","ops":["globalSlaStatuses"]},{"name":"GlueIcebergCatalog","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"GlueIcebergDatabase","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"GlueIcebergInventoryStatsReply","ops":["glueIcebergInventoryStats"]},{"name":"GlueIcebergTable","ops":["glueIcebergTable","hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"GoogleWorkspaceOrg","ops":["saasAppOrganizations","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"Group","ops":["groupsInCurrentAndDescendantOrganization","userGroups"]},{"name":"GroupConnection","ops":["groupsInCurrentAndDescendantOrganization"]},{"name":"GroupCount","ops":["clusterTypeList","downloadedVersionList","geoLocationList","getGroupCountByPrechecksStatus","getGroupCountByUpgradeJobStatus","getGroupCountByVersionStatus"]},{"name":"GroupCountListWithTotal","ops":["getGroupCountByCdmClusterStatus"]},{"name":"GuestCredentialDetailListResponse","ops":["guestCredentials"]},{"name":"GuestOsCredential","ops":["guestCredentialsV2"]},{"name":"GuestOsCredentialConnection","ops":["guestCredentialsV2"]},{"name":"HaPolicy","ops":["haPolicies"]},{"name":"HaPolicyConnection","ops":["haPolicies"]},{"name":"HasAccessToO365ObjectsResp","ops":["hasAccessToO365Objects"]},{"name":"HasRelicAzureAdSnapshotReplyType","ops":["hasRelicAzureAdSnapshot"]},{"name":"HelpContentSnippet","ops":["helpContentSnippets"]},{"name":"HelpContentSnippetConnection","ops":["helpContentSnippets"]},{"name":"HierarchyObject","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"HierarchyObjectConnection","ops":["globalSearchResults"]},{"name":"HierarchySnappable","ops":["hierarchySnappables"]},{"name":"HierarchySnappableConnection","ops":["hierarchySnappables"]},{"name":"HostDiagnosisSummary","ops":["hostDiagnosis"]},{"name":"HostFailoverCluster","ops":["hostFailoverCluster","hostFailoverClusters","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","failoverClusterTopLevelDescendants"]},{"name":"HostFailoverClusterConnection","ops":["hostFailoverClusters"]},{"name":"HostForFailoverGroup","ops":["hostsForFailoverGroup"]},{"name":"HostForFailoverGroupConnection","ops":["hostsForFailoverGroup"]},{"name":"HostShare","ops":["hostShare","hostShares","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"HostShareConnection","ops":["hostShares"]},{"name":"HotAddBandwidthInfo","ops":["vCenterHotAddBandwidth"]},{"name":"HotAddNetworkConfigWithName","ops":["vCenterHotAddNetwork"]},{"name":"HyperVCluster","ops":["hypervCluster","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","hypervTopLevelDescendants"]},{"name":"HyperVLiveMount","ops":["hypervMounts"]},{"name":"HyperVLiveMountConnection","ops":["hypervMounts"]},{"name":"HyperVSCVMM","ops":["hypervScvmm","hypervScvmms","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","hypervTopLevelDescendants"]},{"name":"HyperVSCVMMConnection","ops":["hypervScvmms"]},{"name":"HyperVVirtualMachine","ops":["hypervVirtualMachine","hypervVirtualMachines","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","hierarchySnappables","hypervTopLevelDescendants"]},{"name":"HyperVVirtualMachineConnection","ops":["hypervVirtualMachines"]},{"name":"HypervHostSummaryListResponse","ops":["hypervServers"]},{"name":"HypervHostsVirtualSwitchesReply","ops":["hypervHostsVirtualSwitches"]},{"name":"HypervScvmmUpdateReply","ops":["hypervScvmmUpdate"]},{"name":"HypervServer","ops":["hypervServer","hypervServersPaginated","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","hypervTopLevelDescendants"]},{"name":"HypervServerConnection","ops":["hypervServersPaginated"]},{"name":"HypervTopLevelDescendantType","ops":["hypervTopLevelDescendants"]},{"name":"HypervTopLevelDescendantTypeConnection","ops":["hypervTopLevelDescendants"]},{"name":"HypervVirtualMachineDetail","ops":["hypervVmDetail"]},{"name":"HypervVirtualMachineSnapshotFileDetails","ops":["hypervVirtualMachineLevelFileInfo"]},{"name":"HypervVirtualSwitchesResponse","ops":["hypervHostVirtualSwitches"]},{"name":"IdentityDataLocationEncryptionInfo","ops":["identityDataLocationsEncryptionInfo"]},{"name":"IdentityDataLocationEncryptionInfoConnection","ops":["identityDataLocationsEncryptionInfo"]},{"name":"IdentityProvider","ops":["allCurrentOrgIdentityProviders"]},{"name":"IgnoreClusterRemovalPrecheckReply","ops":["canIgnoreClusterRemovalPrechecks"]},{"name":"InitializeUploadSessionReply","ops":["initializeUploadSession"]},{"name":"InstalledVersionGroupCount","ops":["installedVersionList"]},{"name":"InstancePropertiesReply","ops":["cloudClusterInstanceProperties"]},{"name":"IntegrationIngestionStatus","ops":["workdayIngestionStatus"]},{"name":"InternalGetClusterIpsResponse","ops":["clusterFloatingIps"]},{"name":"InternalGetDefaultGatewayResponse","ops":["clusterDefaultGateway"]},{"name":"InternalGetRoutesResponse","ops":["staticRoutes"]},{"name":"InternalReplicationBandwidthIncomingResponse","ops":["replicationIncomingStats"]},{"name":"InternalReplicationBandwidthOutgoingResponse","ops":["replicationOutgoingStats"]},{"name":"InventoryRoot","ops":["inventoryRoot"]},{"name":"InventorySubHierarchyRoot","ops":["inventorySubHierarchyRoot"]},{"name":"InvestigationCsvDownloadLinkReply","ops":["investigationCsvDownloadLink"]},{"name":"IocFeedEntry","ops":["iocFeedEntries"]},{"name":"IocFeedEntryConnection","ops":["iocFeedEntries"]},{"name":"IpInfo","ops":["ipWhitelistEntries"]},{"name":"IpInfoConnection","ops":["ipWhitelistEntries"]},{"name":"IpWhitelistSettings","ops":["ipWhitelistSettings"]},{"name":"IsCloudClusterDiskUpgradeAvailableReply","ops":["isCloudClusterDiskUpgradeAvailable"]},{"name":"IsCloudNativeTagRuleNameUniqueReply","ops":["checkCloudNativeLabelRuleNameUniqueness","checkCloudNativeTagRuleNameUniqueness"]},{"name":"IsVolumeSnapshotRestorableReply","ops":["isAwsNativeEbsVolumeSnapshotRestorable"]},{"name":"Issue","ops":["issue","issues"]},{"name":"IssueConnection","ops":["issues"]},{"name":"JobInfo","ops":["jobInfo"]},{"name":"K8sAppManifest","ops":["k8sAppManifest"]},{"name":"K8sCluster","ops":["k8sCluster","k8sClusters","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"K8sClusterConnection","ops":["k8sClusters"]},{"name":"K8sClusterSummary","ops":["addK8sCluster"]},{"name":"K8sManifestResponse","ops":["generateK8sManifest","regenerateK8sManifest"]},{"name":"K8sNamespace","ops":["k8sNamespace","k8sNamespaces","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"K8sNamespaceConnection","ops":["k8sNamespaces"]},{"name":"K8sProtectionSetSummary","ops":["addK8sProtectionSet"]},{"name":"K8sSnapshotInfo","ops":["k8sSnapshotInfo"]},{"name":"K8sSnapshotSummaryListResponse","ops":["k8sProtectionSetSnapshots"]},{"name":"KmsEncryptionKey","ops":["allKmsEncryptionKeysByRegionFromAws"]},{"name":"KnowledgeBaseArticle","ops":["knowledgeBaseArticle"]},{"name":"KosmosWorkloadLiveMount","ops":["mysqlInstanceLiveMounts","postgresDbClusterLiveMounts"]},{"name":"KosmosWorkloadLiveMountConnection","ops":["mysqlInstanceLiveMounts","postgresDbClusterLiveMounts"]},{"name":"KubernetesCluster","ops":["kubernetesCluster","kubernetesClusters","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"KubernetesClusterConnection","ops":["kubernetesClusters"]},{"name":"KubernetesNamespaceType","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"KubernetesProtectionSet","ops":["kubernetesProtectionSet","kubernetesProtectionSets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew"]},{"name":"KubernetesProtectionSetConnection","ops":["kubernetesProtectionSets"]},{"name":"KubernetesVirtualMachine","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew"]},{"name":"KubernetesVirtualMachineSnapshotsReply","ops":["kubernetesVirtualMachineSnapshots"]},{"name":"LacpPresenceCheck","ops":["lacpConfigurations"]},{"name":"LacpPresenceCheckConnection","ops":["lacpConfigurations"]},{"name":"LambdaSettings","ops":["lambdaSettings","updateLambdaSettings"]},{"name":"LdapIntegration","ops":["ldapIntegrationConnection"]},{"name":"LdapIntegrationConnection","ops":["ldapIntegrationConnection"]},{"name":"LegalHoldSnappableDetail","ops":["snappablesWithLegalHoldSnapshotsSummary"]},{"name":"LegalHoldSnappableDetailConnection","ops":["snappablesWithLegalHoldSnapshotsSummary"]},{"name":"LegalHoldSnapshotDetail","ops":["legalHoldSnapshotsForSnappable"]},{"name":"LegalHoldSnapshotDetailConnection","ops":["legalHoldSnapshotsForSnappable"]},{"name":"LicensesForClusterProductReply","ops":["licensesForClusterProductSummary"]},{"name":"LinkedEntity","ops":["listLinkedEntitiesForGpo"]},{"name":"LinkedEntityConnection","ops":["listLinkedEntitiesForGpo"]},{"name":"LinuxFileset","ops":["linuxFileset","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","failoverClusterTopLevelDescendants"]},{"name":"LinuxRbsBulkInstallReply","ops":["linuxRbsBulkInstall"]},{"name":"ListAllUploadRecordsReply","ops":["listAllUploadRecords"]},{"name":"ListCertificateUsagesForCloudAccountResp","ops":["listCertificateUsagesForCloudAccount"]},{"name":"ListCidrsForComputeSettingReply","ops":["listCidrsForComputeSetting"]},{"name":"ListCloudDirectSiteSettingsResp","ops":["cloudDirectSiteSettings"]},{"name":"ListDocumentTypesDetailsReply","ops":["documentTypesDetails"]},{"name":"ListIntegrationsReply","ops":["allIntegrations"]},{"name":"ListLocationsReply","ops":["ransomwareDetectionWorkloadLocations"]},{"name":"ListO365DirectoryObjectAttributesResp","ops":["m365DirectoryObjectAttributes"]},{"name":"ListStoreResponse","ops":["mosaicStores"]},{"name":"ListStoredDiskLocationsReply","ops":["gcpNativeStoredDiskLocations"]},{"name":"ListThreatFeedsResponse","ops":["threatFeeds"]},{"name":"ListVersionResponse","ops":["mosaicSnapshots","mosaicVersions"]},{"name":"LockoutConfig","ops":["globalLockoutConfig","lockoutConfig"]},{"name":"LookupAccountReply","ops":["lookupAccount"]},{"name":"M365BackupStorageGroup","ops":["microsoftGroups","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"M365BackupStorageLicenseUsage","ops":["m365BackupStorageLicenseUsage"]},{"name":"M365BackupStorageMailbox","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"M365BackupStorageOnedrive","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"M365BackupStorageOrg","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"M365BackupStorageRestorePoint","ops":["m365BackupStorageObjectRestorePoints"]},{"name":"M365BackupStorageRestorePointConnection","ops":["m365BackupStorageObjectRestorePoints"]},{"name":"M365BackupStorageSite","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","microsoftSites"]},{"name":"M365LicenseEntitlementReply","ops":["m365LicenseEntitlement"]},{"name":"M365OrgBackupLocations","ops":["m365OrgBackupLocations"]},{"name":"M365OrgOperationModes","ops":["m365OrgOperationModes"]},{"name":"M365RegionsResp","ops":["m365Regions"]},{"name":"ManagedVolume","ops":["managedVolume","managedVolumes","slaManagedVolume","slaManagedVolumes","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew"]},{"name":"ManagedVolumeConnection","ops":["managedVolumes","slaManagedVolumes"]},{"name":"ManagedVolumeInventoryStats","ops":["managedVolumeInventoryStats"]},{"name":"ManagedVolumeMount","ops":["managedVolumeLiveMounts","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"ManagedVolumeMountConnection","ops":["managedVolumeLiveMounts"]},{"name":"MapAzureCloudAccountExocomputeSubscriptionReply","ops":["mapAzureCloudAccountExocomputeSubscription"]},{"name":"MapAzureCloudAccountToPersistentStorageLocationReply","ops":["mapAzureCloudAccountToPersistentStorageLocation"]},{"name":"MapCloudAccountExocomputeAccountReply","ops":["mapCloudAccountExocomputeAccount"]},{"name":"MarkAgentSecondaryCertificateReply","ops":["markAgentSecondaryCertificate"]},{"name":"MicrosoftGroup","ops":["microsoftGroups"]},{"name":"MicrosoftGroupConnection","ops":["microsoftGroups"]},{"name":"MicrosoftMipLabel","ops":["allMipLabels"]},{"name":"MicrosoftSite","ops":["microsoftSites"]},{"name":"MicrosoftSiteConnection","ops":["microsoftSites"]},{"name":"MissedSnapshotListResponse","ops":["fusionComputeMissedSnapshots","getMissedMongoCollectionSetSnapshots","getMissedOpsManagerManagedMongoSourceSnapshots","mssqlDatabaseMissedSnapshots","nutanixVmMissedSnapshots","oracleMissedSnapshots"]},{"name":"MissingCluster","ops":["allMissingClusters"]},{"name":"MissingClusterConnection","ops":["allMissingClusters"]},{"name":"ModifyIpmiReply","ops":["clusterIpmi","modifyIpmi"]},{"name":"MongoCollection","ops":["mongoCollection","mongoCollections","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"MongoCollectionConnection","ops":["mongoCollections"]},{"name":"MongoCollectionSet","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew"]},{"name":"MongoDatabase","ops":["mongoDatabase","mongoDatabases","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"MongoDatabaseConnection","ops":["mongoDatabases"]},{"name":"MongoOpsManagerRestoreTargetsForSnapshotListResponse","ops":["mongoRestoreTargetsForSnapshot"]},{"name":"MongoRecoverableRanges","ops":["mongoBulkRecoverableRanges","mongoRecoverableRanges"]},{"name":"MongoSource","ops":["mongoSource","mongoSources","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"MongoSourceConnection","ops":["mongoSources"]},{"name":"MongodbCollection","ops":["mongodbCollection","mongodbCollections","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"MongodbCollectionConnection","ops":["mongodbCollections"]},{"name":"MongodbDatabase","ops":["mongodbDatabase","mongodbDatabases","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"MongodbDatabaseConnection","ops":["mongodbDatabases"]},{"name":"MongodbSource","ops":["mongodbSource","mongodbSources","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"MongodbSourceConnection","ops":["mongodbSources"]},{"name":"MosaicAsyncResponse","ops":["addMosaicStore","bulkDeleteCassandraSources","bulkDeleteMongodbSources","createCassandraSource","createMongodbSource","deleteCassandraSource","deleteMongodbSource","deleteMosaicStore","recoverCassandraSource","recoverMongodbSource","updateCassandraSource","updateMongodbSource","updateMosaicStore"]},{"name":"MosaicRecoveryRangeResponse","ops":["mongodbBulkRecoverableRange","mosaicBulkRecoveryRange"]},{"name":"MosaicStorageLocation","ops":["allNosqlStorageLocations"]},{"name":"MountDiskReply","ops":["mountDisk"]},{"name":"MssqlAvailabilityGroup","ops":["mssqlAvailabilityGroup","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","mssqlTopLevelDescendants"]},{"name":"MssqlAvailabilityGroupVirtualGroup","ops":["mssqlAvailabilityGroupVirtualGroups"]},{"name":"MssqlAvailabilityGroupVirtualGroupConnection","ops":["mssqlAvailabilityGroupVirtualGroups"]},{"name":"MssqlDatabase","ops":["mssqlDatabase","mssqlDatabases","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","hierarchySnappables","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","mssqlTopLevelDescendants"]},{"name":"MssqlDatabaseConnection","ops":["mssqlDatabases"]},{"name":"MssqlDatabaseLiveMount","ops":["mssqlDatabaseLiveMounts"]},{"name":"MssqlDatabaseLiveMountConnection","ops":["mssqlDatabaseLiveMounts"]},{"name":"MssqlDatabaseVirtualGroup","ops":["mssqlAvailabilityGroupDatabaseVirtualGroups"]},{"name":"MssqlDatabaseVirtualGroupConnection","ops":["mssqlAvailabilityGroupDatabaseVirtualGroups"]},{"name":"MssqlDefaultPropertiesOnClusterReply","ops":["mssqlDefaultPropertiesOnCluster"]},{"name":"MssqlHost","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","mssqlTopLevelDescendants"]},{"name":"MssqlHostConfiguration","ops":["mssqlHostConfiguration"]},{"name":"MssqlInstance","ops":["mssqlInstance","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","mssqlTopLevelDescendants"]},{"name":"MssqlInstanceSummaryListResponse","ops":["mssqlCompatibleInstances"]},{"name":"MssqlLogShippingSummaryV2ListResponse","ops":["mssqlLogShippingTargets"]},{"name":"MssqlLogShippingTarget","ops":["cdmMssqlLogShippingTarget","cdmMssqlLogShippingTargets"]},{"name":"MssqlLogShippingTargetConnection","ops":["cdmMssqlLogShippingTargets"]},{"name":"MssqlMissedRecoverableRangeListResponse","ops":["mssqlDatabaseMissedRecoverableRanges"]},{"name":"MssqlRecoverableRangeListResponse","ops":["mssqlRecoverableRanges"]},{"name":"MssqlRestoreEstimateResult","ops":["mssqlDatabaseRestoreEstimate"]},{"name":"MssqlTopLevelDescendantType","ops":["mssqlTopLevelDescendants"]},{"name":"MssqlTopLevelDescendantTypeConnection","ops":["mssqlTopLevelDescendants"]},{"name":"MultiHopUpgradePathReply","ops":["multiHopUpgradePath"]},{"name":"MvcProfile","ops":["m365Mvc"]},{"name":"MvcProfileConnection","ops":["m365Mvc"]},{"name":"MysqldbDatabase","ops":["mysqlDatabase","mysqlDatabases","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"MysqldbDatabaseConnection","ops":["mysqlDatabases"]},{"name":"MysqldbInstance","ops":["mysqlInstance","mysqlInstances","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"MysqldbInstanceConnection","ops":["mysqlInstances"]},{"name":"NasFileset","ops":["nasFileset","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"NasNamespace","ops":["nasNamespace","nasNamespaces","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"NasNamespaceConnection","ops":["nasNamespaces"]},{"name":"NasShare","ops":["nasShare","nasShares","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"NasShareConnection","ops":["nasShares"]},{"name":"NasSystem","ops":["nasSystem","nasSystems","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"NasSystemConnection","ops":["nasSystems"]},{"name":"NasVolume","ops":["nasVolume","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"NcdBackEndCapacity","ops":["ncdBackEndCapacity"]},{"name":"NcdFrontEndCapacity","ops":["ncdFrontEndCapacity"]},{"name":"NcdObjectProtectionStatus","ops":["ncdObjectProtectionStatus"]},{"name":"NcdObjectsOverTimeData","ops":["allNcdObjectsOverTimeData"]},{"name":"NcdSlaComplianceData","ops":["allNcdSlaComplianceData"]},{"name":"NcdTaskData","ops":["allNcdTaskData"]},{"name":"NcdUsageOverTimeData","ops":["allNcdUsageOverTimeData"]},{"name":"NcdVmImageUrl","ops":["ncdVmImageUrl"]},{"name":"NetworkHostProject","ops":["allGcpNativeProjectsWithAccessibleNetworks"]},{"name":"NetworkInfoListResponse","ops":["vCenterNetworks"]},{"name":"NetworkInterfaceListResponse","ops":["clusterNetworkInterfaces"]},{"name":"NetworkThrottleSummaryListResponse","ops":["networkThrottle"]},{"name":"NfAnomalyResult","ops":["nfAnomalyResults"]},{"name":"NfAnomalyResultConnection","ops":["nfAnomalyResults"]},{"name":"NfAnomalyResultGroupedData","ops":["nfAnomalyResultsGrouped"]},{"name":"NfAnomalyResultGroupedDataConnection","ops":["nfAnomalyResultsGrouped"]},{"name":"NodeRemovalCancelPermissionReply","ops":["nodeRemovalCancelPermission"]},{"name":"NodeStatusListResponse","ops":["clusterNodes"]},{"name":"NodeToRemoveByCount","ops":["nodesToRemoveByCount"]},{"name":"NodeToRemoveByCountConnection","ops":["nodesToRemoveByCount"]},{"name":"NodeToReplaceReply","ops":["nodeToReplace"]},{"name":"NodeTunnelStatusConnection","ops":["nodeTunnelStatuses"]},{"name":"Notification","ops":["entityInsights"]},{"name":"NotificationConnection","ops":["entityInsights"]},{"name":"NotificationForGetLicenseReply","ops":["notificationForGetLicense"]},{"name":"NtpServerConfigurationListResponse","ops":["clusterNtpServers"]},{"name":"NutanixCategory","ops":["nutanixCategory","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"NutanixCategoryValue","ops":["nutanixCategoryValue","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"NutanixCluster","ops":["nutanixCluster","nutanixClusters","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"NutanixClusterConnection","ops":["nutanixClusters"]},{"name":"NutanixContainerListResponse","ops":["nutanixClusterContainers"]},{"name":"NutanixLiveMount","ops":["nutanixMounts"]},{"name":"NutanixLiveMountConnection","ops":["nutanixMounts"]},{"name":"NutanixNetworkListResponse","ops":["nutanixClusterNetworks"]},{"name":"NutanixPrismCentral","ops":["nutanixPrismCentral","nutanixPrismCentrals","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"NutanixPrismCentralConnection","ops":["nutanixPrismCentrals"]},{"name":"NutanixVm","ops":["nutanixVm","nutanixVms","vDiskMountableNutanixVms","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"NutanixVmConnection","ops":["nutanixVms","vDiskMountableNutanixVms"]},{"name":"NutanixVmDetail","ops":["updateNutanixVm"]},{"name":"NutanixVmSnapshotDetail","ops":["nutanixSnapshotDetail"]},{"name":"NutanixVmSnapshotVdiskDetailListResponse","ops":["nutanixSnapshotVdisks"]},{"name":"O365AdGroupMember","ops":["adGroupMembers"]},{"name":"O365AdGroupMemberConnection","ops":["adGroupMembers"]},{"name":"O365App","ops":["listO365Apps"]},{"name":"O365AppConnection","ops":["listO365Apps"]},{"name":"O365Calendar","ops":["o365Calendar","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"O365CalendarEvent","ops":["browseCalendar","browseContacts","browseFolder","snappableContactSearch","snappableEmailSearch","snappableEventSearch","snapshotEmailSearch","snapshotEventSearch"]},{"name":"O365CalendarFolder","ops":["browseCalendar","browseContacts","browseFolder","snappableContactSearch","snappableEmailSearch","snappableEventSearch","snapshotEmailSearch","snapshotEventSearch"]},{"name":"O365ConfiguredGroupMember","ops":["configuredGroupMembers"]},{"name":"O365ConfiguredGroupMemberConnection","ops":["configuredGroupMembers"]},{"name":"O365Consumption","ops":["o365Consumption"]},{"name":"O365Contact","ops":["browseCalendar","browseContacts","browseFolder","snappableContactSearch","snappableEmailSearch","snappableEventSearch","snapshotEmailSearch","snapshotEventSearch"]},{"name":"O365ContactFolder","ops":["browseCalendar","browseContacts","browseFolder","snappableContactSearch","snappableEmailSearch","snappableEventSearch","snapshotEmailSearch","snapshotEventSearch"]},{"name":"O365Email","ops":["browseCalendar","browseContacts","browseFolder","snappableContactSearch","snappableEmailSearch","snappableEventSearch","snapshotEmailSearch","snapshotEventSearch"]},{"name":"O365ExchangeObject","ops":["browseCalendar","browseContacts","browseFolder","snappableContactSearch","snappableEmailSearch","snappableEventSearch","snapshotEmailSearch","snapshotEventSearch"]},{"name":"O365ExchangeObjectConnection","ops":["browseCalendar","browseContacts","browseFolder","snappableContactSearch","snappableEmailSearch","snappableEventSearch","snapshotEmailSearch","snapshotEventSearch"]},{"name":"O365Folder","ops":["browseCalendar","browseContacts","browseFolder","snappableContactSearch","snappableEmailSearch","snappableEventSearch","snapshotEmailSearch","snapshotEventSearch"]},{"name":"O365FullSpDescendant","ops":["sharepointSiteDescendants","sharepointSiteSearch"]},{"name":"O365FullSpObject","ops":["sharepointSiteDescendants","sharepointSiteSearch"]},{"name":"O365FullSpObjectConnection","ops":["sharepointSiteDescendants","sharepointSiteSearch"]},{"name":"O365Group","ops":["o365Groups","microsoftGroups","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"O365GroupConnection","ops":["o365Groups"]},{"name":"O365License","ops":["o365License"]},{"name":"O365Mailbox","ops":["o365Mailbox","o365Mailboxes","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","o365UserObjects"]},{"name":"O365MailboxConnection","ops":["o365Mailboxes"]},{"name":"O365OauthConsentCompleteReply","ops":["o365OauthConsentComplete"]},{"name":"O365OauthConsentKickoffReply","ops":["o365OauthConsentKickoff"]},{"name":"O365Onedrive","ops":["o365Onedrive","o365Onedrives","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","o365UserObjects"]},{"name":"O365OnedriveConnection","ops":["o365Onedrives"]},{"name":"O365OnedriveFile","ops":["browseOnedrive","browseSharepointDrive","browseSharepointList","browseTeamsDrive","snappableOnedriveSearch","snappableSharepointDriveSearch","snappableSharepointListSearch","snappableTeamsDriveSearch","snapshotOnedriveSearch","snapshotSharepointDriveSearch"]},{"name":"O365OnedriveFolder","ops":["browseOnedrive","browseSharepointDrive","browseSharepointList","browseTeamsDrive","snappableOnedriveSearch","snappableSharepointDriveSearch","snappableSharepointListSearch","snappableTeamsDriveSearch","snapshotOnedriveSearch","snapshotSharepointDriveSearch"]},{"name":"O365OnedriveObject","ops":["browseOnedrive","browseSharepointDrive","browseSharepointList","browseTeamsDrive","snappableOnedriveSearch","snappableSharepointDriveSearch","snappableSharepointListSearch","snappableTeamsDriveSearch","snapshotOnedriveSearch","snapshotSharepointDriveSearch"]},{"name":"O365OnedriveObjectConnection","ops":["browseOnedrive","browseSharepointDrive","browseSharepointList","browseTeamsDrive","snappableOnedriveSearch","snappableSharepointDriveSearch","snappableSharepointListSearch","snappableTeamsDriveSearch","snapshotOnedriveSearch","snapshotSharepointDriveSearch"]},{"name":"O365Org","ops":["o365Org","o365OrgAtSnappableLevel","o365Orgs","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"O365OrgConnection","ops":["o365Orgs"]},{"name":"O365OrgInfo","ops":["allO365OrgStatuses"]},{"name":"O365PdlGroupsReply","ops":["o365PdlGroups"]},{"name":"O365SaasSetupKickoffReply","ops":["o365SaaSSetupKickoff"]},{"name":"O365ServiceAccountStatusResp","ops":["o365ServiceAccount"]},{"name":"O365SetupKickoffResp","ops":["o365SetupKickoff"]},{"name":"O365SharepointDrive","ops":["o365SharepointDrive","o365SharepointDrives","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","o365SharepointObjectList","o365SharepointObjects","o365SharepointObjectsNew"]},{"name":"O365SharepointDriveConnection","ops":["o365SharepointDrives"]},{"name":"O365SharepointList","ops":["o365SharepointList","o365SharepointLists","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","o365SharepointObjectList","o365SharepointObjects","o365SharepointObjectsNew"]},{"name":"O365SharepointListConnection","ops":["o365SharepointLists"]},{"name":"O365SharepointObject","ops":["o365SharepointObjectList","o365SharepointObjects","o365SharepointObjectsNew"]},{"name":"O365SharepointObjectConnection","ops":["o365SharepointObjectList","o365SharepointObjects","o365SharepointObjectsNew"]},{"name":"O365Site","ops":["o365SharepointSite","o365SharepointSites","o365Site","o365Sites","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","o365SharepointObjectList","o365SharepointObjects","o365SharepointObjectsNew","microsoftSites"]},{"name":"O365SiteConnection","ops":["o365SharepointSites","o365Sites"]},{"name":"O365SubscriptionAppTypeCounts","ops":["allO365SubscriptionsAppTypeCounts"]},{"name":"O365TeamConvChannel","ops":["browseO365TeamConvChannels"]},{"name":"O365TeamConvChannelConnection","ops":["browseO365TeamConvChannels"]},{"name":"O365TeamConversationsSender","ops":["o365TeamPostedBy"]},{"name":"O365TeamConversationsSenderConnection","ops":["o365TeamPostedBy"]},{"name":"O365Teams","ops":["o365Team","o365Teams","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"O365TeamsChannel","ops":["browseTeamsChannels","o365TeamChannels"]},{"name":"O365TeamsChannelConnection","ops":["browseTeamsChannels","o365TeamChannels"]},{"name":"O365TeamsConnection","ops":["o365Teams"]},{"name":"O365TeamsConversations","ops":["snappableTeamsConversationsSearch"]},{"name":"O365TeamsConversationsConnection","ops":["snappableTeamsConversationsSearch"]},{"name":"O365User","ops":["o365User","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"O365UserDescendantMetadata","ops":["o365UserObjects"]},{"name":"O365UserDescendantMetadataConnection","ops":["o365UserObjects"]},{"name":"OauthCodesForEdgeRegReply","ops":["oauthCodesForEdgeReg"]},{"name":"ObjectIdsForHierarchyType","ops":["allObjectsAlreadyAssignedToOrgs"]},{"name":"ObjectTypeAccessSummary","ops":["objectTypeAccessSummary"]},{"name":"ObjectTypeAccessSummaryConnection","ops":["objectTypeAccessSummary"]},{"name":"OnboardingModeBackupStats","ops":["m365OnboardingModeBackupStats"]},{"name":"OnboardingModeStats","ops":["m365OnboardingModeStats"]},{"name":"OptionGroup","ops":["allOptionGroupsByRegionFromAws"]},{"name":"OracleAcoParameterList","ops":["oracleAcoParameters"]},{"name":"OracleDataGuardGroup","ops":["oracleDataGuardGroup","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","oracleTopLevelDescendants"]},{"name":"OracleDatabase","ops":["oracleDatabase","oracleDatabases","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","hierarchySnappables","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","oracleTopLevelDescendants"]},{"name":"OracleDatabaseConnection","ops":["oracleDatabases"]},{"name":"OracleDbDetail","ops":["updateOracleDataGuardGroup"]},{"name":"OracleFileDownloadLink","ops":["oracleAcoExampleDownloadLink"]},{"name":"OracleHost","ops":["oracleHost","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","oracleTopLevelDescendants"]},{"name":"OracleLiveMount","ops":["oracleLiveMounts"]},{"name":"OracleLiveMountConnection","ops":["oracleLiveMounts"]},{"name":"OracleLogBackupConfig","ops":["oracleDatabaseLogBackupConfig","oracleHostLogBackupConfig","oracleRacLogBackupConfig"]},{"name":"OracleMissedRecoverableRangeListResponse","ops":["oracleMissedRecoverableRanges"]},{"name":"OraclePdbDetails","ops":["oraclePdbDetails"]},{"name":"OracleRac","ops":["oracleRac","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","oracleTopLevelDescendants"]},{"name":"OracleRecoverableRangeListResponse","ops":["oracleRecoverableRanges"]},{"name":"OracleRecoverableRangeMinimalResponse","ops":["oracleRecoverableRangesMinimal"]},{"name":"OracleTopLevelDescendantType","ops":["oracleTopLevelDescendants"]},{"name":"OracleTopLevelDescendantTypeConnection","ops":["oracleTopLevelDescendants"]},{"name":"Org","ops":["allOrgsByIds","currentOrg","org","orgs"]},{"name":"OrgConnection","ops":["orgs"]},{"name":"OrgSecurityPolicy","ops":["orgSecurityPolicy"]},{"name":"OrgsForPrincipalReply","ops":["orgsForPrincipal"]},{"name":"OverallRansomwareInvestigationSummary","ops":["overallRansomwareInvestigationSummary"]},{"name":"PasswordComplexityPolicy","ops":["passwordComplexityPolicy"]},{"name":"PatchDb2DatabaseReply","ops":["patchDb2Database"]},{"name":"PatchDb2InstanceReply","ops":["patchDb2Instance"]},{"name":"PatchMysqldbInstanceResponse","ops":["patchMysqlInstance"]},{"name":"PatchNutanixMountV1Reply","ops":["patchNutanixMountV1"]},{"name":"PatchPostgresDbClusterResponse","ops":["patchPostgreSQLDbCluster"]},{"name":"PatchSapHanaSystemReply","ops":["patchSapHanaSystem"]},{"name":"PauseSlaReply","ops":["pauseSla"]},{"name":"PauseTargetReply","ops":["pauseTarget"]},{"name":"PerLocationMigrationInfo","ops":["allRcvMigrationInfo"]},{"name":"Permission","ops":["getPermissions"]},{"name":"PermissionPolicy","ops":["allAwsPermissionPolicies"]},{"name":"PhoenixRolloutProgress","ops":["phoenixRolloutProgress"]},{"name":"PhysicalHost","ops":["physicalHost","physicalHosts","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","mssqlTopLevelDescendants"]},{"name":"PhysicalHostConnection","ops":["physicalHosts"]},{"name":"PitRestoreMysqldbInstanceResponse","ops":["pitRestoreMysqlInstance"]},{"name":"PitRestorePostgresDbClusterResponse","ops":["pitRestorePostgreSQLDbCluster"]},{"name":"PolarisInventorySubHierarchyRoot","ops":["polarisInventorySubHierarchyRoot"]},{"name":"PolarisSnapshot","ops":["polarisSnapshot","allSnapshotsByIds","snapshotOfASnappableConnection","snapshotOfSnappablesConnection"]},{"name":"PolicyDetail","ops":["policyDetails"]},{"name":"PolicyDetailConnection","ops":["policyDetails"]},{"name":"PolicyObj","ops":["policyObj","policyObjOpt","policyObjs"]},{"name":"PolicyObjConnection","ops":["policyObjs"]},{"name":"PolicyObjectUsage","ops":["policyObjectUsages"]},{"name":"PolicyObjectUsageConnection","ops":["policyObjectUsages"]},{"name":"PolicyResult","ops":["allSecurityPolicies","securityPolicy"]},{"name":"PolicyRiskSummary","ops":["allPolicyRiskSummaries"]},{"name":"PolicySummary","ops":["allTopRiskPolicySummaries"]},{"name":"PolicyViolation","ops":["policyViolation","policyViolations"]},{"name":"PolicyViolationConnection","ops":["policyViolations"]},{"name":"PolicyViolationHistoryEntryConnection","ops":["policyViolationHistoryEntries"]},{"name":"PolicyViolationsByResource","ops":["policyViolationsByResource"]},{"name":"PolicyViolationsByResourceConnection","ops":["policyViolationsByResource"]},{"name":"PostgreSQLDatabase","ops":["postgreSQLDatabase","postgreSQLDatabases","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"PostgreSQLDatabaseConnection","ops":["postgreSQLDatabases"]},{"name":"PostgreSQLDbCluster","ops":["postgreSQLDbCluster","postgreSQLDbClusters","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"PostgreSQLDbClusterConnection","ops":["postgreSQLDbClusters"]},{"name":"PowerPlatformEnvironment","ops":["saasAppOrganizations","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"PrechecksJobReply","ops":["startPeriodicUpgradePrechecksOnDemandJob"]},{"name":"PrechecksStatusReply","ops":["prechecksStatus","prechecksStatusWithNextJobInfo"]},{"name":"PrepareAwsCloudAccountDeletionReply","ops":["prepareAwsCloudAccountDeletion"]},{"name":"PrepareFeatureUpdateForAwsCloudAccountReply","ops":["prepareFeatureUpdateForAwsCloudAccount"]},{"name":"Principal","ops":["ldapPrincipalConnection"]},{"name":"PrincipalApiPermissionsReply","ops":["principalApiPermissions"]},{"name":"PrincipalConnection","ops":["ldapPrincipalConnection"]},{"name":"PrincipalDetails","ops":["principalDetails"]},{"name":"PrincipalEntity","ops":["principalEntities"]},{"name":"PrincipalInsight","ops":["userAccessInsights"]},{"name":"PrincipalInsightConnection","ops":["userAccessInsights"]},{"name":"PrincipalObjectSummary","ops":["principalObjectSummaries"]},{"name":"PrincipalObjectSummaryConnection","ops":["principalObjectSummaries"]},{"name":"PrincipalSummary","ops":["listAccessGrantingIdentities","listDataAccessIdentities","principalSummaries"]},{"name":"PrincipalSummaryConnection","ops":["listAccessGrantingIdentities","listDataAccessIdentities","principalSummaries"]},{"name":"PrivateContainerRegistryReplyType","ops":["privateContainerRegistry"]},{"name":"ProcessedRansomwareInvestigationWorkloadCountReply","ops":["processedRansomwareInvestigationWorkloadCount"]},{"name":"ProductDocumentation","ops":["productDocumentation"]},{"name":"ProtectedObjects","ops":["protectedObjectsConnection"]},{"name":"ProtectedObjectsConnection","ops":["protectedObjectsConnection"]},{"name":"ProtectionSummaryV2","ops":["protectionSummaryV2"]},{"name":"ProvisionCloudDirectCloudVmReply","ops":["provisionCloudDirectCloudVm"]},{"name":"PureStorageArrayV1","ops":["pureStorageArrayV1","pureStorageArraysV1","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets"]},{"name":"PureStorageArrayV1Connection","ops":["pureStorageArraysV1"]},{"name":"PureStorageProtectionGroupSnapshotSummaryListResponse","ops":["queryPureStorageProtectionGroupSnapshot"]},{"name":"PureStorageProtectionGroupV1","ops":["pureStorageProtectionGroupV1","pureStorageProtectionGroupsV1","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","hierarchySnappables","cdmHierarchySnappableNew","cdmHierarchySnappablesNew"]},{"name":"PureStorageProtectionGroupV1Connection","ops":["pureStorageProtectionGroupsV1"]},{"name":"PureStorageVolumeV1","ops":["pureStorageVolumeV1","pureStorageVolumesV1","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","hierarchySnappables","cdmHierarchySnappableNew","cdmHierarchySnappablesNew"]},{"name":"PureStorageVolumeV1Connection","ops":["pureStorageVolumesV1"]},{"name":"PutSmbConfigurationReply","ops":["putSmbConfiguration"]},{"name":"PvcInformation","ops":["allSnapshotPvcs"]},{"name":"QuarantineSpec","ops":["allQuarantinedDetailsForSnapshots","allQuarantinedDetailsForWorkload"]},{"name":"QuarantineThreatHuntMatchesReply","ops":["quarantineThreatHuntMatches"]},{"name":"QueryDatastoreFreespaceThresholdsReply","ops":["queryDatastoreFreespaceThresholds"]},{"name":"QuerySDDLReply","ops":["datagovSecDesc"]},{"name":"QuiesceCandidateListResponse","ops":["pureStorageProtectionGroupQuiesceCandidates"]},{"name":"RansomwareInvestigationAnalysisSummaryReply","ops":["ransomwareInvestigationAnalysisSummary"]},{"name":"RansomwareInvestigationEnablementReply","ops":["ransomwareInvestigationEnablement"]},{"name":"RansomwareResult","ops":["ransomwareResult","ransomwareResultOpt","ransomwareResults"]},{"name":"RansomwareResultConnection","ops":["ransomwareResults"]},{"name":"RansomwareResultGroupedData","ops":["ransomwareResultsGrouped"]},{"name":"RansomwareResultGroupedDataConnection","ops":["ransomwareResultsGrouped"]},{"name":"RbaInstallerUrls","ops":["cloudNativeRbaInstallers"]},{"name":"RbacPermission","ops":["allEffectiveRbacPermissions"]},{"name":"RcsAzureArchivalLocationsConsumptionStatsOutput","ops":["rcsArchivalLocationsConsumptionStats"]},{"name":"RcvAccountEntitlement","ops":["rcvAccountEntitlement"]},{"name":"RcvBliMigrationDetails","ops":["rcvAzureBliMigrationDetails"]},{"name":"RcvBliMigrationDetailsConnection","ops":["rcvAzureBliMigrationDetails"]},{"name":"RcvEntitlementRunway","ops":["allRcvEntitlementRunways"]},{"name":"RdsInstanceClassBatchResult","ops":["batchSupportedAwsRdsDatabaseInstanceClasses"]},{"name":"RdsInstanceDetailsFromAws","ops":["rdsInstanceDetailsFromAws"]},{"name":"RdsInstanceExportDefaults","ops":["awsNativeRdsExportDefaults"]},{"name":"ReadIntegrationReply","ops":["integration"]},{"name":"ReclaimableClusterStatsData","ops":["allReclaimableClusterStats"]},{"name":"ReclaimableClusterStatsDataConnection","ops":["allReclaimableClusterStats"]},{"name":"RecoverDevOpsRepositoryReply","ops":["recoverDevOpsRepository"]},{"name":"RecoverGlueIcebergTableSnapshotReply","ops":["recoverGlueIcebergTableSnapshot"]},{"name":"Recovery","ops":["recoveries"]},{"name":"RecoveryConnection","ops":["recoveries"]},{"name":"RecoveryReport","ops":["recoveryReport"]},{"name":"RecoverySpecsReply","ops":["recoverySpecs"]},{"name":"RefreshDevOpsOrganizationsReply","ops":["refreshDevOpsOrganizations"]},{"name":"RefreshHostReply","ops":["refreshHost"]},{"name":"RefreshNasSystemsReply","ops":["refreshNasSystems"]},{"name":"RefreshStorageArraysReply","ops":["refreshStorageArrays"]},{"name":"Region","ops":["azureRegions"]},{"name":"RegionConnection","ops":["azureRegions"]},{"name":"RegisterArchivalMigrationReply","ops":["registerArchivalMigration"]},{"name":"RegisterAwsFeatureArtifactsReply","ops":["registerAwsFeatureArtifacts"]},{"name":"RegisterCloudClusterReply","ops":["registerCloudCluster"]},{"name":"RegisterNasSystemReply","ops":["registerNasSystem"]},{"name":"RemoveNodeDetailsReply","ops":["removedNodeDetails"]},{"name":"RemoveNodeForReplacementReply","ops":["removeNodeForReplacement"]},{"name":"RemoveUploadRecordReply","ops":["removeUploadRecord"]},{"name":"RemoveVlansReply","ops":["removeVlans"]},{"name":"ReplaceClusterNodeReply","ops":["replaceClusterNode"]},{"name":"ReplicatedSnapshotInfo","ops":["allK8sReplicaSnapshotInfos"]},{"name":"ReplicationNetworkThrottleBypassReply","ops":["replicationNetworkThrottleBypassById"]},{"name":"ReplicationPair","ops":["replicationPairs"]},{"name":"ReplicationPairConnection","ops":["replicationPairs"]},{"name":"ReplicationTargetThrottleBypassSummaryListResponse","ops":["replicationNetworkThrottleBypass"]},{"name":"ReportMigrationStatus","ops":["clusterReportMigrationStatus"]},{"name":"ReportMigrationStatusConnection","ops":["clusterReportMigrationStatus"]},{"name":"ReportObject","ops":["reportObjects"]},{"name":"ReportObjectConnection","ops":["reportObjects"]},{"name":"ReportTemplatesByCategory","ops":["allReportTemplatesByCategories"]},{"name":"ReportsMigrationCount","ops":["clusterReportMigrationCount"]},{"name":"RequestPersistentExoclusterReply","ops":["requestPersistentExocluster"]},{"name":"RequestPureStorageProtectionGroupForceFullSnapshotReply","ops":["requestPureStorageProtectionGroupForceFullSnapshot"]},{"name":"RequestStatus","ops":["addAdGroupsToHierarchy","azureOauthConsentComplete","cancelTaskchain","createO365AppComplete","deleteAdGroupsFromHierarchy","deleteO365AzureApp","deleteO365ServiceAccount","enableO365SharePoint","enableO365Teams","insertCustomerO365App","setO365ServiceAccount"]},{"name":"RequestSuccess","ops":["deleteHypervVirtualMachineSnapshot","deleteNutanixSnapshot","deleteNutanixSnapshots","deleteSnapshotsOfUnmanagedObjects","deleteUnmanagedSnapshots","deleteVsphereAdvancedTag","excludeVmDisks","hypervDeleteAllSnapshots","installIoFilter","registerAgentHypervVirtualMachine","registerAgentNutanixVm","resolveVolumeGroupsConflict","uninstallIoFilter","updateVcenterHotAddBandwidth","updateVcenterHotAddNetwork","updateVsphereVm","updateVsphereVmNew","upgradeIoFilter","vsphereExcludeVmDisks","vsphereVmRegisterAgent","vsphereVmRegisterAgentWithOrg"]},{"name":"ResetTypeOfRemovalJob","ops":["resetTypeOfRemovalJob"]},{"name":"ResourceGroup","ops":["azureResourceGroups"]},{"name":"ResourceGroupConnection","ops":["azureResourceGroups"]},{"name":"ResourceGroupInfo","ops":["resourceGroups"]},{"name":"ResponseSuccess","ops":["addVlan","assignMssqlSlaDomainProperties","bulkDeleteFailoverCluster","bulkDeleteFailoverClusterApp","bulkDeleteFileset","bulkDeleteFilesetTemplate","bulkDeleteHost","deleteFailoverCluster","deleteFailoverClusterApp","deleteFilesetSnapshots","deleteK8sProtectionSet","deleteMssqlDbSnapshots","deleteSapHanaDbSnapshot","disableReplicationPause","enableReplicationPause","hideRevealNasShares","hypervScvmmDelete","removeDisk","removeProxyConfig","resizeDisk","updateClusterNtpServers","updateDnsServersAndSearchDomains","updateK8sCluster","updateK8sProtectionSet","updateReplicationNetworkThrottleBypass"]},{"name":"RestoreActiveDirectoryForestV2Reply","ops":["restoreActiveDirectoryForestV2"]},{"name":"RestoreAzureAdObjectsWithPasswordsReply","ops":["restoreAzureAdObjectsWithPasswords"]},{"name":"RestorePostgreSqlDbClusterReply","ops":["restorePostgreSqlDbCluster"]},{"name":"RestorePostgresDbClusterSnapshotResponse","ops":["restorePostgreSQLDbClusterToSnapshot"]},{"name":"ResumeTargetReply","ops":["resumeTarget"]},{"name":"RetryBackupResp","ops":["retryBackup"]},{"name":"Role","ops":["getAllRolesInOrgConnection","getRolesByIds"]},{"name":"RoleConnection","ops":["getAllRolesInOrgConnection"]},{"name":"RoleTemplate","ops":["roleTemplates"]},{"name":"RoleTemplateConnection","ops":["roleTemplates"]},{"name":"RotateServiceAccountSecretReply","ops":["rotateServiceAccountSecret"]},{"name":"Row","ops":["reportData"]},{"name":"RowConnection","ops":["reportData"]},{"name":"RscPermsToCdmInfoOut","ops":["rscPermsToCdmInfo"]},{"name":"RubrikManagedAwsTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RubrikManagedAzureTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RubrikManagedDcaTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RubrikManagedGcpTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RubrikManagedGlacierTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RubrikManagedLckTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RubrikManagedNfsTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RubrikManagedRcsTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RubrikManagedRcvAwsTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RubrikManagedRcvGcpTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RubrikManagedS3CompatibleTarget","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RubrikManagedTapeTargetType","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"RunCustomAnalyzerReply","ops":["runCustomAnalyzer"]},{"name":"RvcDeploymentToolLink","ops":["rvcDeploymentToolLink"]},{"name":"S3BucketDetails","ops":["allS3BucketsDetailsFromAws"]},{"name":"S3TablesIcebergCatalog","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"S3TablesIcebergNamespace","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"S3TablesIcebergTable","ops":["hierarchySnappables","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"SaasAppsOrganization","ops":["saasAppOrganizations"]},{"name":"SaasAppsOrganizationConnection","ops":["saasAppOrganizations"]},{"name":"SaasWorkloadMetadataTypesReply","ops":["saasWorkloadMetadataTypes"]},{"name":"SalesforceObject","ops":["salesforceObjects","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"SalesforceObjectConnection","ops":["salesforceObjects"]},{"name":"SalesforceOrganization","ops":["saasAppOrganizations","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"SapHanaDatabase","ops":["sapHanaDatabase","sapHanaDatabases","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","hierarchySnappables","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"SapHanaDatabaseConnection","ops":["sapHanaDatabases"]},{"name":"SapHanaLogSnapshot","ops":["sapHanaLogSnapshot","sapHanaLogSnapshots"]},{"name":"SapHanaLogSnapshotConnection","ops":["sapHanaLogSnapshots"]},{"name":"SapHanaRecoverableRange","ops":["sapHanaRecoverableRange","sapHanaRecoverableRanges"]},{"name":"SapHanaRecoverableRangeConnection","ops":["sapHanaRecoverableRanges"]},{"name":"SapHanaSystem","ops":["sapHanaSystem","sapHanaSystems","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"SapHanaSystemConnection","ops":["sapHanaSystems"]},{"name":"ScheduledReport","ops":["scheduledReport","scheduledReports"]},{"name":"ScheduledReportConnection","ops":["scheduledReports"]},{"name":"SearchCloudDirectWorkloadEntry","ops":["searchCloudDirectWorkload"]},{"name":"SearchCloudDirectWorkloadEntryConnection","ops":["searchCloudDirectWorkload"]},{"name":"SearchM365BackupStorageObjectRestorePointsResp","ops":["searchM365BackupStorageObjectRestorePoints"]},{"name":"SearchResponseListResponse","ops":["searchHost","searchNutanixVm"]},{"name":"SeedEnabledPoliciesReply","ops":["seedEnabledPolicies"]},{"name":"SeedInitialPoliciesReply","ops":["seedInitialPolicies"]},{"name":"SendPdfReportReply","ops":["sendPdfReport"]},{"name":"SendTestMessageToExistingWebhookReply","ops":["sendTestMessageToExistingWebhook"]},{"name":"SendTestMessageToWebhookReply","ops":["sendTestMessageToWebhook"]},{"name":"SensitiveDataSummary","ops":["sensitiveDataSummary"]},{"name":"SensitiveFileDetailsReply","ops":["sensitiveFileDetails"]},{"name":"ServiceAccount","ops":["serviceAccounts"]},{"name":"ServiceAccountConnection","ops":["serviceAccounts"]},{"name":"SetAnalyzerRisksReply","ops":["setAnalyzerRisks"]},{"name":"SetCephSettingsReply","ops":["setCephSettings"]},{"name":"SetCloudDirectGlobalSmbSettingsReply","ops":["setCloudDirectGlobalSmbSettings"]},{"name":"SetCoordinatorLabelsReply","ops":["setCoordinatorLabels"]},{"name":"SetDatastoreFreespaceThresholdsReply","ops":["setDatastoreFreespaceThresholds"]},{"name":"SetHostRbsNetworkLimitReply","ops":["setHostRbsNetworkLimit"]},{"name":"SetMissingClusterStatusReply","ops":["setMissingClusterStatus"]},{"name":"SetSelfServeRollingUpgradeReply","ops":["setSelfServeRollingUpgrade"]},{"name":"SetUpgradeTypeReply","ops":["setUpgradeType"]},{"name":"SetUserSessionManagementConfigReply","ops":["setUserSessionManagementConfig"]},{"name":"SetWorkloadAlertSettingReply","ops":["setWorkloadAlertSetting"]},{"name":"SetupAzureO365ExocomputeResp","ops":["setupAzureO365Exocompute"]},{"name":"ShareExportIdPair","ops":["allCloudDirectShares"]},{"name":"ShareFileset","ops":["shareFileset","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables"]},{"name":"SidsPolicyHitsSummaries","ops":["sidsPolicyHitsSummary"]},{"name":"SigninLogDetails","ops":["signinLogDetails"]},{"name":"SigninLogFilterValuesResponse","ops":["signinLogFilterValues"]},{"name":"SigninLogSummary","ops":["signinLogs"]},{"name":"SigninLogSummaryConnection","ops":["signinLogs"]},{"name":"SlaAssignResult","ops":["assignProtection","assignRetentionSLAToSnappables","assignRetentionSLAToSnapshots","assignSla","assignSlasForSnappableHierarchies"]},{"name":"SlaAuditDetail","ops":["slaAuditDetail"]},{"name":"SlaDomain","ops":["allSlaSummariesByIds","slaDomain","slaDomains"]},{"name":"SlaDomainConnection","ops":["slaDomains"]},{"name":"SlaInfo","ops":["allClusterGlobalSlas"]},{"name":"SlaResult","ops":["deleteGlobalSla"]},{"name":"SmbDomain","ops":["smbDomains"]},{"name":"SmbDomainConnection","ops":["smbDomains"]},{"name":"Snappable","ops":["searchSnappableConnection","snappableConnection"]},{"name":"SnappableConnection","ops":["searchSnappableConnection","snappableConnection"]},{"name":"SnappableGroupBy","ops":["snappableGroupByConnection"]},{"name":"SnappableGroupByConnection","ops":["snappableGroupByConnection"]},{"name":"SnapshotFile","ops":["browseSnapshotFileConnection","cloudNativeSnapshots"]},{"name":"SnapshotFileConnection","ops":["browseSnapshotFileConnection","cloudNativeSnapshots"]},{"name":"SnapshotFileDelta","ops":["snapshotFilesDelta"]},{"name":"SnapshotFileDeltaConnection","ops":["snapshotFilesDelta"]},{"name":"SnapshotFileDeltaV2","ops":["listDiffFilesForSnapshot","snapshotFilesDeltaV2"]},{"name":"SnapshotFileDeltaV2Connection","ops":["listDiffFilesForSnapshot","snapshotFilesDeltaV2"]},{"name":"SnapshotResult","ops":["snapshotResults"]},{"name":"SnapshotResultConnection","ops":["snapshotResults"]},{"name":"SnapshotSecurityInfo","ops":["snapshotsSecurityInfo"]},{"name":"SnapshotSecurityInfoConnection","ops":["snapshotsSecurityInfo"]},{"name":"SnapshotSummary","ops":["snapshotsForUnmanagedObject"]},{"name":"SnapshotSummaryConnection","ops":["snapshotsForUnmanagedObject"]},{"name":"SnmpConfiguration","ops":["snmpConfigurations"]},{"name":"SnoozedDirectory","ops":["snoozedDirectories"]},{"name":"SnoozedDirectoryConnection","ops":["snoozedDirectories"]},{"name":"SonarContentReport","ops":["sonarContentReport"]},{"name":"SonarContentReportConnection","ops":["sonarContentReport"]},{"name":"SonarReport","ops":["sonarReport"]},{"name":"SonarReportConnection","ops":["sonarReport"]},{"name":"SonarReportRow","ops":["sonarReportRow"]},{"name":"SonarReportRowConnection","ops":["sonarReportRow"]},{"name":"SourceChildRecoverySpecMapV2","ops":["allSourceRecoverySpecsV2"]},{"name":"SsmDocumentForEc2Reply","ops":["ssmDocumentForEc2"]},{"name":"SsoGroupAlreadyExistsReply","ops":["ssoGroupAlreadyExists"]},{"name":"StartAzureAdAppSetupReply","ops":["startAzureAdAppSetup"]},{"name":"StartAzureAdAppUpdateReply","ops":["startAzureAdAppUpdate"]},{"name":"StartAzureCloudAccountOauthReply","ops":["startAzureCloudAccountOauth"]},{"name":"StartBulkThreatHuntReply","ops":["startBulkThreatHunt"]},{"name":"StartClusterReportMigrationJobReply","ops":["startClusterReportMigrationJob"]},{"name":"StartCrawlReply","ops":["startCrawl"]},{"name":"StartGitHubAppSetupReply","ops":["startGitHubAppSetup"]},{"name":"StartRecoveryReply","ops":["startRecovery"]},{"name":"StartThreatHuntReply","ops":["startThreatHunt"]},{"name":"StartThreatHuntV2Reply","ops":["startThreatHuntV2"]},{"name":"StartTurboThreatHuntReply","ops":["startTurboThreatHunt"]},{"name":"StopJobInstanceReply","ops":["stopJobInstance"]},{"name":"StorageAccount","ops":["azureStorageAccounts"]},{"name":"StorageAccountConnection","ops":["azureStorageAccounts"]},{"name":"Subnet","ops":["azureSubnets"]},{"name":"SubnetConnection","ops":["azureSubnets"]},{"name":"SubnetGroup","ops":["allDbSubnetGroupsByRegionFromAws"]},{"name":"SupportPortalLoginReply","ops":["supportPortalLogin"]},{"name":"SupportPortalLogoutReply","ops":["logoutFromRubrikSupportPortal"]},{"name":"SupportPortalStatusReply","ops":["isLoggedIntoRubrikSupportPortal"]},{"name":"SupportTunnelInfo","ops":["tunnelStatus"]},{"name":"SupportUserAccess","ops":["supportUserAccesses"]},{"name":"SupportUserAccessConnection","ops":["supportUserAccesses"]},{"name":"SupportedAzureAdRegions","ops":["supportedAzureAdRegions"]},{"name":"SyslogExportRuleSummaryListResponse","ops":["syslogExportRules"]},{"name":"TableFilters","ops":["tableFilters"]},{"name":"TakeOnDemandSnapshotReply","ops":["takeOnDemandSnapshot"]},{"name":"TakeOnDemandSnapshotSyncReply","ops":["takeOnDemandSnapshotSync"]},{"name":"Target","ops":["target","targets","createAwsReaderTarget","createAwsTarget","createAzureReaderTarget","createAzureTarget","createGcpReaderTarget","createGcpTarget","createGlacierReaderTarget","createNfsReaderTarget","createNfsTarget","createRcsReaderTarget","createRcsTarget","createRcvLocationsFromTemplate","createS3CompatibleReaderTarget","createS3CompatibleTarget","createTapeReaderTarget","createTapeTarget","updateAwsTarget","updateAzureTarget","updateGcpTarget","updateGlacierTarget","updateNfsTarget","updateRcvTarget","updateS3CompatibleTarget","updateTapeTarget"]},{"name":"TargetConnection","ops":["targets"]},{"name":"TargetMapping","ops":["allTargetMappings","targetMapping","createAutomaticAwsTargetMapping","createAutomaticAzureTargetMapping","createAutomaticRcsTargetMapping","createManualTargetMapping","updateAutomaticAwsTargetMapping","updateAutomaticAzureTargetMapping","updateManualTargetMapping","updateRcsAutomaticTargetMapping"]},{"name":"TaskDetail","ops":["taskDetailConnection"]},{"name":"TaskDetailConnection","ops":["taskDetailConnection"]},{"name":"TaskDetailGroupBy","ops":["taskDetailGroupByConnection"]},{"name":"TaskDetailGroupByConnection","ops":["taskDetailGroupByConnection"]},{"name":"Taskchain","ops":["taskchain"]},{"name":"TerminateArchivalMigrationReply","ops":["terminateArchivalMigration"]},{"name":"TestExistingWebhookReply","ops":["testExistingWebhook"]},{"name":"TestSyslogExportRuleReply","ops":["testSyslogExportRule"]},{"name":"TestWebhookReply","ops":["testWebhook"]},{"name":"ThreatAnalyticsEnablement","ops":["threatAnalyticsEnablement"]},{"name":"ThreatHunt","ops":["threatHuntDetail","threatHunts"]},{"name":"ThreatHuntCloudDirectCluster","ops":["cloudDirectClusterLambdaConfig"]},{"name":"ThreatHuntCloudDirectClusterConnection","ops":["cloudDirectClusterLambdaConfig"]},{"name":"ThreatHuntConnection","ops":["threatHunts"]},{"name":"ThreatHuntDetailsV2","ops":["threatHuntDetailV2"]},{"name":"ThreatHuntMatchedSnapshotsReply","ops":["threatHuntMatchedSnapshots"]},{"name":"ThreatHuntObjectMetricsReply","ops":["threatHuntObjectMetrics"]},{"name":"ThreatHuntResult","ops":["threatHuntResult"]},{"name":"ThreatHuntResultObjectsSummary","ops":["threatHuntSummaryV2"]},{"name":"ThreatHuntResultObjectsSummaryConnection","ops":["threatHuntSummaryV2"]},{"name":"ThreatHuntSummaryReply","ops":["threatHuntSummary"]},{"name":"ThreatHuntingObjectFileMatch","ops":["threatHuntingObjectMatchedFiles"]},{"name":"ThreatHuntingObjectFileMatchConnection","ops":["threatHuntingObjectMatchedFiles"]},{"name":"ThreatMonitoringFileMatchDetailsReply","ops":["threatMonitoringMatchedFileDetails"]},{"name":"ThreatMonitoringFileMatchDetailsV2","ops":["threatMonitoringMatchedFileDetailsV2"]},{"name":"ThreatMonitoringMatchedObject","ops":["threatMonitoringMatchedObjects"]},{"name":"ThreatMonitoringMatchedObjectConnection","ops":["threatMonitoringMatchedObjects"]},{"name":"ThreatMonitoringObjects","ops":["threatMonitoringObjects"]},{"name":"ToggleObjectPauseRes","ops":["bulkObjectPause"]},{"name":"TopRiskPrincipalsReply","ops":["topRiskPrincipals"]},{"name":"TotalSnapshotsForCloudDirectObjectReply","ops":["totalSnapshotsForCloudDirectObject"]},{"name":"TprConfiguration","ops":["tprConfiguration"]},{"name":"TprPolicyDetail","ops":["tprPolicyDetail"]},{"name":"TprPublicConfiguration","ops":["tprPublicConfiguration"]},{"name":"TprRequestDetailReply","ops":["tprRequestDetail"]},{"name":"TprRequestSummary","ops":["tprRequestSummaries"]},{"name":"TprRequestSummaryConnection","ops":["tprRequestSummaries"]},{"name":"TprRoleEligibilityType","ops":["tprRoleEligibility"]},{"name":"TprRulesMap","ops":["tprRulesMap"]},{"name":"TprStatusForNodeRemoval","ops":["tprStatusForNodeRemoval"]},{"name":"TriggerBliMigrationReply","ops":["triggerBliMigration"]},{"name":"TriggerExocomputeHealthCheckReply","ops":["triggerExocomputeHealthCheck"]},{"name":"TriggerRansomwareDetectionReply","ops":["triggerRansomwareDetection"]},{"name":"UnmanagedObjectDetail","ops":["unmanagedObjects"]},{"name":"UnmanagedObjectDetailConnection","ops":["unmanagedObjects"]},{"name":"UnmapAzureCloudAccountExocomputeSubscriptionReply","ops":["unmapAzureCloudAccountExocomputeSubscription"]},{"name":"UnmapCloudAccountExocomputeAccountReply","ops":["unmapCloudAccountExocomputeAccount"]},{"name":"UnregisteredDomainControllerWithDomain","ops":["unifiedUnregisteredDomainControllers"]},{"name":"UnregisteredDomainControllerWithDomainConnection","ops":["unifiedUnregisteredDomainControllers"]},{"name":"UpdateAgentDeploymentSettingInBatchNewReply","ops":["updateAgentDeploymentSettingInBatchNew"]},{"name":"UpdateAgentDeploymentSettingInBatchReply","ops":["updateAgentDeploymentSettingInBatch"]},{"name":"UpdateAutoEnablePolicyClusterConfigReply","ops":["updateAutoEnablePolicyClusterConfig"]},{"name":"UpdateAwsCloudAccountFeatureReply","ops":["updateAwsCloudAccountFeature"]},{"name":"UpdateAwsExocomputeConfigsReply","ops":["updateAwsExocomputeConfigs"]},{"name":"UpdateAzureCloudAccountReply","ops":["updateAzureCloudAccount"]},{"name":"UpdateAzureClusterStorageAccountRedundancyReply","ops":["updateAzureClusterStorageAccountRedundancy"]},{"name":"UpdateBackupThrottleSettingReply","ops":["updateBackupThrottleSetting"]},{"name":"UpdateBadDiskLedStatusReply","ops":["updateBadDiskLedStatus"]},{"name":"UpdateCdmUserReply","ops":["updateCdmUser"]},{"name":"UpdateCertificateHostReply","ops":["updateCertificateHost"]},{"name":"UpdateCloudDirectKerberosCredentialReply","ops":["updateCloudDirectKerberosCredential"]},{"name":"UpdateCloudNativeAwsStorageSettingReply","ops":["updateCloudNativeAwsStorageSetting"]},{"name":"UpdateCloudNativeAzureStorageSettingReply","ops":["updateCloudNativeAzureStorageSetting"]},{"name":"UpdateCloudNativeCustomerSettingsReply","ops":["updateCloudNativeCustomerSettings"]},{"name":"UpdateCloudNativeIndexingStatusReply","ops":["updateCloudNativeIndexingStatus"]},{"name":"UpdateCloudNativeRcvAzureStorageSettingReply","ops":["updateCloudNativeRcvAzureStorageSetting"]},{"name":"UpdateClusterDefaultAddressReply","ops":["updateClusterDefaultAddress"]},{"name":"UpdateClusterPauseStatusReply","ops":["updateClusterPauseStatus"]},{"name":"UpdateClusterSettingsReply","ops":["updateClusterSettings"]},{"name":"UpdateCustomDataTypeReply","ops":["updateCustomDataType"]},{"name":"UpdateCustomerAppPermissionsReply","ops":["updateCustomerAppPermissions"]},{"name":"UpdateDestinationRoleForRcvMigrationReply","ops":["updateDestinationRoleForRcvMigration"]},{"name":"UpdateDistributionListDigestReply","ops":["updateDistributionListDigest"]},{"name":"UpdateDocumentTypeReply","ops":["updateDocumentType"]},{"name":"UpdateEncryptionKeyForRcvMigrationReply","ops":["updateEncryptionKeyForRcvMigration"]},{"name":"UpdateEventDigestReply","ops":["updateEventDigest"]},{"name":"UpdateFailoverClusterAppReply","ops":["updateFailoverClusterApp"]},{"name":"UpdateFailoverClusterReply","ops":["updateFailoverCluster"]},{"name":"UpdateFloatingIpsReply","ops":["updateFloatingIps"]},{"name":"UpdateFusionComputeMountReply","ops":["updateFusionComputeMount"]},{"name":"UpdateFusionComputeVrmReply","ops":["updateFusionComputeVrm"]},{"name":"UpdateGlobalCertificateReply","ops":["updateGlobalCertificate"]},{"name":"UpdateGuestCredentialReply","ops":["updateGuestCredential"]},{"name":"UpdateHealthMonitorPolicyStatusReply","ops":["updateHealthMonitorPolicyStatus"]},{"name":"UpdateHypervVirtualMachineReply","ops":["updateHypervVirtualMachine"]},{"name":"UpdateHypervVirtualMachineSnapshotMountReply","ops":["updateHypervVirtualMachineSnapshotMount"]},{"name":"UpdateInsightStateReply","ops":["updateInsightState"]},{"name":"UpdateLockoutConfigReply","ops":["updateLockoutConfig"]},{"name":"UpdateManagedIdentitiesReply","ops":["updateManagedIdentities"]},{"name":"UpdateManagedVolumeReply","ops":["updateManagedVolume"]},{"name":"UpdateMssqlDefaultPropertiesReply","ops":["mssqlDefaultProperties","updateMssqlDefaultProperties"]},{"name":"UpdateMssqlLogShippingConfigurationReply","ops":["updateMssqlLogShippingConfiguration"]},{"name":"UpdateNasSystemReply","ops":["updateNasSystem"]},{"name":"UpdateNetworkThrottleReply","ops":["updateNetworkThrottle"]},{"name":"UpdateNutanixClusterReply","ops":["updateNutanixCluster"]},{"name":"UpdateNutanixPrismCentralReply","ops":["updateNutanixPrismCentral"]},{"name":"UpdateO365AppAuthStatusReply","ops":["updateO365AppAuthStatus"]},{"name":"UpdateO365OrgCustomNameReply","ops":["updateO365OrgCustomName"]},{"name":"UpdateOrgReply","ops":["updateOrg"]},{"name":"UpdatePredefinedDataTypeReply","ops":["updatePredefinedDataType"]},{"name":"UpdateProxmoxEnvironmentReply","ops":["updateProxmoxEnvironment"]},{"name":"UpdateProxyConfigReply","ops":["updateProxyConfig"]},{"name":"UpdatePureStorageProtectionGroupQuiesceTargetsReply","ops":["updatePureStorageProtectionGroupQuiesceTargets"]},{"name":"UpdatePureStorageProtectionGroupReply","ops":["updatePureStorageProtectionGroup"]},{"name":"UpdatePureStorageProtectionGroupVolumeExclusionsReply","ops":["updatePureStorageProtectionGroupVolumeExclusions"]},{"name":"UpdateRcvPrivateEndpointReply","ops":["updateRcvPrivateEndpoint"]},{"name":"UpdateRecoveryPlanV2Reply","ops":["updateRecoveryPlanV2"]},{"name":"UpdateScheduledReportReply","ops":["updateScheduledReport"]},{"name":"UpdateServiceAccountReply","ops":["updateServiceAccount"]},{"name":"UpdateSlasForMigrationToRcvTargetReply","ops":["updateSlasForMigrationToRcvTarget"]},{"name":"UpdateSmbDomainReply","ops":["updateSmbDomain"]},{"name":"UpdateSnmpConfigReply","ops":["updateSnmpConfig"]},{"name":"UpdateStorageArrayV1Reply","ops":["updateStorageArrayV1"]},{"name":"UpdateStorageArraysReply","ops":["updateStorageArrays"]},{"name":"UpdateSyslogExportRuleReply","ops":["updateSyslogExportRule"]},{"name":"UpdateTunnelStatusReply","ops":["updateTunnelStatus"]},{"name":"UpdateVcenterReply","ops":["updateVcenter"]},{"name":"UpdateVcenterV2Reply","ops":["updateVcenterV2"]},{"name":"UpdateVolumeGroupReply","ops":["updateVolumeGroup"]},{"name":"UpdateVsphereAdvancedTagReply","ops":["updateVsphereAdvancedTag"]},{"name":"UpdateWebhookReply","ops":["updateWebhook"]},{"name":"UpdateWebhookStatusReply","ops":["updateWebhookStatus"]},{"name":"UpdateWebhookV2Reply","ops":["updateWebhookV2"]},{"name":"UpgradeAzureCloudAccountPermissionsWithoutOauthReply","ops":["upgradeAzureCloudAccountPermissionsWithoutOauth"]},{"name":"UpgradeAzureCloudAccountReply","ops":["upgradeAzureCloudAccount"]},{"name":"UpgradeAzureDevOpsCloudAccountReply","ops":["upgradeAzureDevOpsCloudAccount"]},{"name":"UpgradeGcpCloudAccountPermissionsWithoutOauthReply","ops":["upgradeGcpCloudAccountPermissionsWithoutOauth"]},{"name":"UpgradeJobReplyWithUuid","ops":["scheduleUpgradeBatchJob","startUpgradeBatchJob"]},{"name":"UpgradePathEligibilityReply","ops":["upgradePathEligibility"]},{"name":"UpgradeSlasReply","ops":["upgradeSlas"]},{"name":"UpgradeStatusReply","ops":["upgradeStatus"]},{"name":"UploadSnapshotOnDemandReply","ops":["uploadSnapshotOnDemand"]},{"name":"User","ops":["allAccountOwners","allUsersOnAccount","allUsersOnAccountConnection","currentUser","usersInCurrentAndDescendantOrganization"]},{"name":"UserAccessMetrics","ops":["userAccessMetrics"]},{"name":"UserActivityResult","ops":["allFileActivities"]},{"name":"UserActivityResultConnection","ops":["allFileActivities"]},{"name":"UserAlreadyExistsReply","ops":["userAlreadyExists"]},{"name":"UserAudit","ops":["userAuditConnection"]},{"name":"UserAuditConnection","ops":["userAuditConnection"]},{"name":"UserConnection","ops":["allUsersOnAccountConnection","usersInCurrentAndDescendantOrganization"]},{"name":"UserDownload","ops":["getUserDownloads"]},{"name":"UserDownloadUrl","ops":["getDownloadUrl"]},{"name":"UserLoginContext","ops":["currentUserLoginContext"]},{"name":"UserNotifications","ops":["userNotifications"]},{"name":"UserSettings","ops":["userSettings"]},{"name":"V1BulkUpdateExchangeDagResponse","ops":["bulkUpdateExchangeDag"]},{"name":"V1MssqlGetRestoreFilesV1Response","ops":["allMssqlDatabaseRestoreFiles"]},{"name":"ValidReplicationSource","ops":["allValidReplicationSources"]},{"name":"ValidReplicationSourceConnection","ops":["allValidReplicationSources"]},{"name":"ValidReplicationTarget","ops":["allValidReplicationTargets"]},{"name":"ValidReplicationTargetConnection","ops":["allValidReplicationTargets"]},{"name":"ValidateAdForestTransition","ops":["validateAdForestTransition"]},{"name":"ValidateAndCreateAwsCloudAccountReply","ops":["validateAndCreateAwsCloudAccount"]},{"name":"ValidateAndInitiateAwsOutpostAccountReply","ops":["validateAndInitiateAwsOutpostAccount"]},{"name":"ValidateAndSaveCustomerKmsInfoReply","ops":["validateAndSaveCustomerKmsInfo"]},{"name":"ValidateAwsNativeDynamoDbTableNameForRecoveryReply","ops":["validateAwsNativeDynamoDbTableNameForRecovery"]},{"name":"ValidateAwsNativeRdsClusterNameForExportReply","ops":["validateAwsNativeRdsClusterNameForExport"]},{"name":"ValidateAwsNativeRdsInstanceNameForExportReply","ops":["validateAwsNativeRdsInstanceNameForExport"]},{"name":"ValidateAzureNativeSqlDatabaseDbNameForExportReply","ops":["validateAzureNativeSqlDatabaseDbNameForExport"]},{"name":"ValidateAzureNativeSqlManagedInstanceDbNameForExportReply","ops":["validateAzureNativeSqlManagedInstanceDbNameForExport"]},{"name":"ValidateAzureSubnetsForCloudAccountExocomputeReply","ops":["validateAzureCloudAccountExocomputeConfigurations"]},{"name":"ValidateBulkThreatHuntResponse","ops":["validateBulkThreatHunt"]},{"name":"ValidateCloudNativeFileRecoveryFeasibilityReply","ops":["isCloudNativeFileRecoveryFeasible"]},{"name":"ValidateEntryReply","ops":["validateIocEntry"]},{"name":"ValidateOracleAcoFileReply","ops":["validateOracleAcoFile"]},{"name":"ValidateOrgNameReply","ops":["validateOrgName"]},{"name":"ValidateOutpostAccountNetworkReply","ops":["validateOutpostAccountNetwork"]},{"name":"ValidateRdsExportExocomputePortReply","ops":["validateRdsExportExocomputePort"]},{"name":"ValidateRoleNameReply","ops":["validateRoleName"]},{"name":"ValidateScriptOutputForManualPermissionValidationReply","ops":["validateScriptOutputForManualPermissionValidation"]},{"name":"ValidationRecoveryReply","ops":["cloudClusterRecoveryValidation"]},{"name":"ValidationReply","ops":["validateCreateAwsClusterInput","validateCreateAzureClusterInput"]},{"name":"VappInstantRecoveryOptions","ops":["vappSnapshotInstantRecoveryOptions"]},{"name":"VappTemplateExportOptionsUnion","ops":["vappTemplateSnapshotExportOptions"]},{"name":"Vcd","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","vcdTopLevelDescendants"]},{"name":"VcdOrg","ops":["vcdOrgs","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","vcdTopLevelDescendants"]},{"name":"VcdOrgConnection","ops":["vcdOrgs"]},{"name":"VcdOrgVdc","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","vcdTopLevelDescendants"]},{"name":"VcdTopLevelDescendantType","ops":["vcdTopLevelDescendants"]},{"name":"VcdTopLevelDescendantTypeConnection","ops":["vcdTopLevelDescendants"]},{"name":"VcdVapp","ops":["vcdVapps","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","hierarchySnappables","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","vcdTopLevelDescendants"]},{"name":"VcdVappConnection","ops":["vcdVapps"]},{"name":"VcdVimServer","ops":["globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","vcdTopLevelDescendants"]},{"name":"VcenterAdvancedTagPreviewReply","ops":["vCenterAdvancedTagPreview"]},{"name":"VcenterHotAddProxyVmInfo","ops":["allVcenterHotAddProxyVms"]},{"name":"VcenterPreAddInfo","ops":["vCenterPreAddInfo"]},{"name":"VerifySlaWithReplicationToClusterResponse","ops":["verifySlaWithReplicationToCluster"]},{"name":"VerifyTotpReply","ops":["verifyTotp"]},{"name":"VersionedFile","ops":["searchSnappableVersionedFiles"]},{"name":"VersionedFileConnection","ops":["searchSnappableVersionedFiles"]},{"name":"ViolationHistoryEntry","ops":["policyViolationHistoryEntries"]},{"name":"ViolationsCategorySummary","ops":["violationsCategorySummary"]},{"name":"ViolationsEnvironmentSummaries","ops":["violationsEnvironmentSummary"]},{"name":"VirtualMachineFilesReply","ops":["allVirtualMachineFiles"]},{"name":"VlanConfigListResponse","ops":["clusterVlans"]},{"name":"VmRecoveryJobInfo","ops":["allVmRecoveryJobsInfo"]},{"name":"VmwareCdpStateInfo","ops":["allVmwareCdpStateInfos"]},{"name":"VmwareHostDetail","ops":["vSphereHostDetails"]},{"name":"VmwareRecoverableRangeListResponse","ops":["vmwareMissedRecoverableRanges","vmwareRecoverableRanges"]},{"name":"Vnet","ops":["azureVNets"]},{"name":"VnetConnection","ops":["azureVNets"]},{"name":"VolumeGroupLiveMount","ops":["volumeGroupMounts"]},{"name":"VolumeGroupLiveMountConnection","ops":["volumeGroupMounts"]},{"name":"VsphereAsyncRequestStatus","ops":["vsphereVmRecoverFiles"]},{"name":"VsphereComputeCluster","ops":["vSphereComputeCluster","vSphereComputeClusters","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"VsphereComputeClusterConnection","ops":["vSphereComputeClusters"]},{"name":"VsphereDatacenter","ops":["vSphereDatacenter","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"VsphereDatastore","ops":["vSphereDatastore","vSphereDatastoreConnection","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"VsphereDatastoreCluster","ops":["vSphereDatastoreCluster","vSphereDatastoreClusters","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"VsphereDatastoreClusterConnection","ops":["vSphereDatastoreClusters"]},{"name":"VsphereDatastoreConnection","ops":["vSphereDatastoreConnection"]},{"name":"VsphereFolder","ops":["vSphereFolder","vSphereFolders","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"VsphereFolderConnection","ops":["vSphereFolders"]},{"name":"VsphereHost","ops":["vSphereHost","vSphereHostConnection","vSphereHostsByFids","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"VsphereHostConnection","ops":["vSphereHostConnection"]},{"name":"VsphereLiveMount","ops":["vSphereLiveMounts"]},{"name":"VsphereLiveMountConnection","ops":["vSphereLiveMounts"]},{"name":"VsphereMount","ops":["vSphereMount","vSphereMountConnection"]},{"name":"VsphereMountConnection","ops":["vSphereMountConnection"]},{"name":"VsphereNetwork","ops":["vSphereNetwork","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"VsphereProxyVmInfo","ops":["vCenterHotAddProxyVmsV2"]},{"name":"VsphereProxyVmInfoConnection","ops":["vCenterHotAddProxyVmsV2"]},{"name":"VsphereResourcePool","ops":["vSphereResourcePool","vSphereResourcePoolWithProvisionOnInfrastructure","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"VsphereTag","ops":["vSphereTag","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"VsphereTagCategory","ops":["vSphereTagCategory","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"VsphereVcenter","ops":["vSphereVCenter","vSphereVCenterConnection","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects"]},{"name":"VsphereVcenterConnection","ops":["vSphereVCenterConnection"]},{"name":"VsphereVm","ops":["allVsphereVmsByFids","vSphereVmNew","vSphereVmNewConnection","vSphereVmWithProvisionOnInfrastructure","vcdVappVms","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","vcdTopLevelDescendants"]},{"name":"VsphereVmConnection","ops":["allVsphereVmsByFids","vSphereVmNewConnection","vcdVappVms"]},{"name":"VsphereVmPowerOnOffLiveMountReply","ops":["vsphereVmPowerOnOffLiveMount"]},{"name":"VsphereVmRecoveryRangeStatusResp","ops":["vsphereVmRecoveryRangeStatuses"]},{"name":"Webhook","ops":["allWebhooks"]},{"name":"WebhookConnection","ops":["allWebhooks"]},{"name":"WebhookMessageTemplate","ops":["allWebhookMessageTemplates","webhookMessageTemplateById"]},{"name":"WebhookV2","ops":["allWebhooksV2","webhookById"]},{"name":"WindowsCluster","ops":["windowsCluster","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","mssqlTopLevelDescendants"]},{"name":"WindowsFileset","ops":["windowsFileset","fusionComputeClustersAndHosts","fusionComputeRecoverableClustersAndHosts","nasTopLevelDescendants","nutanixTopLevelDescendants","vSphereRootRecoveryHierarchy","vSphereTopLevelDescendantsConnection","vSphereTopLevelRecoveryTargets","cdmHierarchySnappableNew","cdmHierarchySnappablesNew","globalSearchResults","hierarchyObject","hierarchyObjectRecoveryTarget","hierarchyObjects","slaConflictObjects","hierarchySnappables","failoverClusterTopLevelDescendants"]},{"name":"WindowsRbsBulkInstallReply","ops":["windowsRbsBulkInstall"]},{"name":"WorkloadAnomaly","ops":["workloadAnomalies"]},{"name":"WorkloadAnomalyConnection","ops":["workloadAnomalies"]},{"name":"WorkloadResourceSpec","ops":["allResourceSpecs","allWorkloadResourceSpecs"]},{"name":"ZrsAvailabilityReply","ops":["isZrsAvailableForLocation"]},{"name":"pendingAction","ops":["allPendingActions","pendingAction"]}],"corpus":[["access","group","group","id","uniqu","identifi","of","the","group.","group","name","display","name","of","the","group."],["access","group","connect","count","total","number","of","accessgroup","object","match","the","request"],["access","user","activ","delta","activ","count","delta","compar","to","the","previous","equival","email","email","address","of","the","user,","if","known.","last","access","time","last","access","time","in","millisecond","sinc","the","unix","num","activ","total","number","of","activ","record","for","this","user","subject","name","display-friend","subject","name","(for","example,","\"domain\\\\\\\\user\").","user","sid","stabl","identifi","of","the","user","(window","sid","or","usernam","display","name","of","the","user."],["access","user","connect","count","total","number","of","accessus","object","match","the","request"],["account","product","account","account","name","for","the","given","product.","expir","date","date","when","product","expires.","name","name","of","the","product","-","gps,","sonar,","etc.","state","state","of","the","product","-","acive,","disabled,","etc.","type","the","type","of","product","-","revenue,","trial,","poc."],["account","set","is","email","notif","enabl","specifi","whether","email","notif","are","enabled.","is","eula","accept","specifi","whether","the","eula","has","been","accepted."],["acknowledg","cluster","notif","repli","success","indic","whether","the","acknowledg","was","successful."],["activ","data","categori","repli","is","success","specifi","whether","the","request","complet","successfully."],["activ","data","type","repli","is","success","specifi","whether","the","request","complet","successfully."],["activ","document","attribut","repli","is","success","specifi","whether","the","request","complet","successfully."],["activ","directori","domain","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","the","rubrik","cdm","cluster.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","domain","name","name","of","the","activ","directori","domain.","domain","sid","id","of","the","activ","directori","domain.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","archiv","specifi","whether","the","domain","is","archived.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","regist","domain","control","count","number","of","domain","control","that","are","add","to","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","smb","domain","smb","domain.","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","unregist","domain","control","list","of","auto-discov","domain","control","that","are","not"],["activ","directori","domain","connect","count","total","number","of","activedirectorydomain","object","match","the","request"],["activ","directori","domain","control","activ","directori","domain","activ","directori","domain","to","which","this","domain","control","ad","servic","status","servic","status","of","the","activ","directory.","agent","uuid","uuid","of","the","agent.","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","the","rubrik","cdm","cluster.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","uuid.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","dc","locat","physic","locat","of","the","domain","controller.","domain","control","guid","guid","of","the","domain","controller.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","fsmo","role","differ","master","role","play","by","the","domain","controller.","host","host","inform","of","this","activ","directori","domain","controller.","hostnam","name","of","the","host.","hyperv","virtual","machin","hyper-v","virtual","machin","associ","with","the","domain","controller.","agent","status","all","org","all","tag","author","oper","cdm","id","cdm","link","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","hyperv","vm","mount","count","virtual","machin","id","is","relic","is","replica","latest","user","note","logic","path","miss","snapshot","connect","miss","snapshot","group","by","connect","name","newest","archiv","snapshot","newest","index","snapshot","newest","replic","snapshot","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","os","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","protect","date","replic","object","count","replic","object","report","workload","secur","metadata","sla","assign","sla","paus","status","snapshot","connect","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","summari","id","id","of","the","hierarchi","object.","is","global","catalog","indic","whether","the","domain","control","is","a","global","is","read","onli","indic","whether","the","domain","control","is","read","only.","is","relic","specifi","whether","the","domain","control","is","a","relic.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","mac","address","deprecated.","use","mac","address","field","instead.","mac","address","list","of","mac","address","of","the","domain","controller.","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","clean","snapshot","the","most","recent","snapshot","that","is","not","corrupted.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","rbs","status","rbs","status.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","includ","statist","for","the","protect","objects,","for","example,","secur","metadata","secur","postur","metadata.","server","role","mention","if","servic","like","dns","or","dhcp","are","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","vsphere","virtual","machin","vmware","virtual","machin","associ","with","the","domain","controller.","agent","status","all","org","all","tag","array","integr","enabl","author","oper","blueprint","id","blueprint","name","cdm","id","cdm","link","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","duplic","vms","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","guest","credenti","author","status","guest","credenti","id","guest","os","name","guest","os","type","id","is","activ","is","array","integr","possibl","is","blueprint","child","is","relic","is","replica","latest","user","note","link","activ","vm","virtual","machin","logic","path","miss","snapshot","connect","miss","snapshot","group","by","connect","name","newest","archiv","snapshot","newest","index","snapshot","newest","replic","snapshot","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","parent","resourc","pool","id","parent","workload","id","opt","parent","workload","type","opt","pend","object","delet","status","pend","sla","physic","path","post","backup","script","post","snap","script","power","status","pre","backup","script","primari","cluster","locat","protect","date","replic","object","count","replic","object","report","workload","resourc","spec","secur","metadata","sla","assign","sla","paus","status","snapshot","connect","snapshot","consist","mandat","snapshot","consist","sourc","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","summari","templat","type","v","sphere","live","mount","v","sphere","mount","vmware","tool","instal","vsphere","tag","path","vsphere","virtual","disk"],["activ","directori","domain","control","connect","count","total","number","of","activedirectorydomaincontrol","object","match","the","request"],["activ","directori","snappabl","search","respons","dnt","required.","support","in","v9.1+","the","distinguish","name","tag","name","required.","support","in","v9.1+","display","name","of","the","object","type","version","required.","support","in","v9.1+","result","version","of","the"],["activ","directori","snappabl","search","respons","connect","count","total","number","of","activedirectorysnappablesearchrespons","object","match","the","request"],["activ","entri","action","type","the","action","type","of","the","activity.","activ","provid","the","provid","of","the","activity.","activ","type","the","type","of","activity.","actor","entiti","the","entiti","that","perform","the","action","(e.g.,","the","actor","ip","address","the","ip","address","of","the","actor","who","initi","actor","state","the","identif","state","of","the","actor.","addit","target","entiti","addit","entiti","involv","in","the","activity.","for","example,","categori","the","categori","of","the","activity.","chang","detail","the","detail","of","the","change.","present","onli","for","id","the","uniqu","identifi","for","the","activity.","nativ","correl","id","the","nativ","correl","id","from","the","event","provid","oper","the","oper","performed.","primari","target","entiti","the","entiti","direct","affect","by","the","activity.","for","remedi","status","the","remedi","status","for","this","activity,","order","by","remedi","type","the","remedi","type","that","are","avail","for","this","sourc","id","the","sourc","(domain/tenant)","of","this","activity.","sourc","metadata","the","metadata","of","the","source.","status","the","result","of","the","action.","target","entiti","the","entiti","on","which","the","activ","was","performed.","time","the","time","the","activ","occurred.","titl","a","human-read","titl","describ","the","activity.","for","example,"],["activ","entri","connect","count","total","number","of","activityentri","object","match","the","request"],["activ","seri","activ","connect","the","list","of","activities.","activ","info","activ","seri","cluster","id","error","info","id","messag","object","id","object","type","progress","sever","status","time","type","activ","seri","id","the","id","of","the","activ","series.","attempt","number","the","attempt","number","of","the","relat","job.","caus","error","code","the","error","code","for","the","caus","of","the","caus","error","messag","the","caus","of","the","activ","seri","failure.","caus","error","reason","the","reason","for","the","activ","seri","failure.","caus","error","remedi","the","remedi","for","the","caus","of","the","activ","cluster","inform","about","the","cluster","that","the","activ","seri","cluster","name","the","name","of","the","cluster","which","the","activ","cluster","uuid","the","uuid","of","the","cluster","which","the","activ","data","transfer","the","data","transfer","associ","with","this","event,","in","effect","throughput","the","effect","throughput","associ","with","this","event,","in","failur","reason","the","reason","the","activ","seri","failed.","fid","the","forev","id","of","the","object","associ","with","id","the","id","of","the","activ","series.","is","cancel","whether","the","activ","seri","can","be","cancel","or","is","on","demand","specifi","whether","the","activ","seri","is","trigger","on","is","polari","event","seri","whether","the","event","seri","is","nativ","to","rsc","is","transact","log","event","seri","specifi","whether","the","event","seri","is","a","transact","last","activ","messag","the","final","event","messag","in","the","event","series.","last","activ","status","the","status","of","the","most","recent","activ","in","last","activ","type","the","type","of","the","most","recent","activ","in","last","event","add","at","the","time","at","which","the","most","recent","activ","last","updat","the","most","recent","time","that","the","activ","seri","last","verifi","at","the","most","recent","time","that","the","activ","seri","locat","the","locat","of","this","activ","series.","logic","size","logic","size","(if","applicable),","in","bytes.","object","id","the","id","of","the","object","associ","with","the","object","name","the","name","of","the","object","associ","with","the","object","type","the","type","of","the","object","associ","with","the","org","id","organiz","organiz","the","organiz","id","of","this","event","series.","org","name","organiz","organiz","the","organiz","name","of","this","event","series.","organiz","the","organiz","associ","with","this","event","series.","progress","the","total","progress","of","the","event","series.","sever","the","sever","of","the","most","recent","activ","in","sla","domain","name","the","name","of","the","sla","domain","associ","with","start","time","the","time","that","the","activ","seri","started.","url","metadata","a","json","string","with","variabl","url","parameters.","usernam","the","user","who","trigger","the","relat","job."],["activ","seri","connect","count","total","number","of","activityseri","object","match","the","request"],["activ","timelin","result","activ","result","aggreg","activ","count","across","all","file","for","this","day","day","the","activ","occur","on,","format","as","yyyy-mm-dd.","top","file","top","file","access","on","this","day."],["activ","timelin","result","connect","count","total","number","of","activitytimelineresult","object","match","the","request"],["ad","group","display","name","display","name","of","the","ad","group.","id","microsoft","generat","id","of","the","ad","group."],["ad","volum","export","cluster","rubrik","cluster","of","the","volum","export.","domain","control","id","uuid","of","the","correspond","domain","controller.","domain","control","name","name","of","the","correspond","domain","controller.","float","ip","float","ip","address","of","the","volum","export.","id","fid","of","the","volum","export.","internal","timestamp","last","updat","time","of","the","export.","is","activ","specifi","whether","the","export","is","activ","or","not.","is","user","visibl","determin","if","the","export","creat","is","visibl","to","mount","dir","mount","directori","for","the","volum","export.","mount","node","ip","mount","node","ip","address","of","the","volum","export.","node","cdm","node","specif","for","the","volum","export.","smb","valid","ip","the","whitelist","ip","address","that","can","access","activ","sourc","snapshot","sourc","snapshot","of","the","volum","export."],["ad","volum","export","connect","count","total","number","of","advolumeexport","object","match","the","request"],["add","and","join","smb","domain","repli","output","support","in","v5.0+"],["add","aw","authent","server","base","cloud","account","repli","aw","account","account","detail","for","the","new","cloud","account.","messag","success","respons","messag","or","error","message."],["add","aw","iam","user","base","cloud","account","repli","aw","account","account","detail","for","the","new","cloud","account."],["add","azur","cloud","account","exocomput","configur","repli","config","configur","detail","of","the","exocomput","for","the","azur"],["add","azur","cloud","account","repli","entra","id","group","status","status","of","the","entra","id","group","for","the","status","status","of","the","oper","to","add","azur","cloud","taskchain","uuid","uuid","of","the","taskchain","for","the","manag","group","tenant","id","tenant","id","for","the","add","subscriptions."],["add","azur","cloud","account","without","oauth","repli","status","status","of","the","oper","to","add","azur","cloud","tenant","id","tenant","id","for","the","add","subscriptions."],["add","cloud","direct","kerbero","credenti","repli","credenti","id","id","of","the","creat","kerbero","credential."],["add","cloud","direct","share","to","system","repli","share","add","number","of","share","that","were","added.","success","whether","the","oper","was","successful."],["add","cloud","direct","system","repli","job","id","job","id","of","the","import","request."],["add","cloud","nativ","sql","server","backup","credenti","repli","fail","object","id","object","id","for","which","add","credenti","failed.","success","object","id","object","id","for","which","add","credenti","succeeded."],["add","cluster","certif","repli","cert","id","required.","support","in","v5.1+","id","of","the","certificate.","descript","support","in","v5.1+","user-friend","descript","for","the","certificate.","expir","support","in","v5.1+","the","expir","date","for","the","has","key","required.","support","in","v5.1+","v5.1-v6.0:","a","boolean","valu","is","internal","support","in","v9.4+","a","boolean","valu","that","indic","is","trust","support","in","v7.0+","a","boolean","valu","that","specifi","key","strength","support","in","v9.5+","the","strength/siz","of","the","key","key","type","support","in","v9.5+","the","type","of","key","use","name","required.","support","in","v5.1+","display","name","for","the","pem","file","required.","support","in","v5.1+","the","certificates,","in","pem","use","by","required.","support","in","v5.1+","a","list","of","compon"],["add","cluster","node","repli","job","id","add","node","job","id.","status","add","node","job","status."],["add","cluster","rout","repli","output"],["add","configur","group","to","hierarchi","repli","group","id","the","id","of","the","creat","group."],["add","cross","account","servic","consum","repli","servic","provid","sa","servic","account","detail","of","the","servic","provider."],["add","custom","intel","feed","repli","provid","id","provid","id."],["add","db","2","instanc","repli","async","request","status","required.","support","in","v7.0+","status","of","the","refresh","id","required.","support","in","v7.0+","id","of","the","new"],["add","gcp","cloud","account","manual","auth","project","repli","cloud","account","id","cloud","account","id","of","the","add","project."],["add","global","certif","repli","certif","the","certif","that","was","imported.","cluster","error","the","error","from","upload","the","certif","to","the"],["add","ident","provid","repli","id","uniqu","identifi","of","the","ident","provider."],["add","manag","volum","repli","async","request","status","required.","support","in","v7.0+","status","of","the","asynchron","manag","volum","summari","required.","support","in","v7.0+","summari","inform","of","the"],["add","mongo","sourc","repli","async","request","status","required.","support","in","v8.1+","v8.1-v9.2:","status","of","the","id","required.","support","in","v8.1+","id","of","the","new"],["add","mysqldb","instanc","respons","async","request","status","required.","support","in","v9.3+","status","of","the","asynchron","id","required.","support","in","v9.3+","id","of","the","new"],["add","365","org","respons","organiz","organiz","org","id","organiz","organiz","refresh","org","taskchain","id","organiz","organiz"],["add","op","manag","mongo","sourc","respons","async","request","status","required.","support","in","v9.2+","v9.2:","status","of","the","id","required.","support","in","v9.2+","id","of","the","new"],["add","postgr","sql","db","cluster","repli","async","request","status","required.","support","in","v9.2+","status","of","the","asynchron","id","required.","support","in","v9.2+","id","of","the","new"],["add","sap","hana","system","repli","async","request","status","required.","support","in","v5.3+","status","of","the","job","id","required.","support","in","v5.3+","the","id","of","the"],["add","storag","array","repli","respons","add","storag","array","responses."],["add","syslog","export","rule","repli","output"],["add","vm","app","consist","spec","repli","virtual","machin","fail","snappabl","id","id","of","virtual","machin","for","which","addit","of","success","snappabl","id","id","of","virtual","machin","for","which","addit","of"],["agent","deploy","set","guest","credenti","id","support","in","v8.1,","v9.1+","v8.1:","id","of","the","is","automat","required.","support","in","v5.0+","determin","whether","the","rubrik"],["agent","deploy","set","info","agent","deploy","set","rubrik","backup","servic","deploy","settings.","cluster","detail","of","a","cluster."],["all","enabl","featur","for","account","repli","featur","list","of","enabl","features."],["all","rcv","account","entitl","entitl","rubrik","cloud","vault","(rcv)","entitl","with","their","respect","rcv","entitl","group","entitl","group","for","capac","consolidation.","onli","popul","when"],["all","storag","array","repli","cluster","storag","array","list","of","storag","array","in","rubrik","clusters."],["all","workload","recoveri","info","repli","workload","list","of","workload","recoveri","information."],["ami","type","for","aw","nativ","archiv","snapshot","export","repli","ami","id","if","amityp","is","pre-existing,","this","field","will","contain","ami","type","type","of","the","ami","to","be","use","for","aw","account","rubrik","id","rubrik","id","of","the","aw","account","which","contain","region","nativ","id","region","where","the","pre-exist","ami","exists."],["analyz","365","mvb","repli","taskchain","id","id","of","the","taskchain","creat","for","the","job."],["analyz","column","column","datatyp","result","data","type","result","for","columns.","column","name","name","of","the","column","that","is","detected.","column","result","nest","column","results.","column","type","type","of","column."],["analyz","column","connect","count","total","number","of","analyzedcolumn","object","match","the","request"],["analyz","analyz","risk","instanc","repres","the","latest","analyz","risk.","analyz","type","repres","the","analyz","type.","dictionari","repres","the","dictionary.","dictionari","csv","repres","the","dictionari","csv.","exclud","field","name","pattern","regex","pattern","to","exclud","field","by","name.","exclud","path","pattern","regex","pattern","to","exclud","file","by","path.","exclud","valu","regex","a","match","valu","is","exclud","when","it","match","id","repres","the","analyz","id.","is","inact","repres","whether","the","analyz","is","inact","or","not.","key","regex","regex","to","filter","field","that","need","to","be","name","repres","the","analyz","name.","proxim","distanc","maximum","charact","distanc","for","proxim","keyword","matching.","proxim","keyword","regex","regex","pattern","for","proxim","keyword","use","to","filter","regex","repres","the","regex.","risk","repres","risk","associ","with","the","given","analyzer.","rule","type","repres","the","type","of","data","you","need","to","structur","dictionari","pars","list","of","keyword","from","structureddictionarycsv.","structur","dictionari","csv","dictionari","to","analyz","for","the","structur","data.","structur","key","dictionari","pars","list","of","keyword","from","structuredkeydictionarycsv.","structur","key","dictionari","csv","a","dictionari","to","filter","field","that","need","to","structur","valu","regex","regex","to","analyz","the","structur","data.","tag","id","repres","the","tag","id","for","the","given","analyzer."],["analyz","access","usag","analyz","analyz","details.","count","sum","of","top","file","may","not","be","equal","count","delta","chang","in","the","count","relat","to","the","previous","top","file","top","file","contribut","to","this","analyz","access","usage."],["analyz","access","usag","connect","count","total","number","of","analyzeraccessusag","object","match","the","request"],["analyz","connect","count","total","number","of","analyz","object","match","the","request"],["analyz","group","analyz","list","of","analyz","in","the","group.","document","type","id","list","of","document","type","id","associ","with","this","group","type","analyz","group","type.","id","analyz","group","id","for","custom","groups.","name","analyz","group","name","for","custom","groups."],["analyz","group","connect","count","total","number","of","analyzergroup","object","match","the","request"],["analyz","usag","analyz","analyz","whose","polici","usag","are","describ","by","this","data","type","hit","total","sensit","hit","in","this","data","type.","data","type","sourc","repres","the","sourc","of","data","type","i.e","predefin","polici","polici","that","refer","this","analyzer."],["analyz","usag","connect","count","total","number","of","analyzerusag","object","match","the","request"],["anomali","result","anomali","probabl","the","probabl","of","the","snapshot","be","anomalous.","byte","creat","count","total","new","byte","created.","byte","delet","count","total","byte","deleted.","byte","modifi","count","total","byte","modified.","byte","net","chang","count","net","chang","in","the","number","of","bytes.","for","cluster","the","rubrik","cluster","of","the","object.","detect","time","time","when","the","anomali","was","detected.","file","creat","count","count","of","new","file","created.","file","delet","count","count","of","file","deleted.","file","modifi","count","count","of","file","modified.","id","the","databas","id","of","the","anomali","result.","is","anomali","indic","whether","the","snapshot","is","anomalous.","is","encrypt","specifi","whether","the","snapshot","is","encrypted.","locat","the","locat","of","the","object.","manag","id","internal","manag","id","of","the","object.","object","type","the","type","of","the","object.","previous","snapshot","date","the","date","of","the","previous","snapshot.","previous","snapshot","id","the","id","of","the","previous","snapshot.","ransomwar","result","the","ransomwar","analysi","result,","includ","encryption.","resourc","delet","at","the","timestamp","when","the","resourc","was","deleted.","popul","sever","sever","of","the","anomaly.","snapshot","the","analyz","snapshot.","snapshot","date","the","date","of","the","snapshot.","snapshot","fid","the","internal","fid","of","the","snapshot.","snapshot","id","the","internal","id","of","the","snapshot.","suspici","file","count","total","number","of","suspici","files.","workload","fid","the","internal","fid","of","the","object.","workload","id","the","internal","id","of","the","object.","workload","name","the","name","of","the","object."],["anomali","result","connect","aggreg","aggreg","anomali","results.","count","total","number","of","anomalyresult","object","match","the","request"],["anomali","result","group","data","anomali","result","group","data","provid","further","group","for","the","data.","anomali","result","pagin","anomali","result","data.","anomali","probabl","byte","creat","count","byte","delet","count","byte","modifi","count","byte","net","chang","count","cluster","detect","time","file","creat","count","file","delet","count","file","modifi","count","id","is","anomali","is","encrypt","locat","manag","id","object","type","previous","snapshot","date","previous","snapshot","id","ransomwar","result","resourc","delet","at","sever","snapshot","snapshot","date","snapshot","fid","snapshot","id","suspici","file","count","workload","fid","workload","id","workload","name","group","by","info","group","by","information."],["anomali","result","group","data","connect","count","total","number","of","anomalyresultgroupeddata","object","match","the","request"],["app","access","graph","count","aggreg","app","access","count","for","the","principal.","user","app","access","data","under","graph","data","for","the","princip","app","access"],["app","access","impact","chang","path","the","access","path","that","was","add","or","remov","impact","impact","entri","group","by","impact","type.","princip","id","id","of","the","user","whose","access","was","affected.","princip","name","display","name","of","the","user."],["app","access","princip","app","count","number","of","app","access","via","this","principal.","applic","logo","id","uniqu","identifi","for","map","the","applic","to","it","id","id","of","the","principal.","idp","type","ident","provid","type","for","this","princip","(e.g.,","entra_id,","logo","id","logo","enum","for","the","application.","unspecifi","mean","no","member","count","number","of","user","in","the","group.","name","display","name","of","the","principal.","nativ","type","nativ","type","of","the","princip","(e.g.,","entra_id_group,","entra_id_service_principal).","princip","type","type","of","the","princip","(e.g.,","user,","group,","service_principal)."],["app","access","princip","connect","count","total","number","of","appaccessprincip","object","match","the","request"],["approv","rcv","privat","endpoint","repli","error","messag","error","code","describ","whi","the","approv","failed,","if","success","indic","whether","the","approv","oper","succeeded."],["archiv","entiti","use","case","type","use","case","type","of","the","archiv","entity."],["archiv","entiti","connect","count","total","number","of","archivalent","object","match","the","request"],["archiv","entiti","target","target","archiv","target.","use","case","type","use","case","type","of","the","archiv","entity."],["archiv","entiti","target","map","target","map","archiv","target","mapping.","use","case","type","use","case","type","of","the","archiv","entity."],["archiv","locat","for","failov","group","id","archiv","locat","id.","inelig","reason","reason","whi","the","locat","is","inelig","(if","not","is","elig","whether","the","locat","is","elig","for","add","to","is","immut","enabl","whether","immut","is","enabl","for","this","location.","locat","status","status","of","the","archiv","locat","(read_write,","read_only,","etc).","locat","type","type","of","the","archiv","location.","name","name","of","the","archiv","location.","storag","locat","storag","locat","display","string","(e.g.","bucket","name,","container)."],["archiv","locat","for","failov","group","connect","count","total","number","of","archivallocationforfailovergroup","object","match","the","request"],["archiv","locat","forecast","confid","confid","level","of","the","forecast.","current","byte","current","total","storag","in","byte","for","this","location.","forecast","forecast","storag","time-seri","(one","point","per","forecast","horizon).","last","refresh","at","timestamp","of","the","most","recent","forecast","refresh","for","locat","id","archiv","locat","id.","runway","week","estim","week","until","storag","reach","entitl","capacity.","-1","week","growth","pct","week","growth","rate","as","a","percentage."],["archiv","locat","forecast","refresh","status","is","refresh","in","progress","return","whether","an","archival-forecast","refresh","is","current","in"],["archiv","migrat","info","status","current","status","of","the","migration.","target","locat","target","locat","details.","target","locat","type","type","of","the","target","archiv","location."],["archiv","object","info","archiv","lag","number","of","local","snapshot","pend","upload","to","the","archiv","locat","id","identifi","of","the","archiv","locat","for","this","row.","archiv","locat","name","human-read","name","of","the","archiv","locat","for","this","is","rcv","conveni","flag","indic","whether","the","locat","is","a","latest","archiv","snapshot","date","date","of","the","latest","archiv","snapshot.","locat","type","archiv","locat","type","for","this","row","(e.g.","aws_s3,","month","growth","byte","forecast","month","storag","growth","in","byte","for","the","num","activ","snapshot","number","of","activ","snapshot","on","the","archiv","location.","object","locat","physic","locat","of","the","object.","object","name","name","of","the","object.","object","status","status","of","the","object.","object","type","type","of","the","object.","sla","domain","sla","domain","of","the","object.","storag","tier","storag","tier","or","class","for","this","archiv","locat","storag","usag","archiv","storag","usag","of","the","object","in","bytes.","workload","id","internal","id","of","the","object."],["archiv","object","info","connect","count","total","number","of","archivalobjectinfo","object","match","the","request"],["archiv","storag","usag","log","timestamp","time","that","the","log","was","stored.","storag","usag","amount","of","storag","use","in","bytes."],["archiv","8","s","cluster","repli","cluster","id","uuid","of","the","archiv","kubernet","cluster."],["assign","cloud","account","to","cluster","repli","cloud","account","uuid","uuid","of","the","cloud","account."],["assign","mssql","sla","domain","properti","async","repli","item","pend","sla","domain","result","from","this","assignment."],["async","download","repli","download","id","the","id","of","the","download","entity.","extern","id","the","extern","id","of","the","download","entity.","job","id","the","job","id.","refer","id","the","job","refer","id."],["async","job","status","error","error","messag","if","pre","valid","failed.","job","id","job","id","for","the","object","if","pre-valid","succeed"],["async","request","status","end","time","support","in","v5.0+","the","end","time","of","the","error","support","in","v5.0+","ani","error","encountered.","id","required.","support","in","v5.0+","v5.0:","the","id","of","link","required.","support","in","v5.0+","refer","to","ani","relat","node","id","support","in","v5.0+","the","id","of","the","node","progress","support","in","v5.0+","v5.0:","the","current","progress","in","result","support","in","v9.2+","the","result","of","the","request.","start","time","support","in","v5.0+","the","start","time","of","the","status","required.","support","in","v5.0+","v5.0:","status","of","the"],["atlassian","site","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","api","usag","the","api","usag","of","the","organiz","dure","the","author","oper","the","author","oper","on","the","object.","backup","job","stat","stat","of","the","backup","job","in","the","last","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","the","connect","status","to","the","organization.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","environ","type","exocomput","id","denot","the","id","of","the","exocomput","cluster","associ","id","id","of","the","hierarchi","object.","jira","featur","workload","id","rubrik","id","of","the","jira","featur","workload.","jira","project","count","the","count","of","jira","project","under","the","atlassian","jira","set","workload","id","rubrik","id","of","the","jira","set","workload.","last","refresh","time","the","time","at","which","the","atlassian","site","was","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","natur","id","id","of","the","atlassian","site","at","the","source.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","onboard","app","type","the","list","of","saa","applic","type","that","are","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","saa","app","org","info","organiz","organiz","the","inform","of","the","saa","app","organization.","saa","org","type","organiz","organiz","the","organiz","type","that","categor","the","saa","provider.","secur","metadata","secur","postur","metadata.","site","url","the","url","of","the","atlassian","site.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","storag","region","the","rsc","storag","region","for","the","organization."],["author","oper","id","object","id","that","the","author","oper","are","for.","oper","oper","that","are","authorized.","workload","hierarchi","workload","hierarchy."],["author","princip","auth","domain","id","id","of","the","authent","domain.","auth","domain","name","name","of","the","authent","domain.","email","email","address.","email","config","email","notif","configurations.","id","princip","id","last","login","last","login","timestamp.","lockout","status","lockout","status","for","an","ldap","principal.","name","name","of","the","principal.","princip","type","princip","type.","role","totp","status","totp","status","for","a","ldap","principal."],["author","princip","connect","count","total","number","of","authorizedprincip","object","match","the","request"],["aw","account","access","key","access","key","for","iam","user,","which","is","requir","aw","nativ","id","nativ","id","of","the","aw","account.","cloud","account","id","the","id","of","this","cloud","account.","cloud","provid","the","type","of","this","cloud","provider.","connect","status","the","connect","status","of","this","cloud","account.","descript","the","descript","of","this","cloud","account.","name","the","name","of","this","cloud","account.","sts","endpoint","sts","vpc","endpoint","of","the","aw","account.","sts","region","region","for","sts","service."],["aw","artifact","to","delet","artifact","to","delet","list","of","artifact","to","be","delet","for","each"],["aw","cdm","version","imag","id","imag","id.","is","latest","indic","whether","the","rubrik","cdm","version","is","the","product","code","product","code","of","the","aw","image.","support","instanc","type","support","aw","instanc","type","for","this","rubrik","cdm","tag","imag","tag","array","with","each","element","in","key=valu","version","imag","version."],["aw","cloud","account","account","name","name","of","cloud","account.","cloud","type","type","of","cloud","account.","cross","account","role","model","cross-account","role","model:","single_rol","or","multi_role.","id","rubrik","id","of","cloud","account.","messag","messag","for","cloud","account,","in","case","of","error.","nativ","id","nativ","id","of","cloud","account.","org","id","organiz","organiz","the","uuid","of","the","onboard","aw","organization.","org","name","organiz","organiz","the","aw","organiz","name","with","which","you","onboard","outpost","aw","nativ","id","nativ","id","of","the","aw","outpost","account.","seamless","flow","enabl","whether","seamless","flow","is","enabl","on","cloud","account.","servic","type","servic","type","indic","whether","the","account","is","onboard"],["aw","cloud","account","connect","count","total","number","of","awscloudaccount","object","match","the","request"],["aw","cloud","account","list","secur","group","respons","result","list","of","secur","groups."],["aw","cloud","account","list","subnet","respons","result","list","of","subnets."],["aw","cloud","account","list","vpc","respons","result","list","of","vpcs."],["aw","cloud","account","with","featur","aw","cloud","account","aw","account","details.","aw","role","custom","role","custom","for","the","aw","account.","featur","detail","featur","detail","for","the","cloud","account.","role","chain","account","role","chain","detail","for","the","aw","account."],["aw","cloud","account","migrat","initi","repli","cloud","format","url","this","url","is","use","to","creat","the","cloudform","elig","aw","account","list","of","aw","account","which","will","be","migrat","stack","name","stack","name","of","the","stack","which","will","be","templat","url","link","to","download","the","cft."],["aw","exocomput","cluster","connect","repli","cluster","setup","yaml","this","field","contain","the","kubernet","configur","yaml,","detail","cluster","uuid","the","uniqu","id","generat","for","the","k8s","cluster","connect","command","the","command","is","to","be","run","at","the"],["aw","exocomput","config","aw","cloud","account","account","details.","bundl","status","status","of","the","exocomput","bundl","version.","config","aw","exocomput","get","configur","response.","exocomput","config","aw","exocomput","get","configur","response.","exocomput","elig","auth","server","region","list","of","auth-serv","base","region","(iso/isob)","for","which","exocomput","elig","region","list","of","region","for","which","exocomput","can","be","featur","detail","featur","details.","latest","approv","bundl","version","latest","approv","bundl","version","for","pcr","customers.","latest","bundl","version","latest","bundl","version","for","exocomput","imag","avail","on","map","cloud","account","id","cloud","account","which","are","map","to","this","exocomput","map","cloud","account","detail","of","cloud","account","which","are","map","to","map","exocomput","config","aw","exocomput","configur","of","the","account","to","be","role","chain","account","role","chain","account","details.","ssl","inspect","certif","ssl","inspect","certif","for","the","exocompute.","support","ek","version","list","of","support","ek","version","for","exocompute."],["aw","exocomput","get","cluster","connect","info","repli","cluster","setup","yaml","this","field","contain","the","kubernet","configur","yaml,","detail","cluster","uuid","the","uniqu","id","generat","for","the","kubernet","cluster","connect","command","run","the","command","on","the","remot","kubernet","cluster"],["aw","featur","config","aw","cloud","account","account","details.","exocomput","config","aw","exocomput","configurations.","exocomput","configur","aw","exocomput","configurations.","exocomput","mappabl","region","aw","region","that","have","protect","objects.","featur","detail","featur","detail.","has","cloud","discoveri","indic","whether","cloud","discoveri","is","enabl","for","this","map","exocomput","account","account","detail","of","the","map","exocomput","account.","role","chain","account","role","chain","account","details."],["aw","iam","pair","with","miss","permiss","aw","iam","pair","aw","iam","pair","details.","miss","permiss","group","the","miss","permiss","group","that","is","need","to"],["aw","nativ","account","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","applic","cloud","account","exo","config","list","of","exocomput","configur","for","the","aw","account.","author","oper","the","author","oper","on","the","object.","aw","nativ","eb","volum","list","of","all","eb","volum","under","this","aw","all","org","all","tag","attach","ec","2","instanc","attach","spec","author","oper","avail","zone","aw","account","aw","account","rubrik","id","aw","nativ","account","aw","nativ","account","detail","aw","nativ","account","name","cloud","nativ","id","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","file","index","status","id","iop","is","exocomput","configur","is","index","enabl","is","marketplac","is","protect","is","relic","logic","path","name","nativ","name","newest","index","snapshot","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","outpost","arn","physic","path","region","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","size","in","gi","bs","sla","assign","sla","paus","status","snapshot","connect","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","new","connect","tag","volum","name","volum","nativ","id","volum","type","workload","snapshot","connect","aw","nativ","ec","2","instanc","list","of","all","ec2","instanc","under","this","aw","all","org","all","tag","attach","eb","volum","attach","spec","author","oper","avail","zone","aw","account","aw","account","rubrik","id","aw","nativ","account","aw","nativ","account","detail","aw","nativ","account","name","cloud","nativ","applic","cloud","nativ","id","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","file","index","status","host","info","id","instanc","name","instanc","nativ","id","instanc","type","is","app","consist","enabl","is","exocomput","configur","is","index","enabl","is","marketplac","is","pre","or","post","script","enabl","is","protect","is","relic","logic","path","name","nativ","name","newest","index","snapshot","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","os","type","outpost","arn","physic","path","privat","ip","public","ip","recoveri","plan","info","region","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","connect","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","new","connect","ssh","key","pair","name","tag","vm","app","consist","spec","virtual","machin","vpc","id","vpc","name","workload","snapshot","connect","aw","nativ","rds","instanc","list","of","all","rds","instanc","under","this","aw","all","org","all","tag","alloc","storag","in","gibi","aurora","avail","zone","author","oper","aw","account","aw","account","rubrik","id","aw","nativ","account","aw","nativ","account","detail","cloud","nativ","applic","cloud","nativ","id","configur","sla","domain","db","engin","db","instanc","class","db","instanc","name","dbi","resourc","id","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","exocomput","configur","is","multi","az","is","protect","is","relic","logic","path","mainten","window","name","nativ","name","newest","index","snapshot","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","physic","path","primari","avail","zone","rds","type","read","replica","sourc","name","region","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","connect","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","new","connect","tag","vpc","id","vpc","name","workload","snapshot","connect","aw","region","pagin","list","of","aw","nativ","region","in","this","all","org","all","tag","common","configur","sla","domain","dynamo","db","tabl","count","eb","volum","count","ec","2","instanc","count","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","glue","iceberg","catalog","count","glue","iceberg","databas","count","glue","iceberg","tabl","count","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","parent","account","id","physic","path","rds","instanc","count","region","name","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","s","3","bucket","count","s","3","tabl","iceberg","catalog","count","s","3","tabl","iceberg","namespac","count","s","3","tabl","iceberg","tabl","count","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","cloud","account","state","specifi","the","status","of","the","cloud","account","associ","cloud","slab","dns","cloudslab","dns","that","must","be","in","the","allowlist","cloud","type","aw","cloud","type.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","dynamo","db","tabl","count","count","of","amazon","dynamodb","tabl","in","the","aw","eb","volum","count","count","of","eb","volum","in","the","aw","nativ","ec","2","instanc","count","count","of","ec2","instanc","in","the","aw","nativ","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","enabl","featur","list","of","protect","featur","enabl","for","the","aw","featur","detail","cloud","account","featur","detail","includ","permiss","group","for","glue","iceberg","catalog","count","count","of","glue","iceberg","catalog","in","the","aw","glue","iceberg","databas","count","count","of","glue","iceberg","databas","in","the","aw","glue","iceberg","tabl","count","count","of","glue","iceberg","tabl","in","the","aw","id","id","of","the","hierarchi","object.","is","protect","whether","the","aw","account","is","protect","for","the","last","refresh","at","last","refresh","time","of","the","account,","in","utc","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rds","instanc","count","count","of","rds","instanc","in","the","account.","region","spec","list","of","aw","region","specif","associ","with","the","role","chain","detail","detail","of","the","role","chain","account","associ","with","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","s","3","bucket","count","count","of","amazon","s3","bucket","in","the","aw","s","3","tabl","iceberg","catalog","count","count","of","s3","tabl","iceberg","catalog","in","the","s","3","tabl","iceberg","namespac","count","count","of","s3","tabl","iceberg","namespac","in","the","s","3","tabl","iceberg","tabl","count","count","of","s3","tabl","iceberg","tabl","in","the","secur","metadata","secur","postur","metadata.","servic","type","servic","type","indic","whether","the","account","is","onboard","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","specifi","the","state","of","account","in","rubrik","environ"],["aw","nativ","account","connect","count","total","number","of","awsnativeaccount","object","match","the","request"],["aw","nativ","config","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","aw","nativ","account","detail","aw","nativ","account","details.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","protect","indic","whether","this","aw","configur","is","protect","or","is","relic","specifi","whether","this","aw","configur","is","a","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["aw","nativ","dynamo","db","tabl","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","aw","account","aw","account","of","the","amazon","dynamodb","table.","aw","account","rubrik","id","rubrik","id","of","the","aw","account.","aw","nativ","account","detail","aw","nativ","account","details.","cloud","nativ","id","aw","nativ","id","of","dynamodb","table.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","aw","continu","backup","enabl","a","boolean","specifi","whether","aw","continu","backup","is","is","exocomput","configur","a","boolean","specifi","whether","an","exocomput","is","configur","is","protect","indic","whether","this","dynamodb","tabl","is","protect","or","is","relic","whether","the","tabl","is","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","aw","nativ","name","of","the","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","non","backup","region","name","name","of","the","region","where","the","tabl","is","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","name","of","the","region","from","where","backup","will","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","s","3","backup","bucket","s3","backup","bucket","for","the","dynamodb","table.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","tabl","size","byte","size","of","the","dynamodb","tabl","in","bytes.","tag","list","of","tag","associ","with","the","table.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["aw","nativ","dynamo","db","tabl","point","in","time","restor","window","earliest","time","the","earliest","time","to","which","the","dynamodb","tabl","latest","time","the","latest","time","to","which","the","dynamodb","tabl"],["aw","nativ","eb","volum","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","attach","ec","2","instanc","ec2","instanc","to","which","this","volum","is","attached.","attach","spec","list","of","ec2","instanc","detail","to","which","volum","author","oper","the","author","oper","on","the","object.","avail","zone","name","of","the","avail","zone","(az).","some","exampl","aw","account","aw","nativ","account","associ","with","the","eb","volumes.","aw","account","rubrik","id","rubrik","id","of","instance.","aw","nativ","account","aw","nativ","account","associ","with","the","eb","volumes.","aw","nativ","account","detail","aw","nativ","account","details.","aw","nativ","account","name","name","for","the","aw","account.","cloud","nativ","id","aw","nativ","id","of","eb","volume.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","file","index","status","specifi","the","file","index","status","for","this","eb","id","id","of","the","hierarchi","object.","iop","input/output","(io)","limit","per","second","for","volume.","is","exocomput","configur","whether","exocomput","is","configur","for","the","region","where","is","index","enabl","specifi","whether","file","index","is","enabl","for","this","is","marketplac","whether","the","volum","imag","is","marketplac","image.","is","protect","indic","whether","this","eb","volum","is","protect","or","is","relic","whether","the","volum","is","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","aw","nativ","name","of","the","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","outpost","arn","arn","of","the","aw","outpost","this","volum","resid","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","name","of","the","region.","some","exampl","are:","us_east_1,","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","size","in","gi","bs","size","of","volum","in","gib.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","tag","list","of","tag","associ","with","volume.","volum","name","name","of","volum","on","aws.","name","is","not","volum","nativ","id","aw","nativ","id","of","eb","volume.","volum","type","aw","nativ","eb","volum","type.","some","exampl","are:","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["aw","nativ","eb","volum","connect","count","total","number","of","awsnativeebsvolum","object","match","the","request"],["aw","nativ","ec","2","instanc","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","attach","eb","volum","attach","an","aw","elast","block","store","(ebs)","volum","attach","spec","list","of","eb","volum","detail","attach","to","the","author","oper","the","author","oper","on","the","object.","avail","zone","name","of","the","avail","zone","(az).","some","exampl","aw","account","aw","account","of","the","ec2","instance.","aw","account","rubrik","id","rubrik","id","of","instance.","aw","nativ","account","aw","account","of","the","ec2","instance.","aw","nativ","account","detail","aw","nativ","account","details.","aw","nativ","account","name","name","for","the","aw","account.","cloud","nativ","applic","list","of","cloud","nativ","applic","associ","with","this","cloud","nativ","id","aw","nativ","id","of","instance.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","file","index","status","specifi","the","file","index","status","for","this","ec2","host","info","rubrik","cdm","host","inform","for","the","aw","ec2","id","id","of","the","hierarchi","object.","instanc","name","name","of","instanc","on","aws.","name","is","not","instanc","nativ","id","aw","nativ","id","of","instance.","instanc","type","aw","nativ","ec2","instanc","type.","some","exampl","are:","is","app","consist","enabl","specifi","whether","applic","consist","snapshot","are","enabl","for","is","exocomput","configur","whether","exocomput","is","configur","for","the","region","where","is","index","enabl","specifi","whether","file","index","is","enabl","for","this","is","marketplac","whether","the","instanc","imag","is","marketplac","image.","is","pre","or","post","script","enabl","specifi","whether","the","pre-script","or","post-script","framework","is","is","protect","indic","whether","this","ec2","instanc","is","protect","or","is","relic","whether","the","instanc","is","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","aw","nativ","name","of","the","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","os","type","name","of","the","oper","system","(os)","for","the","outpost","arn","arn","of","the","aw","outpost","this","instanc","resid","physic","path","sequenti","list","of","the","physic","ancestor","of","this","privat","ip","privat","ip","address","for","instance.","public","ip","public","ip","address","for","instance.","recoveri","plan","info","list","of","recoveri","plan","associ","with","the","virtual","region","name","of","the","region.","some","exampl","are:","us_east_1,","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","ssh","key","pair","name","name","of","ssh","key-pair","for","the","instance.","tag","list","of","tag","associ","with","instance.","vm","app","consist","spec","virtual","machin","specif","for","ensur","applic","consist","on","the","ec2","vpc","id","id","of","virtual","privat","cloud","(vpc)","associ","with","vpc","name","name","of","virtual","privat","cloud","(vpc)","associ","with","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["aw","nativ","ec","2","instanc","connect","count","total","number","of","awsnativeec2inst","object","match","the","request"],["aw","nativ","ec","2","instanc","type","offer","name","name","of","the","instanc","type."],["aw","nativ","rds","instanc","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","alloc","storag","in","gibi","alloc","size","of","rds","instanc","in","gib.","aurora","avail","zone","avail","zone","if","this","is","an","aurora","cluster.","author","oper","the","author","oper","on","the","object.","aw","account","aw","account","of","the","amazon","relat","databas","servic","aw","account","rubrik","id","rubrik","identifi","for","account","associ","with","rds","instance.","aw","nativ","account","aw","account","of","the","amazon","relat","databas","servic","aw","nativ","account","detail","aw","nativ","account","details.","cloud","nativ","applic","list","of","cloud","nativ","applic","associ","with","this","cloud","nativ","id","nativ","id","of","the","rds","instance.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","db","engin","engin","be","use","for","rds","instance.","db","instanc","class","class","type","of","rds","instance.","db","instanc","name","name","of","rds","instance.","dbi","resourc","id","resourc","identifi","of","rds","instance.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","exocomput","configur","a","boolean","specifi","whether","exocomput","is","configur","in","is","multi","az","identifi","if","the","rds","instanc","is","part","of","is","protect","indic","whether","this","rds","instanc","is","protect","or","is","relic","specifi","whether","the","rds","instanc","is","a","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","mainten","window","mainten","window","of","rds","instance.","name","name","of","the","hierarchi","object.","nativ","name","aw","nativ","name","of","the","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","avail","zone","name","of","avail","zone(az)","associ","with","rds","instance.","rds","type","the","type","of","the","rds","instanc","such","as","read","replica","sourc","name","name","of","the","sourc","rds","instanc","if","this","region","aw","region","of","rds","instance.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","tag","list","of","tag","associ","with","rds","instance.","vpc","id","identifi","of","vpc","associ","with","rds","instance.","vpc","name","name","of","vpc","associ","with","rds","instance.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["aw","nativ","rds","instanc","connect","count","total","number","of","awsnativerdsinst","object","match","the","request"],["aw","nativ","rds","point","in","time","restor","window","earliest","time","the","earliest","time","to","which","rds","instanc","can","latest","time","the","latest","time","to","which","rds","instanc","can"],["aw","nativ","region","hierarchi","object","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","common","common","hierarchi","object","field","includ","id,","name,","and","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","dynamo","db","tabl","count","number","of","dynamodb","tabl","in","this","region.","eb","volum","count","number","of","eb","volum","in","this","region.","ec","2","instanc","count","number","of","ec2","instanc","in","this","region.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","glue","iceberg","catalog","count","number","of","glue","iceberg","catalog","in","this","region.","glue","iceberg","databas","count","number","of","glue","iceberg","databas","in","this","region.","glue","iceberg","tabl","count","number","of","glue","iceberg","tabl","in","this","region.","id","id","of","the","hierarchi","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","parent","account","id","id","of","the","parent","aw","account.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rds","instanc","count","number","of","rds","instanc","in","this","region.","region","name","name","of","the","aw","region.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","s","3","bucket","count","number","of","s3","bucket","in","this","region.","s","3","tabl","iceberg","catalog","count","number","of","s3","tabl","iceberg","catalog","in","this","s","3","tabl","iceberg","namespac","count","number","of","s3","tabl","iceberg","namespac","in","this","s","3","tabl","iceberg","tabl","count","number","of","s3","tabl","iceberg","tabl","in","this","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["aw","nativ","root","object","type","descend","connect","list","of","descend","of","specif","object","type.","all","org","all","tag","cloud","nativ","id","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","relic","logic","path","name","nativ","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","region","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","tag"],["aw","nativ","3","bucket","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","aw","account","aw","account","of","the","amazon","s3","bucket.","aw","account","rubrik","id","rubrik","id","of","the","amazon","account.","aw","nativ","account","aw","account","of","the","amazon","s3","bucket.","aw","nativ","account","detail","aw","nativ","account","details.","bucket","size","byte","total","size","of","the","bucket","in","bytes.","cloud","nativ","applic","list","of","cloud","nativ","applic","associ","with","this","cloud","nativ","id","aw","nativ","id","of","s3","bucket.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","creation","time","the","time","when","the","amazon","s3","bucket","was","earliest","restor","time","the","earliest","time","to","which","the","s3","bucket","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","exocomput","configur","a","boolean","specifi","whether","exocomput","is","configur","in","is","infrastructur","alert","enabl","whether","infrastructur","delet","alert","are","enabl","for","the","is","onboard","flag","to","specifi","if","the","s3","bucket","is","is","protect","indic","whether","this","s3","bucket","is","protect","or","is","relic","whether","the","bucket","is","relic.","is","version","enabl","whether","version","is","enabl","on","the","bucket.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","aw","nativ","name","of","the","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","number","of","object","number","of","object","in","the","s3","bucket.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","name","of","the","region.","some","exampl","are:","us_east_1,","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","tag","list","of","tag","associ","with","bucket.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["aw","region","detail","repli","region","detail","list","of","aw","region","detail","includ","avail","zone"],["aw","role","base","account","aw","specif","info","aw","role","base","account","specif","info.","cloud","account","id","the","id","of","this","cloud","account.","cloud","provid","the","type","of","this","cloud","provider.","connect","status","the","connect","status","of","this","cloud","account.","descript","the","descript","of","this","cloud","account.","name","the","name","of","this","cloud","account."],["aw","trust","polici","result","result","of","retriev","the","trust","policy."],["aw","valid","permiss","repli","account","result","specifi","the","valid","result","for","each","of","the"],["aw","vpc","id","id","for","the","vpc.","name","name","of","the","vpc.","secur","group","list","of","secur","group","associ","with","the","vpc.","subnet","list","of","subnet","associ","with","the","vpc."],["azur","account","cloud","account","id","the","id","of","this","cloud","account.","cloud","provid","the","type","of","this","cloud","provider.","connect","status","the","connect","status","of","this","cloud","account.","descript","the","descript","of","this","cloud","account.","name","the","name","of","this","cloud","account.","subscript","id","the","nativ","id","of","the","subscription.","tenant","id","the","nativ","id","of","the","tenant","of","the"],["azur","ad","directori","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","app","id","id","of","the","onboard","azur","ad","app.","app","owner","owner","of","the","onboard","azur","ad","app.","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","directori","id","the","natur","id","of","the","azur","ad","directory.","domain","name","name","of","the","azur","ad","directory.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exo","host","type","specifi","the","host","type","of","the","exocomput","resourc","exocomput","id","id","of","the","exocomput","cluster.","first","devic","snapshot","time","when","enabled,","time","of","the","first","snapshot","that","first","scope","snapshot","time","time","of","the","first","snapshot","with","scope","enabl","first","zeus","snapshot","time","when","enabled,","time","of","the","first","snapshot","save","id","object","id.","is","intun","enabl","specifi","whether","intun","protect","is","enabl","for","the","is","jit","enabl","specifi","whether","the","tenant","was","onboard","use","the","is","provis","specifi","whether","the","infrastructur","has","been","provis","to","is","relic","specifi","whether","the","object","is","a","relic.","latest","access","review","schedul","definit","count","count","of","access","review","schedul","definit","from","the","latest","administr","unit","count","count","of","administr","unit","from","the","latest","snapshot.","latest","applic","count","applic","count","from","the","latest","snapshot.","latest","assign","filter","count","count","of","assign","filter","from","the","latest","snapshot.","latest","authent","context","count","authent","context","count","from","the","latest","snapshot.","latest","authent","strength","count","authent","strength","count","from","the","latest","snapshot.","latest","bit","locker","key","count","count","of","bitlock","key","from","the","latest","snapshot.","latest","complianc","polici","count","count","of","complianc","polici","from","the","latest","snapshot.","latest","complianc","script","count","count","of","complianc","script","from","the","latest","snapshot.","latest","condit","access","polici","count","condit","access","polici","count","from","the","latest","snapshot.","latest","devic","count","count","of","devic","from","the","latest","snapshot.","latest","em","access","packag","count","count","of","entitl","manag","access","packag","from","the","latest","em","catalog","count","count","of","entitl","manag","catalog","from","the","latest","latest","entra","object","count","count","of","entra","id","and","intun","object","type","latest","group","activ","assign","count","count","of","pim","group","activ","assign","from","the","latest","group","count","group","count","from","the","latest","snapshot.","latest","group","elig","assign","count","count","of","pim","group-elig","assign","from","the","latest","latest","local","admin","password","count","count","of","local","admin","password","from","the","latest","latest","name","locat","count","name","locat","count","from","the","latest","snapshot.","latest","notif","templat","count","count","of","notif","templat","from","the","latest","snapshot.","latest","role","elig","assign","count","count","of","pim","role-elig","assign","from","the","latest","latest","role","count","role","count","from","the","latest","snapshot.","latest","servic","princip","count","servic","princip","count","from","the","latest","snapshot.","latest","snapshot","time","time","of","the","latest","snapshot.","latest","term","of","use","count","term","of","use","count","from","the","latest","snapshot.","latest","user","count","user","count","from","the","latest","snapshot.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","migrat","from","colossus","specifi","whether","the","tenant","was","migrat","from","colossus","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","on","prem","ad","protect","stat","protect","inform","for","on-prem","activ","directori","(ad)","domain","physic","path","sequenti","list","of","the","physic","ancestor","of","this","provis","state","specifi","the","provis","state","of","the","infrastructur","for","region","region","of","the","azur","ad","directory.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","tenant","type","specifi","the","microsoft","cloud","environ","type","of","this","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["azur","ad","directori","connect","count","total","number","of","azureaddirectori","object","match","the","request"],["azur","ad","object","azur","ad","object","the","entra","id","object.","object","id","id","of","the","entra","id","object.","relat","item","count","repres","count","of","relat","item","for","relationship","type.","revers","relationship","revers","relationship","of","the","entra","id","object.","snapshot","id","id","of","the","snapshot","contain","entra","id","object.","snapshot","rang","snapshot","rang","contain","the","entra","id","object.","type","entra","id","object","type."],["azur","ad","object","connect","count","total","number","of","azureadobject","object","match","the","request"],["azur","arm","templat","by","featur","deploy","level","whether","the","templat","should","be","deploy","at","the","featur","the","cloud","account","feature.","permiss","group","version","polici","version","for","each","permiss","group","use","to","role","definit","assign","templat","role","definit","assign","template.","version","templat","version."],["azur","blob","contain","ccprovis","has","immut","polici","specifi","whether","contain","has","an","immut","policy.","is","immut","storag","with","version","enabl","specifi","whether","contain","is","immut","with","version","enabled.","name","azur","contain","name."],["azur","blob","contain","ccprovis","connect","count","total","number","of","azureblobcontainerccprovis","object","match","the","request"],["azur","cdm","version","cdm","version","rubrik","cdm","version.","sku","imag","sku.","support","instanc","type","support","azur","instanc","type","for","this","rubrik","cdm","tag","imag","tag","array","with","each","element","in","key=valu","version","azur","imag","version."],["azur","cloud","account","add","with","custom","app","initi","repli","session","id","session","id","for","track","the","oauth","flow.","subscript","list","of","azur","subscript","discov","in","the","tenant.","success","indic","whether","the","oper","was","successful."],["azur","cloud","account","detail","for","featur","repli","azur","cloud","type","azur","cloud","type.","permiss","group","permiss","groups.","subscript","id","subscript","id.","tenant","domain","azur","tenant","domain.","tenant","id","azur","tenant","id."],["azur","cloud","account","permiss","config","respons","permiss","version","permiss","version.","permiss","group","version","permiss","group","versions.","resourc","group","role","permiss","permiss","to","be","appli","on","the","resourc","group","role","permiss","permiss","to","be","appli","on","the","subscript","level"],["azur","cloud","account","subscript","with","featur","featur","detail","detail","of","featur","of","the","cloud","account.","subscript","azur","subscript","details."],["azur","cloud","account","tenant","app","name","app","name","of","the","applic","configur","for","authent","azur","cloud","account","tenant","rubrik","id","rubrik","id","of","the","azur","tenant.","client","id","client","id","of","the","applic","configur","for","authent","cloud","type","type","of","azur","tenant.","possibl","values:","azur","public","domain","name","domain","name","of","the","azur","tenant.","entra","id","group","id","object","id","of","the","entra","id","group","use","is","app","rubrik","manag","if","rubrik","manag","the","applic","associ","with","this","subscript","count","count","of","subscript","add","to","the","rubrik","ecosystem","subscript","subscript","add","to","the","rubrik","ecosystem","for","this"],["azur","cloud","account","tenant","with","exo","config","app","name","app","name","of","azur","applic","for","the","tenant.","client","id","client","id","of","azur","applic","for","the","tenant.","cloud","type","type","of","azur","tenant.","can","be","azur","public","domain","name","azur","activ","directori","(ad)","domain","correspond","to","subscription.","entra","id","group","id","object","id","of","the","entra","id","group","use","is","app","rubrik","manag","if","rubrik","manag","the","applic","associ","with","this","rubrik","id","rubrik","id","of","the","azur","tenant.","subscript","count","number","of","subscript","for","the","tenant.","subscript","detail","of","subscript","for","the","tenant."],["azur","cluster","storag","account","redund","repli","convers","status","status","of","an","ongo","redund","conversion,","if","any.","current","redund","current","redund","of","the","storag","account.","failur","reason","failur","reason","if","conversionstatus","is","failed.","resourc","group","resourc","group","of","the","storag","account.","storag","account","name","name","of","the","storag","account.","target","redund","target","redund","of","the","ongo","convers","(set","when"],["azur","dev","op","connect","status","summari","repli","connect","status","count","list","of","connect","status","counts."],["azur","dev","op","org","info","organiz","organiz","is","onboard","true","if","this","organiz","is","alreadi","onboard","to","name","azur","devop","organiz","name","(e.g.,","\"my-org\"","from","https://dev.azure.com/my-org).","org","id","organiz","organiz","azur","devop","organiz","id","(organ","uuid).","org","uri","organiz","organiz","azur","devop","organiz","uri","(e.g.,","\"https://dev.azure.com/my-org\")."],["azur","dev","op","organiz","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","authent","mechan","authent","mechan","(oauth","or","non-oauth)","the","organiz","tenant","author","oper","the","author","oper","on","the","object.","backup","locat","backup","locat","associ","with","the","azur","devop","organization.","backup","locat","id","id","of","the","backup","locat","associ","with","the","backup","locat","name","name","of","the","backup","locat","associ","with","the","backup","region","backup","region","for","the","azur","devop","organization.","client","id","azur","ad","applic","(client)","id","of","the","per-ten","cloud","nativ","exocomput","cloud","nativ","exocomput","associ","with","the","azur","devop","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","connect","status","of","the","azur","devop","organization.","dev","op","org","type","organiz","organiz","type","of","the","azur","devop","organization.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exocomput","host","name","exocomput","host","name","for","the","azur","devop","organization.","exocomput","id","id","of","the","exocomput","associ","with","the","azur","id","id","of","the","azur","devop","organization.","is","relic","true","if","the","azur","devop","organiz","is","a","last","refresh","time","last","refresh","time","of","the","azur","devop","organization.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","id","nativ","id","of","the","azur","devop","organization.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","project","count","number","of","project","in","the","azur","devop","organization.","repo","count","number","of","repositori","in","the","azur","devop","organization.","repo","host","type","exocomput","host","type","of","the","azur","devop","organization.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","rubrik","host","exocomput","rubrik","host","exocomput","associ","with","the","azur","devop","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","tenant","id","tenant","id","associ","with","the","azur","devop","organization.","tenant","uuid","azur","ad","tenant","uuid","for","the","azur","devop"],["azur","dev","op","organiz","connect","count","total","number","of","azuredevopsorgan","object","match","the","request"],["azur","dev","op","project","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","fix","object","count","developer-collabor","object","count","for","the","project","fixed-object","child.","fix","object","id","manag","object","uuid","of","this","project","fix","object.","id","id","of","the","azur","devop","project.","is","relic","true","if","the","azur","devop","project","is","a","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","id","nativ","id","of","the","azur","devop","project.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","org","id","organiz","organiz","id","of","the","azur","devop","organiz","associ","with","org","name","organiz","organiz","name","of","the","azur","devop","organiz","associ","with","physic","path","sequenti","list","of","the","physic","ancestor","of","this","repo","count","number","of","repositori","in","the","azur","devop","project.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","tenant","id","tenant","id","of","the","org","this","project","belong","url","url","of","the","azur","devop","project."],["azur","dev","op","project","connect","count","total","number","of","azuredevopsproject","object","match","the","request"],["azur","dev","op","repositori","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","azur","devop","repository.","is","relic","true","if","the","azur","devop","repositori","is","a","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","org","id","organiz","organiz","id","of","the","azur","devop","organiz","associ","with","org","name","organiz","organiz","name","of","the","azur","devop","organiz","associ","with","physic","path","sequenti","list","of","the","physic","ancestor","of","this","project","id","id","of","the","azur","devop","project","associ","with","project","name","name","of","the","azur","devop","project","associ","with","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","size","size","of","the","azur","devop","repositori","in","bytes.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","url","url","of","the","azur","devop","repository.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["azur","dev","op","repositori","connect","count","total","number","of","azuredevopsrepositori","object","match","the","request"],["azur","encrypt","key","key","name","name","of","encrypt","key."],["azur","exocomput","config","in","account","azur","cloud","account","account","details.","config","azur","exocomput","configurations.","exocomput","elig","region","list","of","region","for","which","exocomput","can","be","featur","detail","featur","details.","global","region","config","azur","exocomput","global","option","configurations."],["azur","key","vault","is","access","by","user","assign","manag","ident","whether","the","key","vault","is","access","by","the","is","purg","protect","enabl","determin","if","the","purg","protect","is","enabl","for","key","vault","name","name","of","key","vault.","resourc","group","name","name","of","resourc","group","in","which","the","key"],["azur","list","manag","group","hierarchi","repli","entiti","list","of","manag","group","and","subscriptions."],["azur","list","manag","group","repli","manag","group","list","of","manag","groups."],["azur","locat","detail","type","locat","name","of","the","azur","location.","logic","avail","zone","avail","avail","zone","in","the","region."],["azur","manag","ident","client","id","manag","ident","client","id.","name","manag","ident","name.","resourc","group","manag","ident","resourc","group."],["azur","nativ","avail","set","name","name","of","the","avail","set.","nativ","id","nativ","id","of","the","avail","set."],["azur","nativ","disk","encrypt","set","name","name","of","the","azur","disk","encrypt","set.","nativ","id","nativ","id","of","the","azur","disk","encrypt","set."],["azur","nativ","export","compat","disk","type","avail","zone","availab","zone","of","the","disk.","disk","type","type","of","the","disk."],["azur","nativ","export","compat","vm","size","virtual","machin","avail","zone","avail","zone","of","the","virtual","machin","(vm).","vm","size","virtual","machin","size","of","the","virtual","machin","(vms).","for","more"],["azur","nativ","key","vault","name","name","of","the","key","vault.","nativ","id","nativ","id","of","the","key","vault.","resourc","group","name","name","of","the","resourc","group","associ","with","the"],["azur","nativ","manag","disk","all","attach","azur","nativ","virtual","machin","all","virtual","machin","(vms)","attach","to","the","manag","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","attach","azur","nativ","virtual","machin","all","virtual","machin","(vms)","attach","to","the","manag","attach","spec","attach","specif","are","properti","of","the","manag","disk,","author","oper","the","author","oper","on","the","object.","avail","zone","avail","zone","associ","with","the","manag","disk.","azur","nativ","resourc","group","and","subscript","detail","azur","nativ","resourc","group","and","subscript","details.","azur","resourc","group","resourc","group","of","the","azur","virtual","manag","disk.","azur","resourc","group","detail","azur","nativ","resourc","group","and","subscript","details.","cloud","nativ","id","nativ","id","of","the","manag","disk.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","disk","iop","read","write","number","of","input/output","oper","per","second","(iops)","allow","disk","mbps","read","write","bandwidth","allow","for","the","manag","disk,","in","million","disk","nativ","id","nativ","id","of","the","manag","disk.","disk","size","gib","size","of","the","manag","disk","in","gigabyt","(gib).","disk","storag","tier","storag","tier","of","the","manag","disk.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","file","index","status","specifi","the","file","index","status","for","this","manag","id","id","of","the","hierarchi","object.","is","ade","enabl","specifi","whether","azur","disk","encrypt","(ade)","is","enabl","is","exocomput","configur","specifi","whether","exocomput","is","configur","for","the","region","is","file","index","enabl","specifi","whether","file","index","is","enabl","for","this","is","protect","specifi","whether","the","manag","disk","is","protectable.","when","is","relic","specifi","whether","the","manag","disk","is","a","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","azur","nativ","name","of","the","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","os","type","type","of","the","oper","system","(os)","instal","on","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","azur","region","where","the","manag","disk","is","located.","resourc","group","resourc","group","of","the","azur","nativ","manag","disk.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","tag","list","of","tag","associ","with","the","manag","disk.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["azur","nativ","manag","disk","connect","count","total","number","of","azurenativemanageddisk","object","match","the","request"],["azur","nativ","region","manag","object","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","azur","postgr","flexibl","server","count","the","number","of","azur","postgresql","flexibl","server","in","azur","sql","databas","db","count","count","of","azur","sql","databas","in","the","region.","azur","sql","manag","instanc","db","count","count","of","azur","sql","manag","instanc","databas","in","azur","storag","account","count","the","number","of","azur","storag","account","in","the","azur","subscript","id","nativ","id","of","the","azur","subscript","associ","with","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","disk","count","count","of","disk","in","the","region.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","vms","count","count","of","virtual","machin","(vms)","in","the","region."],["azur","nativ","region","manag","object","connect","count","total","number","of","azurenativeregionmanagedobject","object","match","the","request"],["azur","nativ","resourc","group","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","azur","nativ","subscript","detail","subscript","detail","of","the","resourc","group.","azur","nativ","virtual","machin","pagin","ist","of","azur","virtual","machin","(vms)","in","all","org","all","tag","attach","manag","disk","attach","spec","author","oper","avail","set","nativ","id","avail","zone","azur","nativ","resourc","group","and","subscript","detail","azur","resourc","group","azur","resourc","group","detail","cloud","nativ","id","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","file","index","status","host","info","id","is","acceler","network","enabl","is","ade","enabl","is","app","consist","enabl","is","exocomput","configur","is","file","index","enabl","is","pre","or","post","script","enabl","is","protect","is","relic","logic","path","name","nativ","name","newest","index","snapshot","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","os","type","physic","path","privat","ip","recoveri","plan","info","region","resourc","group","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","size","type","sla","assign","sla","paus","status","snapshot","connect","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","new","connect","subnet","name","tag","virtua","machin","nativ","id","vm","app","consist","spec","virtual","machin","vm","name","virtual","machin","vnet","name","workload","snapshot","connect","azur","postgr","flexibl","server","count","the","number","of","azur","postgresql","flexibl","server","in","azur","sql","databas","count","count","of","azur","sql","databas","in","the","resourc","azur","sql","manag","instanc","db","count","count","of","azur","sql","manag","instanc","databas","in","azur","storag","account","count","the","number","of","azur","storag","account","in","the","azur","subscript","azur","nativ","subscript","of","the","resourc","group.","azur","subscript","detail","subscript","detail","of","the","resourc","group.","azur","subscript","rubrik","id","rubrik","id","of","the","azur","nativ","resourc","group.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","disk","sla","deprecated,","use","protectedobjecttypetosla","instead.","rubrik","servic","level","agreement","disk","count","count","of","disk","in","the","resourc","group.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","protect","whether","the","resourc","group","is","protect","for","the","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","protect","object","type","to","sla","a","list","of","map","between","protect","object","type","region","azur","region","associ","with","the","resourc","group.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snappabl","type","to","backup","setup","spec","a","list","of","map","between","object","type","and","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","subscript","azur","nativ","subscript","of","the","resourc","group.","tag","list","of","tag","associ","with","the","resourc","group.","vm","sla","virtual","machin","deprecated,","use","protectedobjecttypetosla","instead.","rubrik","servic","level","agreement","vms","count","count","of","virtual","machin","(vms)","in","the","resourc"],["azur","nativ","resourc","group","connect","count","total","number","of","azurenativeresourcegroup","object","match","the","request"],["azur","nativ","root","object","type","descend","connect","list","of","descend","of","specif","object","type.","all","org","all","tag","azur","resourc","group","cloud","nativ","id","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","relic","logic","path","name","nativ","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","region","resourc","group","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","tag"],["azur","nativ","secur","group","name","name","of","the","secur","group.","nativ","id","nativ","id","of","the","secur","group.","resourc","group","name","name","of","the","resourc","group","associ","with","the"],["azur","nativ","sql","databas","point","in","time","restor","window","earliest","time","the","earliest","time","to","which","databas","can","be","latest","time","the","latest","time","to","which","databas","can","be"],["azur","nativ","storag","account","id","azur","id","of","the","storag","account.","name","name","of","the","storag","account.","region","region","where","the","storag","account","is","located.","resourc","group","name","name","of","the","resourc","group","where","storag","account","tag","tag","attach","to","the","storag","account."],["azur","nativ","subnet","address","prefix","list","of","subnet","ip","address","prefix","in","cidr","name","name","of","the","subnet.","nativ","id","nativ","id","of","the","subnet.","vnet","virtual","network","(vnet)","associ","with","the","subnet."],["azur","nativ","subscript","account","connect","id","cloud","account","id","associ","with","the","subscription.","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","applic","cloud","account","exo","config","list","of","exocomput","configur","for","the","azur","subscription.","author","oper","the","author","oper","on","the","object.","azur","cloud","type","type","of","azur","cloud,","for","example,","azur","public","azur","nativ","resourc","group","pagin","list","of","all","azur","resourc","group","in","all","org","all","tag","author","oper","azur","nativ","subscript","detail","azur","nativ","virtual","machin","azur","postgr","flexibl","server","count","azur","sql","databas","count","azur","sql","manag","instanc","db","count","azur","storag","account","count","azur","subscript","azur","subscript","detail","azur","subscript","rubrik","id","configur","sla","domain","disk","sla","disk","count","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","protect","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","protect","object","type","to","sla","region","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snappabl","type","to","backup","setup","spec","snapshot","distribut","subscript","tag","vm","sla","virtual","machin","vms","count","azur","postgr","flexibl","server","count","the","number","of","azur","postgresql","flexibl","server","in","azur","sql","databas","db","count","count","of","azur","sql","databas","in","the","subscription.","azur","sql","manag","instanc","db","count","count","of","azur","sql","manag","instanc","databas","in","azur","storag","account","count","the","number","of","azur","storag","account","in","the","azur","subscript","nativ","id","nativ","id","of","the","subscription.","azur","subscript","status","status","of","the","subscript","at","a","given","time.","cloud","slab","dns","cloudslab","dns","that","must","be","in","the","allowlist","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","disk","count","count","of","manag","disk","in","the","subscription.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","enabl","featur","detail","of","featur","enabl","for","the","subscription.","id","id","of","the","hierarchi","object.","is","protect","whether","the","subscript","is","protect","for","the","specifi","last","refresh","at","last","refresh","time","of","the","subscription,","in","utc","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","spec","list","of","azur","region","specif","associ","with","the","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snappabl","type","to","backup","setup","spec","a","list","of","map","between","object","type","and","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","tenant","id","tenant","id","associ","with","the","subscription.","vms","count","count","of","virtual","machin","(vms)","in","the","subscription."],["azur","nativ","subscript","connect","count","total","number","of","azurenativesubscript","object","match","the","request"],["azur","nativ","virtual","machin","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","attach","manag","disk","list","of","manag","disk","attach","to","the","azur","attach","spec","sequenc","of","attach","spec","for","the","virtual","machin","author","oper","the","author","oper","on","the","object.","avail","set","nativ","id","nativ","id","of","the","avail","set","associ","with","avail","zone","avail","zone","associ","with","the","virtual","machin","(vm).","azur","nativ","resourc","group","and","subscript","detail","azur","nativ","resourc","group","and","subscript","details.","azur","resourc","group","resourc","group","of","the","azur","virtual","machin","(vm).","azur","resourc","group","detail","azur","nativ","resourc","group","and","subscript","details.","cloud","nativ","id","nativ","id","of","the","the","virtual","machin","(vm).","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","file","index","status","specifi","the","file","index","status","for","this","virtual","host","info","rubrik","cdm","host","inform","for","the","azur","virtual","id","id","of","the","hierarchi","object.","is","acceler","network","enabl","specifi","whether","acceler","network","is","enabl","on","the","is","ade","enabl","specifi","whether","azur","disk","encrypt","(ade)","exist","on","is","app","consist","enabl","specifi","whether","applic","consist","snapshot","are","enabl","for","is","exocomput","configur","specifi","whether","exocomput","is","configur","for","the","region","is","file","index","enabl","specifi","whether","file","index","is","enabl","for","this","is","pre","or","post","script","enabl","specifi","whether","pre-script","or","post-script","framework","is","enabl","is","protect","specifi","whether","the","virtual","machin","is","protectable.","when","is","relic","specifi","whether","the","virtual","machin","is","a","relic","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","azur","nativ","name","of","the","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","os","type","type","of","the","oper","system","(os)","instal","on","physic","path","sequenti","list","of","the","physic","ancestor","of","this","privat","ip","privat","ip","address","of","the","virtual","machine.","recoveri","plan","info","list","of","recoveri","plan","associ","with","the","virtual","region","azur","region","where","the","virtual","machin","(vm)","is","resourc","group","resourc","group","of","the","azur","virtual","machin","(vm).","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","size","type","size","type","of","the","virtual","machin","(vm).","for","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","subnet","name","name","of","the","subnet","associ","with","the","virtual","tag","list","of","tag","associ","with","the","virtual","machin","virtua","machin","nativ","id","nativ","id","of","the","the","virtual","machin","(vm).","vm","app","consist","spec","virtual","machin","applic","consist","specif","of","the","virtual","machin","(vm).","vm","name","virtual","machin","name","of","the","virtual","machin","(vm).","vnet","name","name","of","the","virtual","network","(vnet)","associ","with","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["azur","nativ","virtual","machin","connect","count","total","number","of","azurenativevirtualmachin","object","match","the","request"],["azur","nativ","virtual","network","name","name","of","the","virtual","network","(vnet).","resourc","group","name","name","of","the","resourc","group","associ","with","the"],["azur","network","secur","group","resp","reason","the","reason.","rule","status","the","network","secur","rule","status."],["azur","network","subnet","resp","valid","indic","whether","the","subnet","is","valid."],["azur","network","subnet","unus","addr","resp","unus","addr","the","number","of","unus","addresses."],["azur","oauth","consent","kickoff","repli","app","client","id","the","app","client","id.","csrf","token","the","csrf","token.","gov","app","client","id","the","govern","app","client","id."],["azur","postgr","flexibl","server","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","avail","zone","avail","zone","in","which","the","azur","postgr","flexibl","azur","nativ","resourc","group","resourc","group","of","the","azur","postgr","flexibl","server.","azur","resourc","group","detail","azur","nativ","resourc","group","and","subscript","details.","backup","retent","day","number","of","day","that","backup","are","retain","for","cloud","nativ","id","nativ","id","of","the","azur","postgr","flexibl","server.","comput","size","name","of","the","comput","sku","assign","to","the","comput","tier","comput","tier","of","the","azur","postgr","flexibl","server.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","data","encrypt","type","data","encrypt","type","of","the","azur","postgr","flexibl","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","engin","version","postgresql","engin","major","version","of","the","azur","postgr","ha","mode","high","avail","mode","of","the","azur","postgr","flexibl","hostnam","fulli","qualifi","domain","name","of","the","azur","postgr","id","id","of","the","hierarchi","object.","is","exocomput","configur","specifi","whether","exocomput","is","configur","for","the","region","is","protect","specifi","whether","the","azur","postgr","flexibl","server","is","is","public","network","access","specifi","whether","the","azur","postgr","flexibl","server","accept","is","relic","specifi","whether","the","azur","postgr","flexibl","server","is","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","name","of","the","azur","postgr","flexibl","server.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","azur","region","where","the","azur","postgr","flexibl","server","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sku","tier","comput","tier","of","the","azur","postgr","flexibl","server.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","storag","size","gb","storag","size","alloc","to","the","azur","postgr","flexibl","tag","list","of","tag","associ","with","the","azur","postgr","v","core","count","number","of","vcore","alloc","to","the","azur","postgr","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["azur","postgr","flexibl","server","connect","count","total","number","of","azurepostgresflexibleserv","object","match","the","request"],["azur","region","resp","region"],["azur","resourc","avail","resp","avail","indic","whether","the","resourc","is","available.","reason","the","reason","for","resourc","unavailability."],["azur","resourc","group","name","the","name","of","the","resourc","group.","nativ","id","the","nativ","id","of","the","resourc","group.","region","the","region","name","of","the","resourc","group.","example:","tag","the","tag","present","in","the","resourc","group."],["azur","resourc","group","info","region","the","region","of","the","resourc","group.","resourc","group","name","the","name","of","the","resourc","group.","subscript","nativ","id","the","nativ","id","of","the","azur","subscription.","tag","the","tag","on","the","resourc","group."],["azur","role","base","account","cloud","account","id","the","id","of","this","cloud","account.","cloud","provid","the","type","of","this","cloud","provider.","connect","status","the","connect","status","of","this","cloud","account.","descript","the","descript","of","this","cloud","account.","name","the","name","of","this","cloud","account.","subscript","with","featur","the","subscript","info","with","featur","details."],["azur","sql","databas","db","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","azur","sql","databas","server","azur","sql","databas","server","of","the","azur","sql","backup","setup","spec","detail","of","the","setup","for","perform","backup","of","backup","setup","status","specifi","the","status","of","the","setup","for","take","backup","storag","redund","type","of","backup","storag","redundancy.","examples:","lrs,","zrs,","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","databas","name","name","of","the","azur","sql","database.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","elast","pool","name","name","of","the","elast","pool","in","which","the","exocomput","configur","specifi","whether","exocomput","is","configur","for","the","database.","id","id","of","the","hierarchi","object.","is","elig","for","persist","backup","specifi","whether","the","databas","is","elig","for","immut","is","relic","specifi","whether","the","azur","sql","databas","is","a","logic","path","sequenti","list","of","the","logic","ancestor","of","this","maximum","size","in","byte","maximum","size","of","the","azur","sql","database,","in","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","persist","storag","persist","storag","configur","for","store","backups.","none","repres","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","azur","region","where","the","azur","sql","databas","is","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","servic","object","name","specifi","the","servic","object","name","of","the","azur","servic","tier","servic","tier","associ","with","the","azur","sql","database.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","tag","list","of","tag","associ","with","the","azur","sql","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["azur","sql","databas","db","connect","count","total","number","of","azuresqldatabasedb","object","match","the","request"],["azur","sql","databas","server","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","azur","nativ","resourc","group","resourc","group","of","the","azur","sql","databas","server.","azur","nativ","resourc","group","and","subscript","detail","azur","nativ","resourc","group","and","subscript","details.","azur","resourc","group","resourc","group","of","the","azur","object.","azur","resourc","group","detail","azur","nativ","resourc","group","and","subscript","details.","backup","setup","sourc","object","the","object","from","where","the","setup","for","perform","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","protect","specifi","whether","the","sql","databas","server","is","protectable.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","azur","region","where","the","azur","sql","databas","server","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","server","name","name","of","the","azur","sql","databas","server.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","tag","list","of","tag","associ","with","the","azur","sql"],["azur","sql","databas","server","connect","count","total","number","of","azuresqldatabaseserv","object","match","the","request"],["azur","sql","databas","server","elast","pool","name","name","of","the","elast","pool."],["azur","sql","manag","instanc","databas","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","azur","sql","manag","instanc","server","azur","sql","manag","instanc","server","of","the","azur","backup","setup","spec","detail","of","the","setup","for","perform","backup","of","backup","setup","status","specifi","the","status","of","the","setup","for","take","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","databas","name","name","of","the","azur","sql","manag","instanc","database.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exocomput","configur","specifi","whether","exocomput","is","configur","for","the","database.","id","id","of","the","hierarchi","object.","is","relic","specifi","whether","the","azur","sql","databas","is","a","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","persist","storag","persist","storag","configur","for","store","backups.","none","repres","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","azur","region","where","the","azur","sql","manag","instanc","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["azur","sql","manag","instanc","databas","connect","count","total","number","of","azuresqlmanagedinstancedatabas","object","match","the","request"],["azur","sql","manag","instanc","server","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","auth","type","the","type","of","authent","for","log","into","the","author","oper","the","author","oper","on","the","object.","azur","nativ","resourc","group","resourc","group","of","the","azur","sql","manag","instanc","azur","nativ","resourc","group","and","subscript","detail","azur","nativ","resourc","group","and","subscript","details.","azur","resourc","group","resourc","group","of","the","azur","object.","azur","resourc","group","detail","azur","nativ","resourc","group","and","subscript","details.","backup","setup","sourc","object","the","object","from","where","the","setup","for","perform","backup","storag","redund","type","of","backup","storag","redundancy.","examples:","lrs,","zrs,","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","encrypt","type","the","type","of","encrypt","use","by","the","server.","id","id","of","the","hierarchi","object.","instanc","pool","name","name","of","the","instanc","pool","the","azur","sql","is","protect","specifi","whether","the","sql","manag","instanc","server","is","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","azur","region","where","the","azur","sql","manag","instanc","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","server","name","name","of","the","azur","sql","manag","instanc","server.","servic","tier","servic","tier","associ","with","the","azur","sql","manag","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","storag","size","gib","storag","size","of","the","azur","sql","manag","instanc","subnet","name","name","of","the","subnet","associ","with","the","azur","tag","list","of","tag","associ","with","the","azur","sql","v","core","count","count","of","the","vcore","in","the","azur","sql","vnet","name","name","of","the","virtual","network","associ","with","the"],["azur","sql","manag","instanc","server","connect","count","total","number","of","azuresqlmanagedinstanceserv","object","match","the","request"],["azur","storag","account","access","tier","the","access","tier","of","the","storag","account.","account","kind","the","storag","account","type.","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","azur","nativ","resourc","group","and","subscript","detail","azur","nativ","resourc","group","and","subscript","details.","azur","resourc","group","resourc","group","of","the","azur","storag","account.","azur","resourc","group","detail","azur","nativ","resourc","group","and","subscript","details.","cloud","nativ","id","nativ","id","of","the","storag","account.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","hierarch","namespac","enabl","specifi","whether","hierarch","namespac","is","enabl","for","the","is","protect","specifi","whether","the","storag","account","is","protectable.","when","is","relic","specifi","whether","the","storag","account","is","a","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","nativ","name","of","the","storag","account.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","contain","the","number","of","contain","in","the","storag","account.","num","exclud","contain","the","number","of","contain","exclud","from","protect","by","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","region","where","the","storag","account","is","located.","resourc","group","resourc","group","of","the","azur","storag","account.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","tag","tag","attach","to","the","storag","account.","use","capac","byte","the","use","capac","byte","of","the","storag","account.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["azur","storag","account","ccprovis","name","azur","storag","account","name.","resourc","group","azur","storag","account","resourc","group."],["azur","subscript","id","the","subscript","id.","name","the","subscript","name."],["azur","subscript","connect","count","total","number","of","azuresubscript","object","match","the","request"],["azur","subscript","miss","permiss","miss","permiss","list","of","miss","permissions.","subscript","nativ","id","nativ","id","of","the","subscription."],["azur","subscript","with","exocomput","map","id","azur","subscript","cloud","account","id.","map","exocomput","subscript","map","exocomput","azur","subscript","details.","name","azur","subscript","nativ","name.","nativ","id","azur","subscript","nativ","id."],["azur","subscript","with","featur","type","cloud","type","cloud","type","of","the","azur","subscription.","custom","tenant","id","azur","tenant","id.","featur","detail","featur","detail","for","the","cloud","account.","id","azur","subscript","cloud","account","id.","manag","group","manag","group","of","the","azur","subscription.","name","azur","subscript","nativ","name.","nativ","id","azur","subscript","nativ","id."],["azur","user","role","resp","global","administr","the","global","administr","role","status.","subscript","owner","the","subscript","owner","role","status."],["backup","dev","op","repositori","repli","error","messag","error","messag","if","the","backup","oper","failed.","taskchain","id","taskchain","id","for","the","backup","operation."],["backup","throttl","set","cluster","detail","of","a","cluster.","enabl","throttl","backup","throttl","is","enabl","when","it","true.","vmware","throttl","set","backup","throttl","set","relat","to","vmware."],["batch","async","job","status","error","list","of","map","of","rubrik","object","id","to","job","id","list","of","map","of","rubrik","object","id","to"],["batch","async","request","status","respons","required.","support","in","v5.0+","the","asynchron","request","status"],["batch","export","hyperv","vm","repli","virtual","machin","fail","request","required.","support","in","v7.0+","array","of","object","contain","success","request","required.","support","in","v7.0+","array","of","object","contain"],["batch","export","nutanix","vm","repli","virtual","machin","output","async","api","respons","contain","success","and","fail","request"],["batch","instant","recov","hyperv","vm","repli","virtual","machin","fail","request","required.","support","in","v7.0+","array","of","object","contain","success","request","required.","support","in","v7.0+","array","of","object","contain"],["batch","mount","hyperv","vm","repli","virtual","machin","fail","request","required.","support","in","v7.0+","array","of","object","contain","success","request","required.","support","in","v7.0+","array","of","object","contain"],["batch","mount","nutanix","vm","repli","virtual","machin","output","async","api","respons","contain","success","and","fail","request"],["batch","on","demand","backup","hyperv","vm","repli","virtual","machin","fail","request","required.","support","in","v9.0+","array","of","object","contain","success","request","required.","support","in","v9.0+","array","of","object","contain"],["batch","quarantin","snapshot","repli","is","batch","quarantin","success","boolean","which","signifi","whether","the","oper","is","successful."],["batch","releas","from","quarantin","snapshot","repli","is","batch","releas","from","quarantin","success","boolean","which","signifi","whether","the","oper","is","successful."],["batch","trigger","exocomput","health","check","repli","fail","config","id","list","of","exocomput","configur","id","for","the","fail","health","check","job","id","list","of","id","for","the","exocomput","health","check"],["batch","vmware","cdp","live","info","respons","required.","support","in","v5.1+","the","live","cdp","info"],["batch","vmware","vm","recover","rang","virtual","machin","respons","required.","support","in","v5.3+","the","recover","rang","for"],["begin","manag","volum","snapshot","repli","async","request","status","support","in","v7.0+","status","of","the","asynchron","request","owner","id","support","in","v7.0+","an","id","repres","the","owner","rsc","snapshot","id","rsc","snapshot","id","of","the","snapshot","that","will","snapshot","id","required.","support","in","v7.0+","id","of","the","snapshot."],["blob","contain","last","modifi","time","last","modifi","time","of","contain","in","azure.","name","name","of","the","container."],["blob","contain","connect","count","total","number","of","blobcontain","object","match","the","request"],["bootstrapp","node","info","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["brows","mssql","databas","snapshot","repli","item","required.","support","in","v5.2+","a","list","of","snapshot"],["brows","respons","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["bulk","add","nas","share","repli","nas","share","detail","required.","support","in","v8.1+","detail","of","add","nas","nas","sourc","id","required.","support","in","v8.1+","the","manag","id","of","refresh","nas","share","status","required.","support","in","v8.1+","the","asynchron","request","status"],["bulk","creat","fileset","templat","repli","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["bulk","creat","fileset","repli","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["bulk","creat","nas","fileset","repli","fileset","detail","required.","support","in","v7.0+"],["bulk","delet","aw","cloud","account","without","cft","repli","delet","aw","cloud","account","without","cft","resp","delet","result","of","various","cloud","account","features."],["bulk","generat","fileset","backup","report","repli","snapshot","result","result","for","each","snapshot","that","was","processed.","each"],["bulk","on","demand","snapshot","nutanix","vm","repli","virtual","machin","output","list","of","async","respons","for","createsnapshotjob."],["bulk","refresh","host","repli","data","detail","of","the","refresh","hosts."],["bulk","regist","host","async","repli","output","respons","for","the","oper","that","regist","host","in"],["bulk","regist","host","repli","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["bulk","regist","secondari","host","repli","host","result","result","for","each","host","that","was","processed."],["bulk","updat","fileset","templat","repli","output"],["bulk","updat","host","repli","output"],["bulk","updat","mssql","avail","group","repli","item","detail","of","the","updat","microsoft","sql","server","avail"],["bulk","updat","mssql","dbs","repli","item","detail","of","the","updat","sql","server","databases."],["bulk","updat","mssql","instanc","repli","item","detail","of","the","updat","microsoft","sql","server","instances."],["bulk","updat","mssql","properti","on","host","repli","item","detail","of","the","microsoft","sql","server","instanc","in"],["bulk","updat","mssql","properti","on","window","cluster","repli","item","input","for","updat","multipl","microsoft","sql","server","instanc"],["bulk","updat","nas","share","repli","refresh","nas","share","status","required.","support","in","v8.1+","the","asynchron","request","status","share","detail","required.","support","in","v8.1+","detail","of","updat","nas"],["bulk","updat","oracl","databas","repli","respons","required.","support","in","v5.2+","an","array","that","contain"],["bulk","updat","oracl","host","repli","respons","required.","support","in","v5.2+","an","array","that","contain"],["bulk","updat","oracl","rac","repli","respons","required.","support","in","v5.2+","an","array","that","contain"],["bulk","updat","support","tunnel","repli","error","messag","the","error","messag","if","the","oper","failed.","success","whether","the","oper","was","successful."],["cancel","job","repli","messag","cancel","message.","status","status","of","cancel","request."],["cap","set","data","current","set","json","full","cap","configur","as","a","json","string."],["cassandra","column","famili","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","backup","count","number","of","backup","for","the","column","family.","backup","param","backup","param","of","the","source.","cluster","mosaic","cluster","information.","cluster","uuid","uuid","of","the","mosaic","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","the","sourc","object","id.","is","relic","is","the","sourc","object","a","relic.","keyspac","parent","keyspac","connection.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","protect","date","date","that","effect","sla","was","assign","/","inherited.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","bys","groupbi","connect","for","the","snapshot","of","this","workload.","all","snapshot","group","bys","group","by","info","snapshot","snapshot","the","list","of","snapshot","taken","for","this","workload.","cluster","uuid","db","info","expir","time","id","job","durat","sla","domain","snapshot","type","version","version","state","workload","id","sourc","parent","sourc","connection."],["cassandra","column","famili","connect","count","total","number","of","cassandracolumnfamili","object","match","the","request"],["cassandra","keyspac","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","backup","count","the","backup","count.","backup","param","backup","param","of","the","source.","cluster","mosaic","cluster","information.","cluster","uuid","uuid","of","the","mosaic","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","descend","connect","list","of","descendants.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","is","the","keyspac","a","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","child","connect","list","of","physic","children.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","sourc","parent","sourc","connection.","watcher","enabl","watcher","status","of","the","keyspace."],["cassandra","keyspac","connect","count","total","number","of","cassandrakeyspac","object","match","the","request"],["cassandra","sourc","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","backup","count","number","of","backup","for","the","source.","backup","param","backup","param","of","the","source.","cluster","mosaic","cluster","information.","cluster","uuid","uuid","of","the","mosaic","cluster.","config","param","configur","param","of","the","source.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","descend","connect","list","of","descendants.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","is","the","sourc","object","a","relic.","last","refresh","time","the","last","time","the","sourc","was","refreshed.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","node","count","number","of","sourc","nodes.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","child","connect","list","of","physic","children.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","size","data","size","of","source.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","sourc","ip","ip","of","the","source.","status","sourc","connect","status.","watcher","enabl","watcher","status","of","the","source."],["cassandra","sourc","connect","count","total","number","of","cassandrasourc","object","match","the","request"],["cc","provis","job","repli","job","id","job","id","of","the","submit","job.","messag","detail","of","submit","job","includ","job","name","and","success","indic","if","the","oper","was","a","success","or"],["cc","provis","metadata","repli","cluster","name","name","of","the","cluster.","cluster","op","cdm","job","id","id","of","the","relat","cdm","job.","cluster","type","type","of","cluster.","cluster","uuid","uuid","of","the","cluster.","internal","timestamp","internal","timestamp","of","the","job.","job","type","type","of","job.","marshal","config","job","configur","in","json","format.","node","to","replac","node","to","be","replac","(for","node","replac","jobs).","progress","progress","of","the","job","in","percent.","status","current","status","of","the","job.","status","messag","detail","status","message.","tpr","request","id","tpr","request","id.","vendor","cloud","vendor","provider."],["cdm","guest","credenti","cluster","detail","of","a","cluster.","detail","detail","of","the","guest","credential."],["cdm","hierarchi","object","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["cdm","hierarchi","object","connect","count","total","number","of","cdmhierarchyobject","object","match","the","request"],["cdm","hierarchi","snappabl","new","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","cdm","id","the","id","of","the","workload","on","the","rubrik","cdm","link","a","link","to","view","the","workload","on","the","cluster","the","cluster","from","which","this","workload","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info"],["cdm","inventori","sub","hierarchi","root","child","connect","list","of","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","root","enum","top","level","descend","connect","list","of","top-level","descend","(with","respect","to","rbac).","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut"],["cdm","manag","aw","target","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","immut","set","immut","set","of","the","aw","archiv","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","region","region","of","the","aw","location.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","storag","class","storag","class","of","the","aw","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["cdm","manag","azur","target","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","immut","set","immut","set","of","the","azur","archiv","target.","instanc","type","instanc","type","of","the","azur","location.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","azur","tier","support","specifi","whether","azur","archiv","tier","is","support","or","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["cdm","manag","dca","target","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","region","region","of","the","dca","location.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["cdm","manag","gcp","target","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","immut","set","immut","set","of","the","gcp","archiv","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","region","region","of","the","gcp","location.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["cdm","manag","glacier","target","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","region","region","of","the","glacier","location.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["cdm","manag","lck","target","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","region","region","of","the","lck","location.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["cdm","manag","nfs","target","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","fail","task","number","of","archiv","task","fail","on","this","target.","host","host","of","the","nfs","location.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["cdm","manag","3","compat","target","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","endpoint","host","of","the","s3-compat","location.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["cdm","manag","tape","target","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","fail","task","number","of","archiv","task","fail","on","this","target.","host","name","host","name","of","the","tape","location.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["cdm","ova","detail","cdm","version","rubrik","cdm","releas","version","of","the","cdm","ova.","ova","download","link","aw","s3","link","where","the","rubrik","cdm","ova","ova","size","size","of","the","rubrik","cdm","ova","file."],["cdm","snapshot","activ","directori","app","metadata","activ","directori","specif","metadata","for","the","snapshot.","null","aggreg","snapshot","locat","detail","aggreg","snapshot","locat","detail,","if","set.","archiv","locat","archiv","locat","where","the","snapshot","is","present.","cdm","id","the","cdm","internal","id.","cdm","version","the","cdm","version.","cdm","workload","snapshot","snapshot","of","a","rubrik","cdm","workload.","child","snapshot","children","snapshot","id","list.","cloud","nativ","locat","cloud-nat","locat","where","the","snapshot","is","present.","cloud","state","cloud","state","of","the","snapshot.","cluster","the","rubrik","cluster","that","own","the","snapshot.","consist","level","consist","level","of","the","snapshot.","date","creation","time","of","the","snapshot.","db","2","app","metadata","db2","specif","metadata","for","the","snapshot.","expir","date","expir","date","of","the","snapshot,","if","set.","expiri","hint","whether","the","snapshot","use","an","expiri","hint.","file","count","number","of","file","in","the","snapshot.","has","delta","whether","the","snapshot","has","increment","delta","changes.","hyperv","virtual","machin","app","metadata","hyper-v","virtual","machine-specif","metadata.","null","if","the","snapshot","id","uniqu","identifi","for","this","snapshot.","index","attempt","number","of","index","attempts.","is","anomali","flag","if","the","snapshot","is","an","anomaly.","is","corrupt","whether","the","snapshot","is","corrupted.","is","custom","retent","appli","whether","custom","retent","is","applied.","is","download","snapshot","whether","the","snapshot","was","downloaded.","is","expir","specifi","whether","or","not","the","snapshot","is","expired.","is","index","whether","the","snapshot","is","indexed.","is","on","demand","snapshot","whether","the","snapshot","is","on","demand.","is","quarantin","process","specifi","whether","rsc","is","process","the","snapshot","to","is","quarantin","specifi","whether","the","snapshot","is","quarantined.","is","retent","lock","whether","the","snapshot","is","retent","locked.","is","sap","hana","increment","snapshot","whether","the","snapshot","is","a","sap","hana","increment","is","threat","analysi","complet","specifi","whether","a","threat","analysi","has","been","complet","is","threat","detect","specifi","whether","a","threat","has","been","detect","for","is","unindex","whether","the","snapshot","is","unindexable.","k","8","s","app","metadata","k8s","specif","metadata","for","the","snapshot.","k","8","s","resourc","summari","compact","summari","of","the","kubernet","resourc","captur","in","latest","user","note","latest","user","note","information.","legal","hold","info","legal","hold","info,","if","set.","local","locat","local","cluster","locat","where","the","snapshot","is","present.","locat","all","locat","where","the","snapshot","is","present.","manag","volum","app","metadata","manag","volum","specif","metadata","for","the","snapshot.","null","mongo","sourc","app","metadata","mongo","sourc","specif","metadata","for","the","snapshot.","mssql","app","metadata","mssql","specif","metadata","for","the","snapshot.","mysqldb","instanc","app","metadata","mysql","instance-specif","metadata.","null","if","the","snapshot","is","mysqldb","instanc","app","metadata","2","mysql","instance-specif","extend","metadata","with","version","and","databas","parent","snapshot","id","the","id","of","the","parent","snapshot.","pend","sla","non-nul","when","a","user","has","assign","a","sla","pend","snapshot","delet","map","from","snapshot","to","delet","pend","action","status.","ping","feder","app","metadata","pingfederate-specif","metadata","for","the","snapshot.","null","if","the","postgr","db","cluster","app","metadata","postgresql","databas","cluster-specif","metadata.","null","if","the","snapshot","replic","locat","replic","locat","where","the","snapshot","is","present.","resourc","spec","resourc","spec","json,","if","present.","retent","lock","mode","across","locat","retent","lock","mode","across","locations.","sap","hana","app","metadata","sap","hana","specif","metadata","for","the","snapshot.","sla","domain","sla","domain","of","the","snapshot.","snappabl","id","the","workload","id","of","the","snapshot.","snappabl","new","the","workload","this","snapshot","belong","to.","snapshot","retent","info","snapshot","retent","info,","if","set.","sub","obj","sub","object","for","the","snapshot.","vapp","app","metadata","vmware","vapp","specif","snapshot","metadata.","vmware","app","metadata","vmware","specif","metadata","for","the","snapshot."],["cdm","target","cdm","id","id","of","the","cdm","target.","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["cdm","upgrad","avail","repli","is","avail","upgrad","avail","flag.","status","avail","request","status."],["cdm","upgrad","recommend","repli","is","recommend","upgrad","recommend","flag.","status","status","of","recommend","request."],["cdm","upgrad","releas","detail","from","support","portal","repli","compat","matrix","link","link","to","cdm","upgrad","matrix.","releas","detail","list","of","cdm","releas","detail","object.","support","softwar","link","support","portal","link."],["cdp","vm","info","virtual","machin","cdp","local","status","local","status.","cdp","replic","status","replic","status.","io","filter","status","io","filter","instal","status.","latest","snapshot","time","latest","snapshot","time.","replic","target","replic","cluster","name.","sla","domain","name","sla","domain","id.","sourc","cluster","sourc","cluster","name.","vm","id","virtual","machin","id.","vm","locat","virtual","machin","vcenter","address.","vm","name","virtual","machin","name."],["cdp","vm","info","connect","virtual","machin","count","total","number","of","cdpvminfo","object","match","the","request"],["certif","certif","the","certif","in","raw","pem","format.","certif","id","the","id","of","the","certificate.","descript","the","descript","of","the","certificate.","expir","at","the","expir","date","of","the","certificate.","has","key","specifi","whether","the","certif","has","a","privat","key.","name","the","name","of","the","certificate.","use","by","the","list","of","servic","use","this","certificate."],["certif","connect","count","total","number","of","certif","object","match","the","request"],["certif","summari","list","respons","data","support","in","v5.1+","list","of","match","objects.","has","more","support","in","v5.1+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.1+","total","list","responses."],["chang","vfd","on","host","repli","output"],["check","archiv","snapshot","lock","repli","invalid","snapshot","id","snapshot","id","are","not","valid","for","check","if","lock","snapshot","id","snapshot","id","for","which","the","archiv","copi","is","unlock","snapshot","id","snapshot","id","for","which","the","archiv","copi","is"],["check","aw","marketplac","subscript","repli","is","subscrib","whether","the","user","is","subscrib","to","the","marketplac","marketplac","term","link","aw","marketplac","term","link","for","subscription.","messag","addit","messag","with","details.","product","code","aw","marketplac","product","code."],["check","azur","marketplac","term","repli","marketplac","sku","azur","marketplac","sku/plan.","marketplac","term","link","marketplac","term","link.","messag","addit","message.","offer","offer","name.","publish","publish","name.","term","accept","whether","the","marketplac","term","are","accepted."],["check","azur","persist","storag","subscript","can","unmap","repli","can","unmap","whether","we","can","unmap","archiv","locat","from","subscription."],["check","cluster","ru","support","repli","cluster","unsupport","workload","state","classif","of","the","rubrik","cluster","ru-unsupport","workload","and","cluster","uuid","cluster","uuid.","is","ru","support","whether","the","cluster","support","roll","upgrad","(ru).","fals","ru","unsupport","reason","reason","whi","the","cluster","doe","not","support","roll","unsupport","workload","one","entri","per","ru-unsupport","workload","type","present","on"],["check","latest","version","mgmt","app","exist","repli","latest","mgmt","app","exist","boolean","which","specifi","whether","the","latest","version","of"],["classifi","asset","count","asset","count","the","count","of","asset","for","each","platform","category.","total","asset","count","total","number","of","classifi","assets."],["classif","polici","detail","analyz","assign","resourc","connect","on","assignmentresourcedetails.","is","higher","level","resourc","resourc","id","resourc","name","resourc","type","color","enum","creat","time","creator","data","categori","result","data","categori","classif","result.","delet","descript","document","type","document","type","associ","with","the","policy.","hierarchi","object","connect","connect","on","hierarchi","objects.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","hierarchi","object","id","hierarchi","object","id","is","inact","data","categori","is","inact","or","not.","last","updat","time","mode","name","num","analyz","object","status","total","object","whitelist"],["classif","polici","detail","connect","count","total","number","of","classificationpolicydetail","object","match","the","request"],["cleanup","recoveri","repli","batch","cleanup","resp","list","of","clean","up","respons","for","each","recovery."],["clear","cloud","nativ","sql","server","backup","credenti","repli","fail","object","id","object","id","for","which","credenti","fail","to","be","success","object","id","object","id","for","which","credenti","were","clear","successfully."],["clear","host","rbs","network","limit","repli","fail","network","throttl","host","host","that","fail","to","clear","their","rbs","network"],["closest","snapshot","search","result","error","an","error","that","occur","dure","the","search.","snappabl","id","the","workload","id.","snapshot","the","snapshot","closest","to","the","point","in","time."],["cloud","account","cloud","account","id","the","id","of","this","cloud","account.","cloud","provid","the","type","of","this","cloud","provider.","connect","status","the","connect","status","of","this","cloud","account.","descript","the","descript","of","this","cloud","account.","name","the","name","of","this","cloud","account."],["cloud","account","featur","permiss","cloud","account","id","cloud","account","id.","featur","permiss","featur","permissions."],["cloud","account","info","account","id","id","of","the","cloud","account.","account","name","name","of","the","account.","cloud","platform","platform","of","the","account."],["cloud","account","with","exocomput","map","applic","account","cloud","account","details.","exocomput","account","map","exocomput","account","details.","exocomput","mappabl","region","aw","region","that","have","protect","objects.","has","cloud","discoveri","indic","whether","cloud","discoveri","is","enabl","for","this"],["cloud","account","exocomput","account","map","applic","cloud","account","id","repres","the","applic","account","of","the","mapping.","exocomput","cloud","account","id","repres","the","exocomput","account","to","which","the","applic"],["cloud","account","get","list","filter","repli","filter","valu","avail","filter","valu","group","by","filter","type."],["cloud","direct","add","subdir","backup","repli","warn","list","of","exclus","warnings."],["cloud","direct","check","share","path","resp","is","access","whether","this","export","is","access"],["cloud","direct","event","seri","task","report","repli","file","id","extern","id","of","the","generat","report","file","(for","is","success","whether","the","report","generat","was","successful.","messag","status","message."],["cloud","direct","global","search","result","entri","list","of","search","result","entries.","next","marker","pagin","marker","for","the","next","page","of","results.","total","count","total","count","of","results."],["cloud","direct","job","recent","error","report","repli","file","id","extern","id","of","the","generat","report","file","(for","is","success","whether","the","report","generat","was","successful.","messag","status","message."],["cloud","direct","nas","bucket","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","child","bucket","prefix","protect","entri","includ","in","this","bucket.","all","org","all","tag","author","oper","child","bucket","cloud","direct","id","cloud","direct","nas","namespac","cloud","direct","nas","system","cloud","direct","pend","object","paus","assign","cloud","direct","snapshot","group","by","summari","cluster","cluster","uuid","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","exclud","export","path","id","is","archiv","is","hidden","is","relic","is","stale","logic","path","miss","snapshot","group","by","connect","name","namespac","id","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","parent","bucket","pend","sla","physic","path","polici","name","protocol","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","system","id","target","total","snapshot","cloud","direct","id","uuid","of","the","nas","cloud","direct","bucket","on","cloud","direct","nas","namespac","the","nas","cloud","direct","namespac","to","which","this","cloud","direct","nas","system","the","nas","cloud","direct","system","to","which","this","cloud","direct","pend","object","paus","assign","object","paus","pend","assign","detail","for","cloud","direct","cloud","direct","snapshot","group","by","summari","group","the","snapshot","of","this","nas","cloud","direct","cloud","direct","snapshot","count","group","by","info","cluster","nas","cloud","direct","cluster","where","this","object","originated.","cluster","uuid","nas","cloud","direct","cluster","id.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exclud","list","of","exclus","for","the","nas","bucket.","export","path","nas","cloud","direct","bucket","path.","id","bucket","id.","is","archiv","specifi","whether","the","bucket","is","archived.","is","hidden","specifi","whether","the","bucket","is","hidden.","is","relic","specifi","whether","the","bucket","is","a","relic.","is","stale","specifi","whether","the","bucket","is","stale.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","group","by","connect","group","the","miss","snapshot","of","this","nas","cloud","cloud","direct","snapshot","count","group","by","info","name","name","of","the","hierarchi","object.","namespac","id","namespaceid","of","the","namespac","(if","any)","to","which","newest","snapshot","the","most","recent","snapshot","of","this","bucket.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","avail","snapshot","of","this","bucket.","on","demand","snapshot","the","count","of","on-demand","snapshot","for","this","bucket.","parent","bucket","the","parent","of","this","bucket.","pend","sla","sla","domain","assign","of","the","object","dure","communic","physic","path","sequenti","list","of","the","physic","ancestor","of","this","polici","name","name","of","the","polici","assign","to","the","nas","protocol","nas","cloud","direct","bucket","protocol.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","system","id","systemid","of","the","system","the","nas","cloud","direct","target","target","associ","with","the","backup","for","this","bucket.","total","snapshot","the","total","count","of","snapshot","for","this","bucket."],["cloud","direct","nas","bucket","connect","count","total","number","of","clouddirectnasbucket","object","match","the","request"],["cloud","direct","nas","export","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cloud","direct","id","id","of","the","cloud","direct","nas","workload.","cloud","direct","pend","object","paus","assign","object","paus","pend","assign","detail","for","cloud","direct","cluster","nas","cloud","direct","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","export","fid","cloud","direct","nas","export","fid.","export","path","cloud","direct","nas","export","path.","export","type","cloud","direct","nas","export","type.","id","id","of","the","hierarchi","object.","is","archiv","specifi","whether","the","export","has","been","deleted.","is","protect","specifi","whether","the","export","is","protected.","is","relic","specifi","whether","the","export","is","a","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","sla","sla","domain","assign","of","the","object","dure","communic","physic","path","sequenti","list","of","the","physic","ancestor","of","this","secur","metadata","secur","postur","metadata.","share","name","nas","share","name","deriv","from","the","export","path.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","system","name","nas","system","name","deriv","from","the","export","path."],["cloud","direct","nas","namespac","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cloud","direct","id","uuid","of","the","nas","cloud","direct","namespac","on","cloud","direct","nas","system","the","nas","cloud","direct","system","to","which","this","cloud","direct","pend","object","paus","assign","object","paus","pend","assign","detail","for","cloud","direct","cluster","nas","cloud","direct","cluster","where","this","object","originated.","cluster","uuid","nas","cloud","direct","cluster","id.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cloud","direct","pend","object","paus","assign","cluster","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","sla","physic","path","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","archiv","specifi","whether","the","namespac","is","archived.","is","hidden","specifi","whether","the","namespac","is","hidden.","is","stale","specifi","whether","the","namespac","is","stale.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cloud","direct","pend","object","paus","assign","cluster","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","sla","physic","path","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","namespac","name","name","of","the","namespace.","nfs","4","host","list","of","default","nfsv4","host","for","this","namespace.","nfs","host","list","of","default","nfs","host","for","this","namespace.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","count","total","number","of","object","in","this","nas","namespace.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","overrid","configur","overrid","for","this","namespace.","pend","sla","sla","domain","assign","of","the","object","dure","communic","physic","path","sequenti","list","of","the","physic","ancestor","of","this","protect","share","count","total","number","of","protect","share","in","this","nas","s","3","host","list","of","default","s3","host","for","this","namespace.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","smb","host","list","of","default","smb","host","for","this","namespace.","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","system","id","systemid","of","the","system","to","which","the","nas"],["cloud","direct","nas","namespac","connect","count","total","number","of","clouddirectnasnamespac","object","match","the","request"],["cloud","direct","nas","share","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","child","share","directori","protect","entri","includ","in","this","share.","all","org","all","tag","author","oper","child","share","cloud","direct","id","cloud","direct","nas","namespac","cloud","direct","nas","system","cloud","direct","pend","object","paus","assign","cloud","direct","snapshot","group","by","summari","cluster","cluster","uuid","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","exclud","export","path","full","snapshot","name","pattern","id","increment","snapshot","name","pattern","is","archiv","is","hidden","is","nas","share","manual","add","is","relic","is","stale","logic","path","miss","snapshot","group","by","connect","name","namespac","id","ncd","polici","name","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","parent","share","pend","sla","physic","path","polici","name","protocol","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","system","id","target","total","snapshot","cloud","direct","id","uuid","of","the","nas","cloud","direct","share","on","cloud","direct","nas","namespac","the","nas","cloud","direct","namespac","to","which","this","cloud","direct","nas","system","the","nas","cloud","direct","system","to","which","this","cloud","direct","pend","object","paus","assign","object","paus","pend","assign","detail","for","cloud","direct","cloud","direct","snapshot","group","by","summari","group","the","snapshot","of","this","nas","cloud","direct","cloud","direct","snapshot","count","group","by","info","cluster","nas","cloud","direct","cluster","where","this","object","originated.","cluster","uuid","nas","cloud","direct","cluster","id.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exclud","list","of","exclus","for","the","nas","share.","export","path","nas","cloud","direct","share","path.","full","snapshot","name","pattern","regex","pattern","for","match","full","snapshot","names.","id","share","id.","increment","snapshot","name","pattern","regex","pattern","for","match","increment","snapshot","names.","is","archiv","specifi","whether","the","share","is","archived.","is","hidden","specifi","whether","the","share","is","hidden.","is","nas","share","manual","add","specifi","whether","the","share","was","add","manual","by","is","relic","specifi","whether","the","share","is","a","relic.","is","stale","specifi","whether","the","share","is","stale.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","group","by","connect","group","the","miss","snapshot","of","this","nas","cloud","cloud","direct","snapshot","count","group","by","info","name","name","of","the","hierarchi","object.","namespac","id","namespaceid","of","the","namespac","(if","any)","to","which","ncd","polici","name","nas","cloud","direct","share","protect","the","polici","name.","newest","snapshot","the","most","recent","snapshot","of","this","share.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","avail","snapshot","of","this","share.","on","demand","snapshot","the","count","of","on-demand","snapshot","for","this","share.","parent","share","the","parent","of","this","share.","pend","sla","sla","domain","assign","of","the","object","dure","communic","physic","path","sequenti","list","of","the","physic","ancestor","of","this","polici","name","name","of","the","polici","assign","to","the","nas","protocol","nas","cloud","direct","share","protocol.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","system","id","systemid","of","the","system","the","nas","cloud","direct","target","target","associ","with","the","backup","for","this","share.","total","snapshot","the","total","count","of","snapshot","for","this","share."],["cloud","direct","nas","share","connect","count","total","number","of","clouddirectnasshar","object","match","the","request"],["cloud","direct","nas","system","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","api","version","api","version","of","the","system.","author","oper","the","author","oper","on","the","object.","cloud","direct","id","uuid","of","the","nas","cloud","direct","system","on","cloud","direct","pend","object","paus","assign","object","paus","pend","assign","detail","for","cloud","direct","cluster","nas","cloud","direct","cluster","where","this","object","originated.","cluster","uuid","nas","cloud","direct","cluster","id.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cloud","direct","pend","object","paus","assign","cluster","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","sla","physic","path","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","archiv","specifi","whether","the","system","has","been","deleted.","is","relic","specifi","whether","the","system","is","a","relic.","last","refresh","time","timestamp","of","the","last","refresh.","last","status","last","connect","status","of","the","system.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cloud","direct","pend","object","paus","assign","cluster","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","sla","physic","path","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","manag","info","manag","inform","for","this","system.","name","name","of","the","hierarchi","object.","namespac","count","total","number","of","namespac","in","this","nas","system.","nfs","4","host","list","of","default","nfsv4","host","for","this","system.","nfs","host","list","of","default","nfs","host","for","this","system.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","count","total","number","of","object","in","this","nas","system.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","os","version","os","version","run","of","the","system.","overrid","configur","overrid","for","this","system.","pend","sla","sla","domain","assign","of","the","object","dure","communic","physic","path","sequenti","list","of","the","physic","ancestor","of","this","protect","share","count","total","number","of","protect","share","in","this","nas","s","3","host","list","of","default","s3","host","for","this","system.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","smb","host","list","of","default","smb","host","for","this","system.","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","system","name","name","of","the","system.","vendor","type","vendor","type","of","the","system."],["cloud","direct","nas","system","connect","count","total","number","of","clouddirectnassystem","object","match","the","request"],["cloud","direct","set","global","smb","auth","repli","smb","user","set","whether","the","global","smb","user","is","set."],["cloud","direct","set","kerbero","enforc","config","repli","enforc","type","the","configur","enforc","type."],["cloud","direct","set","wan","throttl","set","repli","down","limit","in","byte","download","limit","in","byte","per","second.","enabl","whether","the","wan","throttl","is","enabled.","up","limit","in","byte","upload","limit","in","byte","per","second."],["cloud","direct","site","cluster","uuid","the","rubrik","cluster","uuid","for","the","site.","devic","detail","detail","about","the","devic","in","the","site.","endpoint","the","manag","endpoint","url","for","the","site.","id","the","internal","identifi","for","the","site.","name","the","display","name","for","the","site."],["cloud","direct","snapshot","cloud","direct","id","id","of","the","snapshot","on","the","nas","cloud","cluster","uuid","nas","cloud","direct","cluster","id.","complet","time","snapshot","completed.","date","timestamp","of","the","snapshot.","expir","date","date","the","snapshot","will","expire.","expiri","hint","specifi","whether","the","expir","hint","is","enabled.","id","object","id.","index","attempt","number","of","attempt","for","index","the","snapshot.","is","anomali","flag","if","the","snapshot","is","an","anomaly.","is","corrupt","specifi","whether","the","snapshot","is","corrupted.","is","custom","retent","appli","specifi","whether","the","snapshot","use","a","custom","retent","is","download","snapshot","specifi","whether","the","snapshot","was","downloaded.","is","expir","specifi","whether","or","not","the","snapshot","is","expired.","is","index","specifi","whether","the","snapshot","is","index","or","not.","is","on","demand","snapshot","specifi","if","the","snapshot","is","on-demand.","is","quarantin","process","specifi","whether","rsc","is","process","the","snapshot","to","is","quarantin","specifi","whether","the","snapshot","is","quarantined.","is","unindex","specifi","whether","the","snapshot","can","be","unindexed.","latest","user","note","latest","user","note","information.","object","nas","cloud","direct","object","(bucket","or","share)","to","pend","sla","specifi","that","the","sla","domain","assign","is","pend","polici","name","name","of","polici","assign","to","the","snapshot","in","protocol","protocol","of","the","nas","cloud","direct","snapshot.","sla","domain","sla","domain","of","the","snapshot.","snappabl","id","the","workload","id","of","the","snapshot.","snapshot","retent","info","snapshot","retention-rel","information.","state","state","of","snapshot","on","nas","cloud","direct.","summari","summari","of","statist","for","this","snapshot.","system","id","id","of","the","nas","cloud","direct","system.","target","the","name","of","the","target","associ","with","this","target","id","the","id","of","the","target","associ","with","this","type","type","of","snapshot","for","nas","cloud","direct.","user","exclus","detail","summari","of","user-defin","exclus","for","this","snapshot.","workload","id","rubrik","id","of","nas","cloud","direct","workload."],["cloud","direct","snapshot","connect","count","total","number","of","clouddirectsnapshot","object","match","the","request"],["cloud","direct","snapshot","exclus","exclus","list","of","exclus","for","the","snapshot."],["cloud","direct","system","rescan","repli","job","id","job","id","of","the","rescan","request."],["cloud","direct","system","system","name","of","cloud","direct","systems."],["cloud","direct","valid","share","path","resp","is","access","whether","the","path","is","accessible."],["cloud","direct","valid","subdir","repli","is","dir","indic","if","path","is","directory.","path","valid","subpath."],["cloud","nativ","check","rba","connect","repli","failur","list","of","vms","for","which","the","job","to","success","list","of","vms","for","which","the","job","to"],["cloud","nativ","custom","set","is","3","glacier","ir","tier","enabl","whether","s3","object","in","the","glacier","instant","retriev"],["cloud","nativ","custom","tag","repli","custom","tag","list","of","customer-specifi","tag","appli","to","all","resourc","exclud","tag","list","of","exclus","pattern","for","tag","filtering.","tag","should","overrid","resourc","tag","specifi","whether","customer-specifi","tag","should","overrid","resourc","tags."],["cloud","nativ","object","store","snapshot","regex","search","repli","data","list","of","object","version","match","the","search","criteria."],["cloud","nativ","snapshot","detail","for","recoveri","repli","snapshot","detail","detail","requir","for","file","recoveri","for","differ","snapshot"],["cloud","nativ","snapshot","type","detail","repli","snapshot","detail","detail","requir","for","differ","snapshot","types."],["cloud","nativ","sql","server","setup","script","logic","app","arm","templat","azur","resourc","manag","(arm)","templat","for","the","logic","script","content","of","the","script."],["cloud","nativ","version","file","absolut","path","absolut","path.","display","path","display","path.","file","version","file","versions.","filenam","file","name.","path","file","path."],["cloud","nativ","version","file","connect","count","total","number","of","cloudnativeversionedfil","object","match","the","request"],["cluster","activ","seri","connect","the","cluster","activ","series.","activ","connect","activ","seri","id","attempt","number","caus","error","code","caus","error","messag","caus","error","reason","caus","error","remedi","cluster","cluster","name","cluster","uuid","data","transfer","effect","throughput","failur","reason","fid","id","is","cancel","is","on","demand","is","polari","event","seri","is","transact","log","event","seri","last","activ","messag","last","activ","status","last","activ","type","last","event","add","at","last","updat","last","verifi","at","locat","logic","size","object","id","object","name","object","type","org","id","organiz","organiz","org","name","organiz","organiz","organiz","progress","sever","sla","domain","name","start","time","url","metadata","usernam","all","org","the","organiz","to","which","this","cluster","is","authorized.","author","oper","oper","that","the","user","is","author","to","perform","ccprovis","info","job","status","of","a","creat","cluster","operation.","cdm","cluster","node","detail","the","cdm","cluster","node","details.","cdm","notif","set","rubrik","cluster","email","notif","settings.","cdm","rbac","migrat","status","cdm","to","rsc","rbac","migrat","status","for","the","cdm","upgrad","info","cluster","upgrad","information.","cloud","info","cloud","inform","for","this","cluster.","cluster","disk","connect","the","cluster","disks.","capac","byte","cluster","id","disk","id","disk","mode","disk","type","has","indic","led","is","encrypt","is","resiz","led","status","manufactur","model","node","id","path","raid","error","raid","rebuild","percentag","raid","status","raid","type","serial","status","unalloc","byte","usabl","byte","cluster","node","connect","the","cluster","nodes.","brik","id","cluster","id","cpu","core","hardwar","health","hostnam","id","interfac","cidr","ip","address","need","inspect","network","speed","platform","type","posit","ram","role","status","sub","status","cluster","node","stat","the","node-level","perform","statist","of","a","rubrik","cluster.","config","protect","info","config","protect","information.","connect","last","updat","when","the","global","manag","connect","was","last","updated.","cyber","event","lockdown","mode","cyber","event","lockdown","mode","of","the","rubrik","cluster.","cyber","event","lockdown","support","case","detail","cyber","event","lockdown","support","case","details.","datagov","auto","enabl","polici","config","auto","enabl","sensit","data","discoveri","polici","configuration.","datagov","preview","config","sonar","preview","configuration.","default","address","the","cluster","default","ip","address.","default","port","the","cluster","default","port.","encrypt","enabl","whether","or","not","the","cluster","is","encrypted.","eo","date","end","of","support","date.","eo","status","end","of","support","status.","estim","runway","the","number","of","day","remain","befor","the","system","geo","locat","the","cluster","location.","global","manag","connect","status","the","cluster","global","manag","connect","status.","id","the","cluster","uuid.","ipmi","info","ipmi","inform","of","the","cluster.","is","air","gap","air-gap","status","of","the","rubrik","cluster.","is","assign","by","parent","account","whether","this","cluster","is","assign","by","a","parent","is","cluster","remov","tpr","enabl","specifi","whether","quorum","author","is","enabl","for","cluster","is","healthi","whether","or","not","the","cluster","is","healthy.","is","tpr","enabl","indic","if","tpr","is","enabl","on","the","cluster.","lambda","config","lambda","configuration.","lambda","featur","histori","lambda","featur","history.","last","connect","time","the","time","the","cluster","was","last","connected.","licens","product","the","licens","product","that","belong","to","this","cluster.","metadata","pull","schedul","metadata","pull","scheduler.","metric","the","most","recent","metric","of","a","cluster.","metric","time","seri","the","metric","time","seri","of","a","cluster.","metric","time","seri","new","the","metric","time","seri","of","a","cluster.","name","the","cluster","name.","no","sql","workload","count","total","number","of","protect","nosql","workloads.","pass","connect","check","whether","the","global","manag","connect","is","healthy.","paus","status","paus","status","of","the","cluster.","product","type","the","cluster","product","type","(e.g.,","cdm,","datos,","etc.).","raw","address","the","cluster","raw","address.","regist","mode","the","rubrik","cluster","regist","mode.","registr","time","the","time","the","cluster","was","registered.","replic","sourc","the","cluster","replic","sources.","replic","target","the","cluster","replic","targets.","rubrik","sync","status","this","field","list","job","that","sync","cdm","cluster","snappabl","connect","the","cluster","snappables.","archiv","complianc","status","archiv","snapshot","lag","archiv","snapshot","archiv","storag","await","first","full","cluster","complianc","status","data","reduct","fid","id","last","snapshot","last","snapshot","logic","byte","latest","archiv","snapshot","latest","replic","snapshot","local","effect","storag","local","meter","data","local","on","demand","snapshot","local","protect","data","local","sla","snapshot","local","snapshot","local","storag","locat","logic","byte","logic","data","reduct","miss","snapshot","name","ncd","latest","archiv","snapshot","ncd","polici","name","ncd","snapshot","type","object","state","object","type","org","id","organiz","organiz","org","name","organiz","organiz","physic","byte","protect","on","protect","status","provis","byte","pull","time","replica","snapshot","replica","storag","replic","complianc","status","replic","snapshot","lag","sla","domain","sourc","protocol","total","snapshot","transfer","byte","use","byte","workload","org","organiz","organiz","snapshot","count","the","total","number","of","snapshots.","state","the","cluster","state.","status","the","cluster","status.","status","from","db","the","cluster","status","from","the","database.","sub","status","the","cluster","sub","status.","system","status","system","status","of","the","cluster.","for","mosaic","cluster","system","status","affect","node","list","of","affect","node","in","the","cluster.","system","status","messag","human","readabl","messag","explain","the","systemstatus.","timezon","the","cluster","timezone.","type","the","cluster","type.","version","the","softwar","version.","web","server","certif","web","server","certif","of","the","cluster."],["cluster","connect","aggreg","cluster","health","aggreg","rubrik","cluster","health","inform","base","on","filter","aggreg","cluster","statist","aggreg","statist","across","cluster","with","respect","for","the","count","total","number","of","cluster","object","match","the","request"],["cluster","csr","csr","required.","support","in","v7.0+","certif","sign","request","generat"],["cluster","dns","repli","domain","list","of","dns","search","domains.","server","list","of","dns","name","servers."],["cluster","encrypt","info","can","user","manag","cluster","specifi","if","the","user","can","manag","the","cluster","cipher","the","encrypt","cipher.","cluster","product","type","the","product","type","of","the","rubrik","cluster.","encrypt","type","the","type","of","encrypt","use","by","the","rubrik","is","connect","specifi","if","the","rubrik","cluster","is","connected.","is","encrypt","specifi","if","the","rubrik","cluster","is","encrypted.","is","on","cloud","specifi","whether","the","rubrik","cluster","is","host","in","kmip","client","usernam","the","usernam","for","the","kmip","client","credentials.","latest","rotat","complet","info","the","latest","complet","key","rotat","on","the","rubrik","most","recent","rsc","request","the","most","recent","key","rotat","request","made","on","name","the","name","of","the","rubrik","cluster.","softwar","version","the","softwar","version","run","on","the","rubrik","cluster.","support","key","type","the","support","key","protect","type","for","the","rubrik","total","kmip","server","the","number","of","kmip","server","use","by","the","uuid","the","id","of","the","rubrik","cluster."],["cluster","encrypt","info","connect","count","total","number","of","clusterencryptioninfo","object","match","the","request"],["cluster","endpoint","cloud","slab","endpoint","cloud","slab","endpoint.","cluster","uuid","nas","cloud","direct","cluster","uuid."],["cluster","group","by","cluster","connect","pagin","snappabl","data.","activ","seri","connect","all","org","author","oper","ccprovis","info","cdm","cluster","node","detail","cdm","notif","set","cdm","rbac","migrat","status","cdm","upgrad","info","cloud","info","cluster","disk","connect","cluster","node","connect","cluster","node","stat","config","protect","info","connect","last","updat","cyber","event","lockdown","mode","cyber","event","lockdown","support","case","detail","datagov","auto","enabl","polici","config","datagov","preview","config","default","address","default","port","encrypt","enabl","eo","date","eo","status","estim","runway","geo","locat","global","manag","connect","status","id","ipmi","info","is","air","gap","is","assign","by","parent","account","is","cluster","remov","tpr","enabl","is","healthi","is","tpr","enabl","lambda","config","lambda","featur","histori","last","connect","time","licens","product","metadata","pull","schedul","metric","metric","time","seri","metric","time","seri","new","name","no","sql","workload","count","pass","connect","check","paus","status","product","type","raw","address","regist","mode","registr","time","replic","sourc","replic","target","rubrik","sync","status","snappabl","connect","snapshot","count","state","status","status","from","db","sub","status","system","status","system","status","affect","node","system","status","messag","timezon","type","version","web","server","certif","cluster","group","by","provid","further","group","for","the","data.","group","by","info","the","data","groupbi","info."],["cluster","group","by","connect","count","total","number","of","clustergroupbi","object","match","the","request"],["cluster","ipv","6","mode","repli","is","ipv","6","mode","specifi","whether","the","cluster","is","in","ipv6","mode."],["cluster","licens","capac","valid","error","the","error","relat","to","cluster","licens","capacities.","warn","the","warn","relat","to","cluster","licens","capacities."],["cluster","node","instanc","properti","repli","cluster","node","instanc","properti","list","of","instanc","properti","avail","for","the","request","cluster","uuid","cluster","uuid."],["cluster","oper","job","progress","job","progress","job","progress.","job","status","job","status.","job","type","job","type.","messag","job","progess","detail."],["cluster","proxi","repli","port","proxi","port.","protocol","proxi","protocol.","server","proxi","server.","usernam","proxi","account","username."],["cluster","ref","name","the","cluster","name.","uuid","the","cluster","uuid."],["cluster","ref","connect","count","total","number","of","clusterref","object","match","the","request"],["cluster","registr","product","info","type","latest","product","type","the","latest","product","type","associ","with","the","user.","product","type","distinct","cluster","product","type","associ","with","the","cluster"],["cluster","registr","token","product","type","the","product","type","this","token","should","be","use","pubkey","the","public","key","of","the","token.","token","the","jwt","that","will","be","use","to","regist"],["cluster","replic","target","id","id","of","replic","target.","name","name","of","replic","target."],["cluster","report","migrat","job","status","status","status","of","the","migrat","job."],["cluster","rout","repli","cluster","rout","rubrik","cluster","network","routes."],["cluster","sla","domain","archiv","locat","upgrad","info","upgrad","inform","about","the","configur","archiv","locat","and","archiv","spec","archiv","specif","for","the","sla","domain.","archiv","spec","list","of","archiv","specif","for","sla","domain.","backup","window","spec","group","of","backup","window","allow","backup","termination.","this","backup","window","backup","window","for","the","sla","domain.","base","frequenc","base","frequenc","for","the","sla","domain.","cdm","id","id","of","the","rubrik","cluster.","cluster","rubrik","cluster","id","of","sla","domain.","fid","id","of","rubrik","cluster","sla","domain.","first","full","backup","window","first","full","backup","windows.","id","the","id","of","the","sla","domain.","is","read","onli","specifi","whether","the","sla","domain","is","read-only.","is","retent","lock","sla","specifi","if","this","sla","domain","is","retent","lock","local","retent","limit","local","retent","limit.","name","the","name","of","the","sla","domain.","object","specif","config","the","object-specif","configur","of","the","sla","domain.","owner","org","organiz","organiz","specifi","the","owner","organiz","of","the","sla","domain.","owner","org","name","organiz","organiz","this","field","is","deprecated.","polari","manag","id","rubrik","saa","manag","id","for","the","sla","domain.","protect","object","count","protect","object","count","for","the","sla","domain.","replic","spec","replic","specif","for","the","sla","domain.","replic","spec","2","replic","specif","for","the","sla","domain.","retent","lock","mode","specifi","the","retent","lock","mode","when","enabl","for","snapshot","schedul","snapshot","schedul","for","the","sla","domain.","upgrad","info","sla","domain","upgrad","information.","version","the","version","of","the","sla","domain."],["cluster","sla","domain","connect","count","total","number","of","clustersladomain","object","match","the","request"],["cluster","web","cert","and","ipmi","cert","info","web","server","certificate.","cluster","uuid","id","of","the","rubrik","cluster.","error","error","message,","in","the","case","of","an","error.","ipmi","info","ipmi","details."],["cluster","web","sign","certif","repli","cert","support","in","v5.2+","sign","certif","of","the","web","web","server","configur","with","ca","sign","certif","required.","support","in","v5.2+","a","boolean","valu","that"],["complet","azur","ad","app","setup","repli","cluster","detail","detail","about","the","azur","ad","cluster","setup.","workload","fid","workload","id","for","the","azur","ad."],["complet","azur","cloud","account","oauth","repli","is","success","specifi","whether","the","oauth","authent","was","complet","successfully.","subscript","subscript","for","which","the","oauth","user","has","read"],["complet","git","hub","app","registr","repli","instal","url","the","url","to","instal","the","app."],["complet","upload","session","repli","success","success","flag","for","complet","upload","session."],["comput","cluster","detail","comput","cluster","summari","host","required.","support","in","v5.0+","moid","required.","support","in","v5.0+","virtual","machin","required.","support","in","v5.0+"],["confirm","part","upload","repli","success","success","flag","for","part","upload","confirmation."],["coordin","label","repli","entri","label","assign","for","each","virtual","machine."],["count","cluster","repli","disconnect","cluster","the","number","of","rubrik","cluster","that","are","in","fatal","cluster","the","number","of","rubrik","cluster","that","have","a","ok","cluster","the","number","of","rubrik","cluster","that","have","an","total","cluster","total","number","of","cluster","base","on","input","filters.","warn","cluster","the","number","of","rubrik","cluster","that","have","a"],["count","of","object","protect","by","sl","as","result","sla","object","count","number","of","object","protect","by","sla","domains."],["crawl","analyz","group","result","analyz","result","crawl","obj","crawl","obj","connect","analyz","group","result","analyz","result","cluster","crawl","id","end","time","error","file","result","connect","file","analyz","file","analyz","file","total","file","with","hit","progress","snappabl","snapshot","fid","snapshot","time","start","time","status","total","hit","end","time","fail","object","count","file","result","connect","access","by","sid","represent","access","by","sid","represent","short","form","analyz","group","result","analyz","result","analyz","risk","hit","attribut","summari","creat","by","creation","time","db","entiti","type","directori","document","type","summari","error","code","exposur","summari","filenam","file","with","hit","file","with","total","hit","hit","is","direct","acl","last","access","time","last","modifi","time","last","scan","time","mip","label","summari","mode","modifi","by","nativ","path","num","activ","num","activ","breakdown","num","activ","delta","num","children","num","descend","error","file","num","descend","file","num","descend","folder","num","descend","skip","ext","file","num","descend","skip","size","file","open","access","file","open","access","file","with","hit","open","access","folder","open","access","stale","file","open","access","type","owner","pagin","id","princip","access","info","risk","level","risk","reason","sensit","file","sensit","hit","size","snappabl","snapshot","fid","snapshot","timestamp","stale","file","stale","file","with","hit","stale","type","std","path","total","hit","total","sensit","hit","type","user","access","type","file","analyz","file","analyz","file","total","file","with","hit","id","name","progress","snappabl","type","summari","start","time","status","total","hit","user"],["crawl","connect","count","total","number","of","crawl","object","match","the","request"],["creat","autom","restor","mysqldb","instanc","repli","async","request","status","required.","support","in","v9.5+","status","of","the","asynchron","id","required.","support","in","v9.5+","id","of","the","mysql"],["creat","aw","exocomput","config","repli","config","list","of","exocomput","configurations.","exocomput","config","list","of","exocomput","configurations."],["creat","azur","saa","app","aad","repli","client","id","app","id","of","the","creat","azur","aad","application."],["creat","cloud","nativ","aw","storag","set","repli","target","map"],["creat","cloud","nativ","azur","storag","set","repli","target","map"],["creat","cloud","nativ","label","rule","repli","label","rule","id","id","of","the","new","label","rule."],["creat","cloud","nativ","rcv","azur","storag","set","repli","target","map","rubrik","cloud","vault","azur","storag","setting."],["creat","cloud","nativ","tag","rule","repli","tag","rule","id","id","of","the","tag","rule."],["creat","cross","account","reg","oauth","payload","repli","oauth","payload","payload","for","cross-account","oauth","registration."],["creat","custom","data","type","repli","data","type","detail","of","the","creat","data","type."],["creat","failov","cluster","app","repli","output"],["creat","failov","cluster","repli","output"],["creat","guest","credenti","repli","base","guest","credenti","detail","base","guest","credenti","details.","descript","support","in","v9.2+","domain","support","in","v5.0+","id","required.","support","in","v5.0+"],["creat","integr","repli","id","id","of","the","newli","creat","integration.","info","the","result","of","creat","an","integration."],["creat","integr","repli","id","the","integr","ids."],["creat","8","s","agent","manifest","repli","info","kubernet","agent","manifest","information."],["creat","8","s","cluster","repli","cluster","id","the","kubernet","cluster","id","created.","yaml","url","the","url","that","allow","you","to","download","the"],["creat","legal","hold","repli","snapshot","id","list","of","the","snapshot","id","place","on","legal"],["creat","365","app","kickoff","resp","app","client","id","the","app","client","id.","csrf","token","the","csrf","token.","o","365","tenant","id","the","o365","tenant","id."],["creat","on","demand","glue","iceberg","tabl","backup","repli","taskchain","uuid","uniqu","identifi","of","the","trigger","backup","job."],["creat","on","demand","job","repli","job","id","job","id","of","the","creat","job.","taskchain","id","taskchain","id","of","the","creat","job."],["creat","org","repli","organiz","organiz","organiz","id","uuid","of","creat","organization."],["creat","org","switch","session","repli","organiz","organiz","access","token","authent","token","for","the","organiz","that","the","user"],["creat","rcv","privat","endpoint","approv","request","repli","request","messag","secret","request","messag","that","must","match","dure","approval.","storag","account","id","storag","account","id","where","the","privat","endpoint","approv"],["creat","recoveri","plan","2","repli","recoveri","plan","id","recoveri","plan","identifier.","recoveri","spec","id","recoveri","spec","identifiers."],["creat","recoveri","spec","repli","recoveri","spec","map","creat","recoveri","specifications."],["creat","remedi","metadata","remedi","id","the","id","of","the","creat","remediation."],["creat","schedul","report","repli","schedul","report","descript","of","the","newli","creat","schedule."],["creat","secur","polici","repli","polici","id","the","id","of","the","policy."],["creat","servic","account","repli","access","token","uri","uri","to","retriev","the","access","token.","client","id","id","of","the","servic","account.","client","secret","secret","use","to","authent","to","the","author","server.","name","name","of","the","servic","account."],["creat","sso","user","repli","user","id","list","of","user","created."],["creat","tpr","polici","repli","polici","id","id","of","the","tpr","policy."],["creat","vapp","snapshot","repli","respons","creat","vapp","snapshot","responses."],["creat","vapp","instant","recoveri","repli","respons","respons","of","vapp","snapshot","instant","recovery."],["creat","vrm","repli","async","request","status","required.","id","required.","the","id","of","the","fusioncomput","vrm","instance."],["creat","vsphere","advanc","tag","repli","output"],["creat","vsphere","vcenter","repli","async","request","status","required.","support","in","v5.3+","id","required.","support","in","v5.3+","the","id","of","the","is","hot","add","proxi","enabl","for","on","prem","vcenter","support","in","v7.0+","an","option","field","that","specifi","is","vmc","required.","specifi","whether","the","new","vcenter","is","a"],["creat","webhook","repli","webhook","the","webhook","that","was","created."],["creat","webhook","2","repli","error","info","captur","detail","of","error","encount","within","the","system.","webhook","webhook","configuration."],["cross","account","cluster","account","name","the","account","name","the","cluster","is","associ","with.","api","version","api","version","of","the","rubrik","cluster.","is","air","gap","if","the","rubrik","cluster","is","air-gapped.","is","archiv","if","the","cross-account","cluster","is","archived.","name","name","of","the","rubrik","cluster.","uuid","uuid","of","the","rubrik","cluster.","version","version","of","the","rubrik","cluster."],["cross","account","cluster","connect","count","total","number","of","crossaccountclust","object","match","the","request"],["cross","account","pair","info","last","sync","at","time","the","metadata","was","last","sync","for","the","name","name","of","the","cross-account","involv","in","pair.","organiz","specifi","the","organiz","of","the","cross-account","relationship.","role","role","of","the","cross-account","involv","in","pair.","status","status","of","the","cross-account","pair.","url","url","of","the","cross-account","involv","in","pair.","uuid","uuid","of","the","cross-account","pair."],["cross","account","pair","info","connect","count","total","number","of","crossaccountpairinfo","object","match","the","request"],["crowd","strike","ingest","status","last","run","start","time","last","time","the","job","start","running.","last","success","time","last","success","ingest","time."],["crowdstrik","alert","activ","summari","impact","ident","provid","idp","label","the","actor","activ","came","from","(e.g.","latest","action","time","most","recent","idp","activ","by","the","actor.","null","rollback","url","deep","link","to","the","alert","in","ident","resilience.","total","relat","action","count","of","distinct","idp","event","by","the","actor","total","target","entiti","distinct","target","entiti","touch","by","the","actor","in","total","violat","lifetim","rsc","violat","count","for","the","actor.","null"],["crowdstrik","case","activ","summari","impact","ident","provid","idp","label","the","actor","activ","came","from.","latest","action","time","most","recent","idp","activ","across","all","actor","in","recoveri","url","deep","link","to","the","appropri","ident","resili","inventori","total","actor","count","of","uniqu","actor","across","the","case","alert","total","relat","action","count","of","distinct","idp","event","across","all","actor","total","target","entiti","distinct","target","entiti","touch","across","the","case","actors.","total","violat","sum","of","lifetim","rsc","violat","count","across","the"],["csr","citi","citi","of","the","certif","sign","request.","countri","countri","of","the","certif","sign","request.","creat","at","creation","timestamp","of","the","certif","sign","request.","creator","email","email","of","the","user","who","creat","the","certif","csr","content","of","the","certif","sign","request.","csr","fid","the","fid","of","the","certif","sign","request.","csr","id","id","of","the","certif","sign","request.","email","email","of","the","certif","sign","request.","hostnam","hostnam","for","the","certif","sign","request.","key","strength","the","key","strength","use","to","generat","this","csr","key","type","the","key","type","use","to","generat","this","csr","name","name","of","the","certif","sign","request.","organiz","organiz","of","the","certif","sign","request.","organiz","unit","organiz","unit","of","the","certif","sign","request.","state","state","of","the","certif","sign","request.","surnam","surnam","of","the","certif","sign","request.","user","id","user","id","of","the","certif","sign","request."],["csr","connect","count","total","number","of","csr","object","match","the","request"],["custom","report","info","creat","at","timestamp","of","when","the","report","was","created.","creat","by","email","address","of","the","user","who","creat","the","id","uniqu","identifi","of","the","report.","name","name","of","the","report.","report","categori","categori","of","the","report.","report","filter","filter","appli","to","the","report.","report","view","type","type","of","report","view.","room","room","the","report","belong","to.","schedul","report","count","number","of","schedul","report","associ","with","the","report.","updat","at","timestamp","of","when","the","report","was","last","updated.","updat","by","email","address","of","the","user","who","last","updat"],["custom","report","info","connect","count","total","number","of","customreportinfo","object","match","the","request"],["custom","tpr","polici","action","action","specifi","in","the","tpr","policy.","descript","descript","of","the","tpr","policy.","number","of","object","type","number","of","object","type","in","the","tpr","policy.","number","of","protect","object","number","of","workload","in","the","tpr","policy.","org","id","organiz","organiz","organiz","the","tpr","polici","is","in.","org","name","organiz","organiz","organiz","name","the","tpr","polici","is","in.","polici","id","tpr","polici","id.","polici","name","name","of","the","tpr","policy.","quorum","requir","quorum","author","requir","for","the","tpr","policy."],["custom","tpr","polici","connect","count","total","number","of","customtprpolici","object","match","the","request"],["custom","face","file","complet","at","timestamp","when","the","file","generat","was","completed.","creat","at","timestamp","when","the","file","was","created.","creator","creator","of","the","file.","expir","at","timestamp","when","the","file","will","expire.","extern","id","file","extern","id.","filenam","name","of","the","file.","state","file","state.","type","file","type."],["daili","violat","summari","daili","summari","daili","summari","of","the","violations."],["data","access","stat","respons","access","breakdown","access","breakdown","statist","group","by","access","type.","exposur","exposur","inform","entri","for","the","filter","resources."],["data","discoveri","object","count","data","discoveri","assign","count","the","number","of","object","that","have","polici","assign","data","discoveri","not","assign","count","the","number","of","object","that","do","not","have","data","discoveri","not","support","count","the","number","of","object","that","are","not","support"],["data","locat","support","cluster","account","name","the","account","name","the","cluster","is","associ","with.","api","version","api","version","of","the","rubrik","cluster.","is","air","gap","if","the","rubrik","cluster","is","air-gapped.","is","archiv","if","the","cross-account","cluster","is","archived.","name","name","of","the","rubrik","cluster.","uuid","uuid","of","the","rubrik","cluster.","version","version","of","the","rubrik","cluster."],["data","protect","coverag","summari","overal","protect","coverag","overal","protect","coverage.","platform","coverag","protect","coverag","for","platforms."],["day","to","day","mode","stat","complianc","status","complianc","status","of","the","product","that","contain","percentag","num","full","remain","number","of","full","backup","that","are","pending.","total","protect","count","count","of","the","number","of","object","protect","with"],["db","2","configur","restor","respons","status","required.","support","in","v9.1+","return","status","for","the","status","messag","support","in","v9.1+","status","messag","for","ani","failur"],["db","2","databas","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","backup","compress","librari","path","the","fulli","qualifi","path","to","a","custom","db2","backup","parallel","specifi","the","valu","of","the","configur","paramet","for","backup","session","specifi","the","valu","of","the","configur","paramet","for","backup","trigger","type","the","backup","trigger","type","for","the","db2","database.","cdm","id","id","associ","with","db2","databas","in","cdm.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","cross","host","recoveri","metadata","db2","cross","host","recoveri","enabl","target","hosts.","db","2","db","type","type","of","db2","database:","standalone,","partitioned,","hadr,","or","db","2","hadr","metadata","hadr","metadata","object","for","the","specifi","db2","database.","db","2","instanc","db2","instanc","parent","for","the","given","database.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","for","recoveri","the","list","of","host","author","for","recovery.","id","id","of","the","hierarchi","object.","is","backup","compress","enabl","specifi","whether","db2","backup","compress","is","enabl","for","is","relic","whether","the","db2","databas","is","a","relic.","is","replica","true","if","this","object","is","a","replica,","it","last","sync","time","time","stamp","of","when","last","metadata","sync","happen","latest","user","note","latest","user","note","information.","log","backup","threshold","threshold","befor","new","log","backup","take","place.","log","snapshot","connect","of","log","snapshot","for","given","db2","database.","app","metadata","cdm","id","cluster","uuid","date","fid","internal","timestamp","is","archiv","workload","id","workload","type","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cluster.","protect","date","db2","databas","sla","domain","protect","start","date.","recover","rang","connect","of","recover","rang","for","given","db2","database.","base","snapshot","id","cdm","id","cluster","uuid","db","id","end","time","fid","is","archiv","start","time","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","stat","for","db2","database.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","status","status","of","db2","database:","ok,","warning,","error,","unknown","status","messag","addit","inform","about","the","current","status","of","the"],["db","2","databas","connect","count","total","number","of","db2databas","object","match","the","request"],["db","2","instanc","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","associ","with","db2","instanc","in","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","contain","hadr","databas","specifi","whether","the","db2","instanc","contain","an","hadr","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","list","of","host","associ","with","the","db2","instance.","id","id","of","the","hierarchi","object.","instanc","type","type","of","db2","instance:","standalone,","partitioned,","purescale,","or","is","replica","true","if","this","object","is","a","replica,","it","last","refresh","time","timestamp","when","last","refresh","job","got","trigger","for","last","sync","time","time","stamp","of","when","last","metadata","sync","happen","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","current","status","for","the","db2","instance:","ok,","warning,","status","messag","addit","inform","about","the","current","status","of","the"],["db","2","instanc","connect","count","total","number","of","db2instanc","object","match","the","request"],["db","2","log","snapshot","app","metadata","app","metadata","of","log","snapshot","in","db2.","cdm","id","the","cdm","fid","of","the","db2","snapshot","object.","cluster","uuid","uuid","of","the","cdm","cluster","associ","with","db2","date","the","creation","date","of","the","snapshot.","fid","the","rubrik","fid","of","the","db2","snapshot","object.","internal","timestamp","the","internal","time","stamp","of","the","db2","snapshot","is","archiv","boolean","for","archiv","status","of","the","db2","snapshot","workload","id","the","rubrik","fid","of","the","workload","on","which","workload","type","the","workload","type","on","which","snapshot","was","taken."],["db","2","log","snapshot","connect","count","total","number","of","db2logsnapshot","object","match","the","request"],["db","2","recover","rang","base","snapshot","id","id","of","the","associ","base","snapshot.","cdm","id","the","cdm","fid","of","the","db2","recover","rang","cluster","uuid","uuid","of","the","cdm","cluster","associ","with","db2","db","id","the","rubrik","fid","for","the","db2","databas","associ","end","time","end","time","of","the","db2","recover","rang","object.","fid","the","rubrik","fid","of","the","db2","recover","rang","is","archiv","boolean","for","archiv","status","of","db2","recover","rang","start","time","start","time","of","the","db2","recover","rang","object."],["db","2","recover","rang","connect","count","total","number","of","db2recoverablerang","object","match","the","request"],["db","log","report","properti","enabl","delay","notif","required.","support","in","v5.3+","indic","whether","the","databas","log","delay","notif","frequenc","in","min","required.","support","in","v5.3+","the","frequenc","for","send","log","delay","threshold","in","min","required.","support","in","v5.3+","the","threshold","for","the"],["db","log","report","summari","list","repli","data","support","in","v5.3+","list","of","match","objects.","has","more","support","in","v5.3+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.3+","total","list","responses."],["db","paramet","group","arn","amazon","resourc","name","(arn)","of","the","db","paramet","famili","famili","name","of","the","db","paramet","group.","name","name","of","the","db","paramet","group.","rds","type","type","of","rds","deployment."],["deactiv","data","type","repli","is","success","specifi","whether","the","request","complet","successfully."],["deactiv","document","attribut","repli","is","success","specifi","whether","the","request","complet","successfully."],["defend","ingest","status","integr","id","integr","id.","last","run","start","time","last","time","the","job","start","running.","last","success","time","last","success","ingest","time."],["delet","aw","exocomput","config","repli","delet","status","delet","status","for","exocomput","configurations."],["delet","azur","cloud","account","exocomput","configur","repli","delet","fail","id","list","of","fail","delet","ids.","delet","success","id","list","of","success","delet","ids."],["delet","azur","cloud","account","repli","status","status","of","the","oper","to","delet","azur","cloud"],["delet","azur","cloud","account","without","oauth","repli","status","status","of","the","oper","to","delet","azur","cloud"],["delet","global","certif","repli","cluster","error","the","error","origin","from","delet","certif","from","the","cluster","uuid","the","rubrik","cluster","from","which","the","certif","was"],["delet","manag","volum","repli","async","request","status","support","in","v7.0+","status","of","the","trigger","asynchron"],["delet","recoveri","plan","2","repli","batch","delet","respons","list","of","delet","respons","for","each","recoveri","plan."],["delet","storag","array","repli","respons","delet","storag","array","responses."],["delet","termin","cluster","oper","job","data","repli","job","progress","job","progress","percentage.","job","status","job","status.","job","type","job","type.","messag","job","progress","detail."],["detail","privat","endpoint","connect","descript","descript","of","the","privat","endpoint.","name","name","of","the","privat","endpoint.","privat","endpoint","connect","detail","of","the","privat","endpoint","connect","relat","to","storag","account","id","the","id","of","the","storag","account","associ","with"],["dev","op","backup","job","inform","last","success","backup","time","timestamp","indic","the","complet","of","the","last","success"],["dev","op","cloud","account","list","current","permiss","repli","featur","permiss","list","of","permiss","for","the","given","organization.","group","permiss","list","of","group","permiss","for","the","given","organization."],["dev","op","cloud","account","list","latest","permiss","repli","featur","permiss","list","of","permiss","for","the","given","organization.","group","permiss","list","of","group","permiss","for","the","given","organization."],["dev","op","protect","object","count","summari","protect","count","the","count","of","protect","objects.","total","count","the","total","count","of","objects."],["dhrc","activ","recommend","categori","the","categori","that","the","recommend","belong","to.","compil","at","the","time","that","the","recommend","was","compil","from","earliest","metric","the","earliest","(oldest)","metric","use","to","compil","the","key","the","key","uniqu","identifi","the","type","of","the","messag","the","textual","recommend","compil","by","the","service,","alway","translat","arg","the","translat","argument","of","the","recommendation.","store","as","weight","the","weight","of","the","issu","this","recommend","aim"],["dhrc","collect","metric","collect","at","the","time","that","the","metric","was","collect","from","max","valu","the","maximum","valu","of","the","metric.","metric","the","metric","identity.","valu","the","valu","of","the","metric."],["dhrc","score","calcul","at","the","time","that","the","score","was","calculated.","categori","the","categori","that","the","score","belong","to.","context","the","calcul","context","for","the","score.","date","the","time","of","this","score.","this","may","differ","earliest","metric","the","time","at","which","the","earliest","(oldest)","metric","valu","the","score","value,","alway","between","0","and","100."],["diff","result","data","a","list","of","chang","file","and","folder","in","pagin","marker","marker","for","next","page","of","brows","diff","fmd","previous","snapshot","date","the","date","of","the","previous","snapshot.","previous","snapshot","id","the","id","of","the","previous","snapshot."],["disabl","target","repli","locat","id","rubrik","secur","cloud","manag","locat","id.","status","ownership","status","of","the","archiv","location."],["disk","info","capac","byte","required.","support","in","v5.0+","disk","status","is","resiz","support","in","v8.1+","path","required.","support","in","v5.0+","unalloc","byte","support","in","v5.0+","usabl","byte","support","in","v5.0+"],["dissolv","legal","hold","repli","snapshot","id","list","of","the","snapshot","id","dissolv","from","legal"],["document","attribut","id","repres","the","id","of","the","attribute.","name","repres","the","titl","of","the","attribute.","type","repres","the","type","of","the","attribute."],["download","anomali","detail","csv","repli","is","success","specifi","whether","download","anomali","detail","csv","request","was"],["download","cdm","tpr","config","async","repli","download","id","id","of","the","download","entiti","that","record","the","job","id","job","id","of","the","submit","asynchron","job.","refer","id","job","refer","id."],["download","cdm","upgrad","pdf","repli","download","link","the","sign","link","for","download","the","file","in"],["download","csv","repli","is","success","status","of","queue","a","download","csv","job."],["download","file","repli","taskchain","id","taskchain","id","of","the","download","job."],["download","packag","repli","job","id","download","job","id."],["download","packag","repli","with","uuid","job","id","download","packag","job","id.","uuid","cluster","uuid."],["download","packag","status","repli","avail","avail","of","cdm","package.","descript","download","job","status","description.","download","job","info","cdm","download","job","information.","md","5","sum","md5sum","of","the","cdm","package.","size","size","of","cdm","package.","version","cdm","upgrad","packag","version."],["download","result","csv","repli","download","link","the","sign","link","for","download","the","file","in"],["download","sla","with","replic","csv","repli","doe","sla","exist","true","if","an","sla","domain","that","replic","snapshot","is","download","success","true","if","the","download","has","been","initi","and"],["download","threat","hunt","csv","repli","is","success","specifi","if","the","download","oper","is","successful."],["download","threat","hunt","2","csv","respons","is","success","specifi","if","the","download","oper","is","successful."],["download","turbo","threat","hunt","result","csv","respons","sign","url","sign","url","for","download","the","csv.","status","status","of","the","csv","generat","for","the","turbo"],["dynam","365","organiz","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","api","usag","the","api","usag","of","the","organiz","dure","the","author","oper","the","author","oper","on","the","object.","backup","job","stat","stat","of","the","backup","job","in","the","last","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","the","connect","status","to","the","organization.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","environ","type","exocomput","id","denot","the","id","of","the","exocomput","cluster","associ","id","id","of","the","hierarchi","object.","last","refresh","time","the","time","at","which","the","dynam","365","organiz","logic","path","sequenti","list","of","the","logic","ancestor","of","this","metadata","workload","id","rubrik","id","of","the","dynam","365","metadata","workload.","name","name","of","the","hierarchi","object.","natur","id","id","of","the","dynam","365","organiz","at","the","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","onboard","app","type","the","list","of","saa","applic","type","that","are","org","url","organiz","organiz","the","url","of","the","dynam","365","organization.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","saa","app","org","info","organiz","organiz","the","inform","of","the","saa","app","organization.","saa","org","type","organiz","organiz","the","organiz","type","that","categor","the","saa","provider.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","the","status","of","the","dynam","365","organization.","storag","region","the","rsc","storag","region","for","the","organization."],["edg","window","tool","link","download","link","download","link","for","rubrik","edg","deploy","tool","for"],["enabl","automat","fmd","upload","repli","cluster","id","the","cluster","uuid.","enabl","specifi","whether","automat","snapshot","metadata","(fmd)","upload","is"],["enabl","disabl","app","consist","repli","fail","workload","id","list","of","workload","id","for","which","enabl","or","success","workload","id","list","of","workload","id","for","which","enabl","or"],["enabl","target","repli","locat","id","rubrik","secur","cloud","manag","locat","id.","status","ownership","status","of","the","archiv","location."],["end","manag","volum","snapshot","repli","async","request","status","support","in","v7.0+","status","of","the","asynchron","request","manag","volum","snapshot","summari","summari","of","the","manag","volum","snapshot.","rsc","snapshot","id","rsc","snapshot","id","of","the","snapshot","that","will"],["event","digest","account","account","relat","to","the","event","digest.","cluster","uuid","specifi","the","cluster","uuid","that","this","event","digest","creator","email","address","email","address","of","the","creator","of","this","digest.","digest","id","id","of","the","event","digest.","digest","name","name","of","the","event","digest.","event","digest","config","the","configur","of","the","event","digest.","event","digest","config","json","deprecated.","use","eventdigestconfig.","frequenc","frequency,","in","hours,","with","which","the","event","digest","includ","audit","specifi","whether","to","includ","audit","in","the","event","includ","event","specifi","whether","to","includ","event","in","the","event","is","immedi","specifi","whether","to","send","the","event","digest","immediately.","recipi","user","id","user","id","of","the","recipient."],["exchang","dag","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","backup","prefer","backup","prefer","for","databas","present","in","the","exchang","cdm","id","id","associ","with","the","exchang","dag","in","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","total","host","number","of","host","associ","with","the","exchang","dag."],["exchang","dag","connect","count","total","number","of","exchangedag","object","match","the","request"],["exchang","databas","activ","copi","number","of","databas","copi","which","are","active.","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","associ","with","the","exchang","databas","in","cdm.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exchang","server","exchang","server","parent","of","the","database.","id","id","of","the","hierarchi","object.","is","relic","boolean","flag","indic","if","the","databas","is","disconnect","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","total","copi","total","number","of","databas","copies."],["exchang","databas","connect","count","total","number","of","exchangedatabas","object","match","the","request"],["exchang","host","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","associ","with","the","exchang","host","in","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","host","metadata","metadata","of","the","under","physic","host.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["exchang","live","mount","cdm","id","cdm","id","of","the","live","mount.","cluster","cluster","of","the","live","mount.","id","fid","of","the","live","mount.","is","readi","describ","if","the","live","mount","is","ready.","node","composit","id","nodeid","of","the","node","with","the","live","mount.","node","ip","node","ip","of","the","node","with","the","live","sourc","databas","sourc","databas","of","the","live","mount.","sourc","snapshot","sourc","snapshot","of","the","live","mount."],["exchang","live","mount","connect","count","total","number","of","exchangelivemount","object","match","the","request"],["exchang","server","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","associ","with","the","exchang","server","in","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exchang","dag","dag","parent","for","exchang","server.","exchang","host","exchang","host","parent","for","the","exchang","server.","has","vg","conflict","indic","that","the","under","host","has","conflict","with","host","host","parent","for","the","exchang","server.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","total","dbs","number","of","databas","copi","present","in","the","exchang","version","version","of","the","exchang","server.","vg","conflict","resolv","by","user","indic","that","the","user","has","resolv","the","conflict"],["exchang","server","connect","count","total","number","of","exchangeserv","object","match","the","request"],["exclud","contain","name","name","of","the","container."],["exclud","contain","connect","count","total","number","of","excludedcontain","object","match","the","request"],["exocomput","cluster","connect","repli","cluster","setup","yaml","this","field","contain","the","kubernet","configur","yaml","file,","cluster","uuid","the","uniqu","id","generat","for","the","kubernet","(k8s)"],["exocomput","get","cluster","connect","info","repli","cluster","setup","yaml","this","field","contain","the","kubernet","configur","yaml,","detail","cluster","uuid","the","uniqu","id","generat","for","the","kubernet","cluster"],["exocomput","get","support","health","check","repli","support","check","the","list","of","support","health","check","types."],["exocomput","health","check","repli","execut","time","this","is","the","time","when","the","health","check","result","this","is","the","list","of","health","check","results."],["expir","snooz","directori","repli","directori","expir","the","list","of","expir","snooz","directories.","total","the","count","of","expir","snooz","directories."],["expir","snapshot","date","the","date","of","the","snapshot.","expir","date","the","expir","date","of","the","snapshot.","id","the","id","of","the","snapshot.","index","attempt","the","number","of","index","attempt","for","the","snapshot.","is","anomali","flag","if","the","snapshot","is","an","anomaly.","is","corrupt","specifi","whether","or","not","the","snapshot","is","corrupted.","is","download","snapshot","specifi","whether","the","snapshot","is","download","from","an","is","expir","specifi","whether","or","not","the","snapshot","is","expired.","is","index","specifi","whether","or","not","the","snapshot","is","indexed.","is","on","demand","snapshot","specifi","whether","the","snapshot","is","an","on-demand","snapshot.","is","quarantin","process","specifi","whether","rsc","is","process","the","snapshot","to","is","quarantin","specifi","whether","the","snapshot","is","quarantined.","is","unindex","specifi","whether","or","not","the","snapshot","is","unindexable.","sla","domain","sla","domain","of","the","snapshot.","snappabl","id","the","workload","id","of","the","snapshot."],["export","permiss","repli","is","success","indic","whether","the","csv","generat","was","success","initiated."],["export","polici","violat","csv","repli","download","id","identifi","for","track","the","asynchron","csv","export.","use"],["export","princip","summari","resp","is","success","whether","the","export","request","was","success","submitted."],["export","url","spec","action","type","recoveri","action","type.","blob","name","name","of","the","blob.","blob","sas","uri","sas","uri","of","the","blob.","polari","account","polari","account","of","the","user."],["fail","restor","item","info","repli","can","export","fail","item","indic","whether","the","fail","item","export","can","be","csv","download","link","the","link","ito","download","a","csv","file","contain","export","disabl","reason","provid","a","reason","whi","fail","item","export","is","fail","item","a","collect","of","fail","items.","total","fail","item","count","total","count","of","fail","item","encountered."],["failov","cluster","app","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","the","cdm","cluster.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","failov","cluster","id","id","of","the","failov","cluster.","failov","cluster","type","failov","rubrik","cluster","type.","host","failov","cluster","get","the","host","failov","cluster","app","object.","id","id","of","the","hierarchi","object.","is","archiv","boolean","variabl","denot","if","archived.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","connect","status","of","failov","cluster.","vip","virtual","ip","addresses."],["failov","cluster","app","connect","count","total","number","of","failoverclusterapp","object","match","the","request"],["failov","cluster","top","level","descend","type","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["failov","cluster","top","level","descend","type","connect","count","total","number","of","failoverclustertopleveldescendanttyp","object","match","the","request"],["failov","group","archiv","locat","is","sourc","immut","enabl","whether","immut","is","enabl","on","sourc","location.","is","target","immut","enabl","whether","immut","is","enabl","on","target","location.","sourc","locat","id","sourc","cluster","archiv","locat","id.","sourc","locat","name","sourc","cluster","archiv","locat","name.","sourc","locat","status","sourc","cluster","archiv","locat","status.","sourc","locat","type","sourc","archiv","locat","type","(e.g.","aws,","azure,","gcp).","sourc","storag","locat","sourc","storag","locat","display","string","(e.g.","bucket","name,","target","last","refresh","time","target","cluster","last","refresh","time.","target","locat","id","target","cluster","archiv","locat","id.","target","locat","name","target","cluster","archiv","locat","name.","target","locat","status","target","cluster","archiv","locat","status.","target","locat","type","target","archiv","locat","type","(e.g.","aws,","azure,","gcp).","target","storag","locat","target","storag","locat","display","string","(e.g.","bucket","name,"],["failov","group","archiv","locat","connect","count","total","number","of","failovergrouparchivalloc","object","match","the","request"],["failov","group","host","activ","cluster","uuid","activ","cluster","uuid","where","this","host","is","current","counterpart","id","list","of","counterpart","host","id","on","other","clusters.","host","id","host","id.","host","name","name","of","the","host.","host","status","status","of","the","host.","host","type","type","of","the","host.","number","of","object","number","of","workload","under","this","host."],["failov","group","host","connect","count","total","number","of","failovergrouphost","object","match","the","request"],["failov","group","workload","counterpart","id","list","of","counterpart","workload","id","on","other","clusters.","host","id","list","of","host","fid","associ","with","this","workload.","host","name","list","of","host","name","for","the","host","associ","manag","object","type","type","of","the","workload.","name","name","of","the","workload.","primari","cluster","uuid","primari","cluster","uuid.","status","status","of","the","workload.","status","messag","status","messag","provid","addit","details.","workload","id","workload","id.","workload","type","type","of","the","workload."],["failov","group","workload","connect","count","total","number","of","failovergroupworkload","object","match","the","request"],["featur","cdm","version","repli","is","support","flag","denot","featur","support."],["featur","list","minimum","cdm","version","repli","minimum","version","minimum","cluster","version","required."],["featur","permiss","featur","repres","the","featur","for","which","the","permiss","are","permiss","json","repres","the","json","string","of","the","permissions.","permiss","group","version","repres","the","version","of","the","permiss","groups.","version","repres","the","version","of","the","permissions."],["feder","login","status","enabl","specifi","whether","feder","access","is","enabled.","inventori","card","enabl","specifi","whether","the","ui","should","display","the","inventori"],["file","match","archiv","relat","path","path","of","this","file","relat","to","the","root","detect","time","time","the","scan","detect","the","match.","file","metadata","file","metadata","for","the","match","file.","file","name","name","of","the","file","that","was","matched.","file","size","size","of","the","file","that","was","matched.","filepath","filepath","that","was","matched.","first","observ","snapshot","date","date","of","the","snapshot","when","the","match","was","first","observ","snapshot","fid","fid","of","the","first","observ","snapshot.","is","file","version","quarantin","indic","whether","the","workload","file","version","is","quarantined.","is","first","observ","snapshot","expir","specifi","whether","the","first","observ","snapshot","has","expired.","is","insid","archiv","true","when","the","match","file","is","an","inner","is","match","snapshot","expir","specifi","whether","the","match","snapshot","has","expired.","is","quarantin","in","first","observ","snapshot","indic","whether","the","file","is","quarantin","in","the","is","valid","indic","whether","the","match","has","been","validated.","is","valid","requir","indic","whether","sever","evalu","is","requir","for","this","match","id","id","of","the","match","file","be","returned.","match","type","type","of","threat","match.","match","snapshot","date","date","of","the","snapshot","when","the","match","was","match","snapshot","fid","fid","of","the","match","snapshot.","mtime","modifi","time","of","the","match.","object","fid","fid","of","the","object.","object","name","the","scan","object","name.","object","type","object","type.","sever","sever","of","the","match."],["file","match","connect","count","total","number","of","filematch","object","match","the","request"],["file","result","access","by","sid","represent","represent","of","sid","that","can","access","this","file.","access","by","sid","represent","short","form","a","short","form","of","represent","of","sid","that","analyz","group","result","analyz","result","analyz","risk","hit","analyz","risk","hit","for","various","risk","levels.","attribut","summari","summar","attribut","associ","with","the","file.","creat","by","repres","ident","who","creat","the","file.","creation","time","repres","the","creation","time","of","the","file.","db","entiti","type","repres","the","type","of","databas","entity.","directori","document","type","summari","summar","the","document","type","associ","with","the","file.","error","code","exposur","summari","repres","the","number","of","file","associ","with","differ","filenam","file","with","hit","file","with","total","hit","repres","file","with","the","total","number","of","hits,","hit","is","direct","acl","repres","if","file","has","direct","acl.","last","access","time","last","modifi","time","last","scan","time","repres","the","last","scan","time","of","the","file.","mip","label","summari","repres","the","mip","label","attach","insid","file","for","mode","modifi","by","repres","ident","who","last","modifi","the","file.","nativ","path","num","activ","num","activ","breakdown","num","activ","delta","num","children","repres","number","of","children","at","each","level.","num","descend","error","file","num","descend","file","num","descend","folder","num","descend","skip","ext","file","num","descend","skip","size","file","open","access","file","open","access","file","with","hit","open","access","folder","open","access","stale","file","open","access","type","owner","pagin","id","princip","access","info","repres","princip","access","inform","for","the","file.","risk","level","risk","level","of","the","file.","risk","reason","file","access","risk","reasons.","sensit","file","sensit","file","count","for","various","risk","levels.","sensit","hit","repres","sensit","hit","for","various","sensit","levels.","size","snappabl","snapshot","fid","snapshot","timestamp","stale","file","stale","file","with","hit","stale","type","std","path","total","hit","repres","the","total","number","of","hits,","includ","sensit","total","sensit","hit","repres","the","sum","of","high,","medium,","and","low","type","repres","data","type","of","column","for","databases.","user","access","type","repres","the","type","of","user","access","for","a"],["file","result","connect","count","total","number","of","fileresult","object","match","the","request","has","latest","data","specifi","whether","the","respons","contain","the","latest","index","index","version","specifi","the","index","version."],["file","summari","count","result","type","unus","sensit","file","file","summari","for","unus","sensit","files.","use","sensit","file","file","summari","for","use","sensit","files."],["fileset","detail","archiv","storag","support","in","v5.0+","archiv","snapshot","count","support","in","v5.0+","backup","script","error","handl","support","in","v5.0+","action","taken","if","script","fails.","backup","script","timeout","support","in","v5.0+","number","of","second","after","which","fileset","summari","fileset","updat","local","storag","support","in","v5.0+","post","backup","script","support","in","v5.0+","script","to","run","after","backup","pre","backup","script","support","in","v5.0+","script","to","run","befor","backup","protect","date","support","in","v5.0+","snapshot","count","required.","support","in","v5.0+","snapshot","support","in","v5.0+"],["fileset","snapshot","detail","fileset","snapshot","summari","last","modifi","required.","support","in","v5.0+","size","required.","support","in","v5.0+","verbos","support","in","v5.0+"],["fileset","templat","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","allow","backup","hidden","folder","in","network","mount","boolean","variabl","specifi","if","hidden","folder","can","be","allow","backup","network","mount","boolean","variabl","denot","if","network","mount","can","be","author","oper","the","author","oper","on","the","object.","backup","script","error","handl","error","handl","for","backup","script.","cdm","id","id","associ","with","fileset","templat","in","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","except","except","for","backup","of","fileset.","exclud","path","exclud","in","fileset","template.","id","id","of","the","hierarchi","object.","includ","path","includ","in","fileset","template.","is","array","enabl","boolean","variabl","denot","array","is","enabled.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","os","type","oper","system","type","of","host.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","post","backup","script","post","backup","script.","pre","backup","script","pre","backup","script.","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","share","type","share","type","of","the","fileset","template.","should","overrid","cluster","wide","blocklist","filesystem","path","indic","whether","to","overrid","the","cluster-wid","blocklist","filesystem","should","retri","prescript","if","backup","fail","indic","whether","to","retri","the","pre-backup","script","if","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","templat","allowlist","filesystem","path","comma-separ","list","of","path","that","overrid","blocklist","exclusions.","templat","blocklist","filesystem","type","comma-separ","list","of","filesystem","type","to","dynam","block","templat","blocklist","filesystem","path","list","of","blocklist","filesystem","path","for","the","template."],["fileset","templat","connect","count","total","number","of","filesettempl","object","match","the","request"],["final","aw","cloud","account","delet","repli","messag","contain","success","respons","message."],["final","aw","cloud","account","protect","repli","aw","child","account","contain","success","respons","message.","cross","account","role","model","the","cross-account","role","model","for","this","account","(single_rol","messag","contain","success","respons","message."],["finish","archiv","migrat","repli","is","success","indic","whether","the","migrat","was","finish","successfully."],["full","sp","site","exclus","exclud","object","the","object","to","be","exclud","under","the","site","site","fid","the","fid","of","the","sharepoint","site","collection."],["fusion","comput","cluster","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","fusioncomput","cluster","on","rubrik","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","name","name","of","the","fusioncomput","cluster.","cluster","uuid","uuid","of","the","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","fc","cluster","id","id","of","the","cluster","in","fusioncompute.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cdm","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","site","id","id","of","the","site","that","contain","this","cluster.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","vrm","id","id","of","the","vrm","that","manag","this","cluster."],["fusion","comput","cluster","connect","count","total","number","of","fusioncomputeclust","object","match","the","request"],["fusion","comput","datastor","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","capac","total","capac","of","the","datastore.","cdm","id","id","of","fusioncomput","datastor","on","rubrik","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","uuid","of","the","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","datastor","name","name","of","the","fusioncomput","datastore.","datastor","type","type","of","the","fusioncomput","datastore.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","fc","datastor","id","id","of","the","datastor","in","fusioncompute.","free","space","free","space","in","the","datastore.","host","host","associ","with","this","datastore.","id","id","of","the","hierarchi","object.","is","local","whether","the","datastor","is","local.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cdm","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","site","id","id","of","the","site","that","contain","this","datastore.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","vrm","id","id","of","the","vrm","that","manag","this","datastore."],["fusion","comput","datastor","connect","count","total","number","of","fusioncomputedatastor","object","match","the","request"],["fusion","comput","echo","respons","repli","the","reply."],["fusion","comput","host","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","fusioncomput","host","on","rubrik","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","id","id","of","the","cluster","that","contain","this","host.","cluster","uuid","uuid","of","the","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","fc","host","id","id","of","the","host","in","fusioncompute.","host","name","name","of","the","fusioncomput","host.","id","id","of","the","hierarchi","object.","ip","address","ip","address","of","the","fusioncomput","host.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cdm","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","site","id","id","of","the","site","that","contain","this","host.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","vrm","id","id","of","the","vrm","that","manag","this","host."],["fusion","comput","host","connect","count","total","number","of","fusioncomputehost","object","match","the","request"],["fusion","comput","mount","detail","cdm","id","rubrik","cluster","id","of","the","live","mount.","cluster","rubrik","cluster","of","the","fusioncomput","live","mount.","cluster","urn","target","cluster","urn.","datastor","name","datastor","name.","fid","fid","of","the","live","mount.","host","name","display","name","for","the","mount","target.","hold","the","host","urn","target","host","urn.","is","readi","describ","if","the","live","mount","is","ready.","mount","timestamp","timestamp","when","the","mount","was","creat","(human-read","string).","mount","vm","id","virtual","machin","id","of","the","mount","virtual","machine.","mount","vm","name","virtual","machin","name","of","the","mount","virtual","machine.","name","name","of","the","live","mount.","nas","ip","nas","ip","address.","new","vm","urn","virtual","machin","identifi","of","the","newli","creat","virtual","machine.","site","urn","target","site","urn.","snapshot","date","date","of","the","sourc","snapshot.","snapshot","fid","snapshot","fid","of","the","fusioncomput","mount.","sourc","vm","fid","virtual","machin","sourc","virtual","machin","fid","of","the","fusioncomput","mount.","sourc","vm","id","virtual","machin","id","of","the","sourc","virtual","machine.","sourc","vm","name","virtual","machin","name","of","the","sourc","virtual","machine.","unmount","timestamp","schedul","auto-unmount","time","of","the","live","mount.","set","vm","status","virtual","machin","status","of","the","live","mount."],["fusion","comput","mount","detail","connect","count","total","number","of","fusioncomputemountdetail","object","match","the","request"],["fusion","comput","network","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","fusioncomput","network","on","rubrik","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","uuid","of","the","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","fc","network","id","id","of","the","network","in","fusioncompute.","host","id","id","of","the","host","associ","with","this","network.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","network","name","name","of","the","fusioncomput","network.","network","type","type","of","the","fusioncomput","network.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cdm","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","site","id","id","of","the","site","that","contain","this","network.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","vrm","id","id","of","the","vrm","that","manag","this","network."],["fusion","comput","network","connect","count","total","number","of","fusioncomputenetwork","object","match","the","request"],["fusion","comput","site","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","fusioncomput","site","on","rubrik","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","uuid","of","the","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","fc","site","id","id","of","the","site","in","fusioncompute.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cdm","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","site","name","name","of","the","fusioncomput","site.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","vrm","id","id","of","the","vrm","that","manag","this","site."],["fusion","comput","site","connect","count","total","number","of","fusioncomputesit","object","match","the","request"],["fusion","comput","snapshot","resourc","spec","repli","resourc","spec","resourc","specif","for","the","snapshot."],["fusion","comput","virtual","disk","datastor","urn","urn","of","the","datastor","where","the","disk","resides.","disk","name","display","name","of","the","disk","(e.g.,","\"i-0000000d-vda\").","indep","disk","whether","the","disk","is","an","independ","disk","(not","is","thin","whether","the","disk","is","thin","provisioned.","quantiti","gb","provis","size","of","the","disk","in","gb.","sequenc","num","sequenc","number","(boot","order","index)","of","the","disk.","volum","url","url","path","to","the","volum","imag","file.","volum","urn","uniqu","resourc","name","of","the","volume.","volum","uuid","uuid","of","the","volume."],["fusion","comput","virtual","disk","connect","count","total","number","of","fusioncomputevirtualdisk","object","match","the","request"],["fusion","comput","virtual","machin","agent","status","fusioncomput","virtual","machin","agent","status.","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","fusioncomput","virtual","machin","on","rubrik","cdm.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","id","id","of","the","cluster","that","contain","this","virtual","cluster","uuid","uuid","of","the","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","disk","disk","inform","for","the","virtual","machine.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","fc","vm","id","virtual","machin","id","of","the","virtual","machin","in","fusioncompute.","guest","os","name","guest","oper","system","name.","host","id","id","of","the","host","that","contain","this","virtual","id","id","of","the","hierarchi","object.","ip","address","ip","address","of","the","fusioncomput","virtual","machine.","is","relic","whether","the","virtual","machin","is","a","relic.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cdm","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","contain","statist","for","the","protect","objects,","includ","physic","resourc","spec","resourc","specif","for","fusioncomput","virtual","machine.","secur","metadata","secur","postur","metadata.","site","id","id","of","the","site","that","contain","this","virtual","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","consist","mandat","snapshot","consist","mandat","for","the","virtual","machine.","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","vm","name","virtual","machin","name","of","the","fusioncomput","virtual","machine.","vrm","id","id","of","the","vrm","that","manag","this","virtual"],["fusion","comput","virtual","machin","connect","count","total","number","of","fusioncomputevirtualmachin","object","match","the","request"],["fusion","comput","vrm","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","fusioncomput","vrm","on","rubrik","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","uuid","of","the","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","connect","status","of","the","fusioncomput","vrm.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","name","hostnam","of","the","fusioncomput","vrm.","id","id","of","the","hierarchi","object.","ip","address","ip","address","of","the","fusioncomput","vrm.","is","refresh","whether","the","fusioncomput","vrm","has","been","refreshed.","is","replica","true","if","this","object","is","a","replica,","it","last","refresh","time","last","refresh","time","of","the","fusioncomput","vrm.","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cdm","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","usernam","usernam","for","the","fusioncomput","vrm."],["fusion","comput","vrm","connect","count","total","number","of","fusioncomputevrm","object","match","the","request"],["gcp","alloy","db","cluster","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cloud","nativ","id","gcp","nativ","id","of","the","object.","cluster","id","rubrik-gener","uniqu","identifi","for","the","alloydb","cluster.","cluster","type","cluster","type","(primari","or","secondari","for","cross-region","replication).","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","databas","version","databas","version","(e.g.,","postgres_14).","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","gcp","project","gcp","project","of","the","alloydb","cluster.","gcp","project","detail","project","detail","of","the","alloydb","cluster.","id","id","of","the","hierarchi","object.","is","exocomput","configur","specifi","whether","exocomput","is","configur","for","use","by","is","relic","indic","if","the","cluster","is","archived/deleted.","kms","key","kms","key","use","for","encryption,","if","any.","label","list","of","label","that","are","assign","to","the","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","id","cloud","provid","nativ","id","for","the","cluster.","nativ","name","display","name","of","the","alloydb","cluster.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","project","id","id","of","the","gcp","project","contain","this","cluster.","region","region","of","the","alloydb","cluster.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","state","current","oper","state","of","the","cluster.","storag","size","size","of","alloc","storag","in","gib.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["gcp","cloud","account","add","project","repli","detail","list","of","project","addit","details."],["gcp","cloud","account","get","project","respons","credenti","manag","by","manag","of","the","credentials.","featur","detail","status","of","each","enabl","featur","for","the","project","project","the","cloud","account","correspond","to","the","project","contain"],["gcp","cloud","account","miss","permiss","for","addit","miss","permiss","list","of","permiss","which","are","miss","for","the","project","id","project","id","of","the","project","for","which","permiss"],["gcp","cloud","account","oauth","complet","repli","user","info","user","information."],["gcp","cloud","account","oauth","initi","repli","client","id","oauth","client","id.","redirect","url","redirect","url.","scope","oauth","scope.","session","id","oauth","session","id.","state","base64","url","encod","json","string."],["gcp","cloud","account","project","detail","all","enabl","featur","detail","list","of","all","the","enabl","featur","and","their","credenti","manag","by","manag","of","the","credentials.","featur","detail","detail","of","the","gcp","cloud","account","feature.","project","gcp","cloud","account","project."],["gcp","cloud","account","project","for","oauth","credenti","manag","by","credentialsmanagedbi","specifi","who","manag","the","gcp","credenti","use","miss","permiss","list","of","permiss","miss","in","the","gcp","project.","name","gcp","project","name.","project","id","gcp","project","id."],["gcp","cloud","account","upgrad","project","repli","gcp","project","upgrad","status","status","of","the","oper","to","upgrad","gcp","cloud"],["gcp","cloud","sql","instanc","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","avail","type","high","avail","configur","type.","cloud","nativ","id","gcp","nativ","id","of","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","databas","version","databas","version","(e.g.,","mysql_5_7,","postgres_13).","edit","edit","of","the","cloud","sql","instance.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","engin","type","type","of","databas","engin","run","on","the","instance.","gcp","nativ","project","detail","project","detail","of","the","cloud","sql","instance.","gcp","project","gcp","project","of","the","cloud","sql","instance.","gcp","project","detail","project","detail","of","the","cloud","sql","instance.","id","id","of","the","hierarchi","object.","instanc","id","rubrik-gener","uniqu","identifi","for","the","cloud","sql","instance.","instanc","tier","tier","of","the","cloud","sql","instance.","is","exocomput","configur","specifi","whether","exocomput","is","configur","for","use","by","is","relic","indic","if","the","instanc","is","archived/deleted.","kms","key","kms","key","use","for","encryption,","if","any.","label","list","of","label","that","are","assign","to","the","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","id","cloud","provid","nativ","id","for","the","instance.","nativ","name","display","name","of","the","cloud","sql","instance.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","project","id","id","of","the","gcp","project","contain","this","instance.","region","region","of","the","cloud","sql","instance.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","state","current","oper","state","of","the","instance.","storag","size","size","of","alloc","storag","in","gib.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id","zone","zone","where","the","instanc","is","deployed."],["gcp","cloud","sql","instanc","connect","count","total","number","of","gcpcloudsqlinst","object","match","the","request"],["gcp","featur","with","permiss","group","featur","type","of","the","feature.","permiss","group","associ","permiss","group","details."],["gcp","get","exocomput","config","repli","exocomput","config","list","of","exocomput","configur","map","to","region."],["gcp","get","resourc","setup","templat","repli","templat","resourc","setup","templat","contain","the","terraform","script."],["gcp","nativ","disk","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","attach","instanc","instanc","to","which","the","disk","is","attached.","attach","spec","list","of","gce","instanc","detail","to","which","the","author","oper","the","author","oper","on","the","object.","cloud","nativ","id","gcp","nativ","id","of","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","disk","id","gcp","nativ","disk","id.","disk","name","name","of","the","disk.","disk","type","type","of","the","disk.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","file","index","status","specifi","the","file","index","status","for","this","gcp","gcp","nativ","project","gcp","project","of","the","disk.","gcp","nativ","project","detail","project","detail","of","the","disk.","gcp","project","gcp","project","of","the","disk.","gcp","project","detail","project","detail","of","the","disk.","id","id","of","the","hierarchi","object.","is","exocomput","configur","specifi","whether","exocomput","is","configur","for","use","by","is","relic","relic","status","of","the","disk.","kms","key","kms","key","for","the","disk.","label","label","attach","to","the","disk.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","gcp","nativ","name","of","the","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","project","id","gcp","project","id","for","the","disk.","region","region","of","the","disk.","replica","zone","replica","zone","of","the","disk.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","size","in","gi","bs","size","of","disk","in","gib.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id","zone","zone","of","the","disk."],["gcp","nativ","disk","connect","count","total","number","of","gcpnativedisk","object","match","the","request"],["gcp","nativ","gce","instanc","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","attach","disk","list","of","attach","gcp","nativ","disks.","attach","spec","list","of","gcp","disk","detail","attach","to","the","author","oper","the","author","oper","on","the","object.","cloud","nativ","id","gcp","nativ","id","of","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","file","index","status","specifi","the","file","index","status","for","this","gce","gcp","nativ","project","gcp","project","of","the","gce","instance.","gcp","nativ","project","detail","project","detail","of","the","gce","instance.","gcp","project","gcp","project","of","the","gce","instance.","gcp","project","detail","project","detail","of","the","gce","instance.","id","id","of","the","hierarchi","object.","is","exocomput","configur","specifi","whether","exocomput","is","configur","for","use","by","is","relic","specifi","whether","the","gcp","gce","instanc","is","relic","label","list","of","label","attach","to","the","gcp","instance.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","machin","type","the","machin","type","of","the","gcp","instance.","name","name","of","the","hierarchi","object.","nativ","id","gcp","gce","instanc","nativ","id.","nativ","name","gcp","gce","instanc","nativ","name.","network","host","project","nativ","id","network","host","project","nativ","id.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","project","id","gcp","project","id.","region","the","region","of","the","gcp","gce","instance.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","vpc","name","name","of","virtual","privat","cloud","(vpc)","associ","with","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id","zone","the","zone","of","the","gcp","gce","instance."],["gcp","nativ","gce","instanc","connect","count","total","number","of","gcpnativegceinst","object","match","the","request"],["gcp","nativ","kms","crypto","key","key","kms","crypto","key.","key","ring","kms","crypto","key","ring.","locat","kms","crypto","key","location.","project","nativ","id","gcp","project","nativ","id."],["gcp","nativ","network","firewal","rule","firewal","rule","of","the","gcp","nativ","vpc","network.","name","name","of","the","gcp","nativ","vpc","network.","nativ","project","id","project","id","of","the","gcp","nativ","vpc","network.","subnetwork","subnetwork","of","the","gcp","nativ","vpc","network."],["gcp","nativ","project","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","big","queri","dataset","count","number","of","bigqueri","dataset","in","the","gcp","project.","cloud","account","id","cloud","account","id","associ","with","the","project.","cloud","nativ","id","gcp","nativ","id","of","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","disk","count","number","of","disk","in","the","gcp","project.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","gcp","nativ","gce","instanc","connect","list","of","all","gce","instanc","under","this","gcp","all","org","all","tag","attach","disk","attach","spec","author","oper","cloud","nativ","id","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","file","index","status","gcp","nativ","project","gcp","nativ","project","detail","gcp","project","gcp","project","detail","id","is","exocomput","configur","is","relic","label","logic","path","machin","type","name","nativ","id","nativ","name","network","host","project","nativ","id","newest","index","snapshot","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","physic","path","project","id","region","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","connect","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","new","connect","vpc","name","workload","snapshot","connect","zone","id","id","of","the","hierarchi","object.","is","relic","whether","the","object","is","a","relic.","label","list","of","label","that","are","assign","to","the","last","refresh","at","last","refresh","time","of","the","gcp","project.","logic","child","connect","list","of","logic","children.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","id","nativ","id","of","the","gcp","project.","nativ","name","nativ","name","of","the","gcp","project.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","organiz","name","organiz","name","of","the","gcp","project.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","project","number","project","number","of","the","gcp","project.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","sql","instanc","count","number","of","cloud","sql","instanc","in","the","gcp","status","status","of","the","gcp","project.","vm","count","virtual","machin","number","of","virtual","machin","in","the","gcp","project."],["gcp","nativ","project","connect","count","total","number","of","gcpnativeproject","object","match","the","request"],["gcp","nativ","region","name","name","of","the","gcp","region.","zone","zone","within","the","region."],["gcp","nativ","root","object","type","descend","connect","list","of","descend","of","specif","object","type.","all","org","all","tag","cloud","nativ","id","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","relic","label","logic","path","name","nativ","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut"],["gcp","permiss","permiss","the","permission."],["gcp","role","base","account","cloud","account","id","the","id","of","this","cloud","account.","cloud","provid","the","type","of","this","cloud","provider.","connect","status","the","connect","status","of","this","cloud","account.","descript","the","descript","of","this","cloud","account.","name","the","name","of","this","cloud","account.","project","the","gcp","project","details."],["generat","cdm","totp","secret","repli","output","support","in","v5.3+"],["generat","cloud","direct","task","report","repli","file","id","extern","id","of","the","generat","report","file","(for","messag","status","message.","success","whether","the","report","generat","was","successful."],["generat","config","protect","restor","form","repli","configur","type","required.","support","configur","type","for","configur","protection.","configur","required.","support","in","v7.0+","configur","backed-up."],["generat","presign","url","for","download","repli","expir","at","expir","time","of","the","presign","url.","presign","url","presign","url","for","download."],["generat","presign","url","for","part","upload","repli","expir","at","expir","time","of","the","presign","url.","presign","url","presign","url","for","upload."],["generat","preview","messag","for","webhook","templat","repli","error","info","captur","detail","of","error","encount","within","the","system.","preview","messag","the","preview","messag","for","the","webhook","template."],["generat","recoveri","report","repli","report","id","report","id","is","same","as","task-chain","id","of"],["generat","totp","secret","repli","secret","totp","secret","key.","secret","uri","totp","secret","uri."],["generic","snapshot","date","the","date","of","the","snapshot.","expir","date","the","expir","date","of","the","snapshot.","id","the","id","of","the","snapshot.","index","attempt","the","number","of","index","attempt","for","the","snapshot.","is","anomali","flag","if","the","snapshot","is","an","anomaly.","is","corrupt","specifi","whether","or","not","the","snapshot","is","corrupted.","is","expir","specifi","whether","or","not","the","snapshot","is","expired.","is","index","specifi","whether","or","not","the","snapshot","is","indexed.","is","on","demand","snapshot","specifi","whether","the","snapshot","is","an","on-demand","snapshot.","is","quarantin","process","specifi","whether","rsc","is","process","the","snapshot","to","is","quarantin","specifi","whether","the","snapshot","is","quarantined.","is","unindex","specifi","whether","or","not","the","snapshot","is","unindexable.","snappabl","id","the","workload","id","of","the","snapshot."],["generic","snapshot","connect","count","total","number","of","genericsnapshot","object","match","the","request"],["get","anomali","detail","repli","activ","seri","id","activ","seri","id","for","the","event","of","this","anomali","analysi","locat","id","the","id","of","the","archiv","locat","where","ransomwar","anomali","analysi","locat","name","the","name","of","the","archiv","locat","where","ransomwar","anomali","info","inform","about","possibl","ransomwar","strains.","anomali","probabl","the","probabl","of","the","snapshot","be","anomalous.","anomali","type","type","of","the","anomali","detected.","byte","creat","count","total","new","byte","created.","byte","delet","count","total","byte","deleted.","byte","modifi","count","total","byte","modified.","byte","net","chang","count","net","chang","in","the","number","of","bytes.","for","byte","suspici","count","total","suspici","bytes.","cluster","the","rubrik","cluster","of","the","object.","detect","time","time","when","the","anomali","was","detected.","encrypt","level","of","encrypt","detected.","file","creat","count","the","count","of","new","file","created.","file","delet","count","the","count","of","file","deleted.","file","modifi","count","the","count","of","file","modified.","id","the","id","of","the","anomaly.","is","anomali","specifi","whether","the","snapshot","is","anomalous.","locat","the","locat","of","the","object.","manag","id","the","internal","manag","id","of","the","object.","object","type","the","type","of","the","object.","potenti","snooz","directori","the","list","of","directori","that","can","be","snooz","previous","snapshot","the","previous","snapshot.","previous","snapshot","date","the","date","of","the","previous","snapshot.","previous","snapshot","fid","the","fid","of","the","previous","snapshot.","previous","snapshot","id","the","id","of","the","previous","snapshot.","ransomwar","result","the","ransomwar","analysi","result,","includ","encryption.","resolut","status","specifi","the","resolut","status","of","the","anomaly.","sever","sever","of","the","anomaly.","snapshot","the","analyz","snapshot.","snapshot","date","the","date","of","the","snapshot.","snapshot","fid","the","internal","fid","of","the","snapshot.","snapshot","id","the","internal","id","of","the","snapshot.","suspici","file","count","total","number","of","suspici","files.","workload","fid","the","internal","fid","of","the","object.","workload","id","the","internal","id","of","the","object.","workload","name","the","name","of","the","object."],["get","archiv","reader","info","resp","activ","owner","locat","id","field","active_owner_location_id","contain","the","list","of","activ","(not","activ","reader","locat","id","field","active_reader_location_id","contain","the","list","of","activ","(not","reader","refresh","status","reader","refresh","status","contain","valid","json","data","for"],["get","azur","exocomput","network","setup","templat","repli","arm","templat","json","json","string","represent","of","the","arm","template."],["get","azur","host","type","resp","host","type","azur","host","type."],["get","azur","365","exocomput","resp","cluster","the","exocomput","cluster","details."],["get","cdm","user","respons","user","list","of","user","metadata","for","each","cluster."],["get","certif","info","repli","certif","the","certif","in","x509","pem","format.","expir","at","the","expir","date","of","the","certificate.","issu","by","the","issuer","of","the","certificate.","issu","on","the","date","when","the","certif","was","issued.","issu","to","to","whom","the","certif","was","issued.","serial","number","the","serial","number","in","hexadecim","format","of","the","sha","1","fingerprint","the","sha-1","fingerprint,","in","hexadecim","format,","of","the","sha","256","fingerprint","the","sha-256","fingerprint,","in","hexadecim","format,","of","the"],["get","cloud","nativ","applic","snapshot","repli","config","snapshot","the","config","snapshot","for","the","application.","workload","snapshot","per-workload-typ","snapshot","results."],["get","cloud","nativ","gateway","kms","key","repli","cloud","nativ","gateway","kms","key","map","cloudnativegatewaykmskeymap."],["get","cloud","nativ","label","rule","repli","label","rule","list","of","label","rule","visibl","to","the","user."],["get","cloud","nativ","tag","rule","object","type","repli","object","type","object_typ","is","the","object","type","of","the","cloud"],["get","cloud","nativ","tag","rule","repli","tag","rule","list","of","tag","rule","visibl","to","the","user."],["get","cloud","object","count","by","region","repli","cloud","object","count","by","region","per-region","cloud","object","counts,","one","entri","per","region"],["get","custom","face","download","repli","download","list","of","download","file","avail","for","the","customer."],["get","dashboard","summari","repli","analyz","result","hit","group","per","analyzer.","polici","result","hit","group","per","analyzer-group","(policy)."],["get","data","preview","repli","sampl","output","repres","the","sampl","output."],["get","exotask","imag","bundl","repli","aw","imag","aw","exocomput","imag","details.","azur","imag","azur","exocomput","imag","details.","bundl","imag","detail","of","the","exo-task","imag","in","the","bundle.","bundl","version","the","current","version","of","the","exotask","imag","bundle.","ek","version","ek","version","for","ek","version","depend","images.","repo","url","contain","the","url","of","rubrik","ecr","from","where"],["get","health","check","error","report","repli","csv","data","this","field","contain","the","csv-format","failur","report","as"],["get","health","monitor","polici","status","repli","item","list","of","health","monitor","polici","and","their","status."],["get","hit","exposur","stat","repli","exposur","hit","summari","sensit","hit","statist","group","by","exposur","type."],["get","host","rbs","network","throttl","respons","network","throttl","limit","the","network","throttl","limit","for","the","host."],["get","implicit","author","ancestor","summari","respons","object","summari","the","object","summaries."],["get","implicit","author","object","summari","respons","object","summari","the","object","summaries."],["get","laminar","featur","status","repli","aw","laminar","featur","status","true","if","the","laminar","featur","is","enabl","for","azur","laminar","featur","status","true","if","the","laminar","featur","is","enabl","for"],["get","laminar","sso","detail","repli","applic","url","the","url","to","the","laminar","environment.","cluster","id","the","id","of","the","laminar","cluster.","laminar","tenant","the","tenant","on","laminar","attach","to","the","rsc"],["get","latest","gpo","set","res","gpo","set","gpo","set","data","from","the","latest","dc","snapshot.","snapshot","time","timestamp","of","the","snapshot","used,","so","ui","can","uniform","json","uniform","json","tree","of","gpo","settings,","suitabl","for","version","number","raw","gpo","version","number","from","ad","versionnumb","attribute."],["get","licens","product","info","repli","cluster","product","repres","a","list","of","licens","cluster","products."],["get","mfa","set","repli","is","totp","enforc","global","boolean","valu","indic","whether","totp","is","global","enforced.","is","totp","global","enforc","lock","boolean","valu","indic","whether","totp","global","enforc","is","is","totp","mandatori","specifi","whether","totp","is","mandatory.","mandatori","totp","enforc","date","specifi","the","date","when","totp","enforc","becom","mandatory.","mfa","rememb","hour","integ","valu","indic","the","time","of","rememb","the","totp","remind","hour","integ","valu","indic","the","period","of","show","totp"],["get","mosaic","recover","rang","respons","data","support","in","m3.2.0-m4.2.0","object","with","detail","of","ani","messag","support","in","m3.2.0-m4.2.0","respons","messag","string.","return","code","support","in","m3.2.0-m4.2.0","return","code.","status","support","in","m3.2.0-m4.2.0","status","of","the","request."],["get","nutanix","mount","repli","mount","nutanix","mount","list."],["get","365","servic","status","resp","last","updat","the","last","updat","time.","status","the","servic","status."],["get","365","storag","stat","resp","daili","growth","in","byte","total","daili","growth,","in","bytes,","of","physic","data","estim","thirti","day","storag","in","byte","estim","physic","data","size","after","30","days.","live","data","size","in","byte","logic","size,","in","bytes,","of","all","success","ingest","physic","data","size","in","byte","size,","in","bytes,","of","all","live","data","after","physic","data","size","time","seri","time","seri","consist","of","the","physic","data","size","storag","effici","percent","data","storag","efficiency,","as","a","percentage."],["get","object","protect","and","sensit","summari","repli","object","protect","summari","per","snappabl","type","object","protect","summari","per","workload","type.","relic","object","summari","per","snappabl","type","relic","object","summari","per","workload","type.","unaccess","summari","per","snappabl","type","unaccess","object","summari","per","workload","type."],["get","or","creat","byok","azur","app","repli","client","id","app","id","of","the","creat","or","retriev","azur"],["get","owner","filter","valu","repli","owner","each","entri","correspond","to","a","princip","owner."],["get","passkey","config","repli","passkey","config","passkey","config","for","current","org."],["get","passkey","info","repli","passkey","config","passkey","config","for","current","account.","passkey","all","passkey","for","the","current","user."],["get","paus","object","res","note","user","note,","if","any,","state","the","reason","for","object","id","repres","the","object","id","of","a","paus","object.","object","name","name","of","the","paus","object.","object","type","repres","the","manag","object","type","of","a","paus","paus","start","date","the","time","when","the","object","was","paused.","paus","by","inform","about","the","person","who","issu","the","pause.","pend","paus","status","pend","paus","assign","status","for","the","object.","snappabl","hierarchi","type","repres","the","workload","hierarchi","type","of","a","paus"],["get","paus","object","res","connect","count","total","number","of","getpausedobjectr","object","match","the","request"],["get","pend","sla","assign","repli","invalid","id","required.","list","of","invalid","manag","id","from","the","object","with","no","op","required.","list","of","object","with","complet","sla","domain","object","with","pend","op","required.","list","of","object","with","pend","sla","domain"],["get","pipelin","health","repli","fail","analysi","the","number","of","fail","analysi","oper","in","the","fail","backup","the","number","of","fail","backup","in","the","specifi","fail","index","the","number","of","fail","index","oper","in","the","total","analysi","the","total","number","of","analysi","oper","in","the","total","backup","the","total","number","of","backup","in","the","specifi","total","index","the","total","number","of","index","oper","in","the"],["get","polici","max","last","evalu","at","type","max","last","evalu","at","maximum","last","evalu","timestamp","among","all","polici","of"],["get","polici","timelin","repli","high","risk","cloud","object","count","of","cloud","object","with","high","risk.","high","risk","datacent","object","count","of","data","center","object","with","high","risk.","high","risk","object","count","of","high-risk","objects.","high","risk","saa","object","count","of","saa","object","with","high","risk.","high","risk","sensit","file","count","of","high-risk","sensit","files.","high","sensit","hit","count","of","high","sensit","hits.","initi","analysi","status","count","of","workload","undergo","initi","analysis.","low","risk","object","count","of","low-risk","objects.","low","risk","sensit","file","count","of","low-risk","sensit","files.","low","sensit","hit","count","of","low","sensit","hits.","medium","risk","object","count","of","medium-risk","objects.","medium","risk","sensit","file","count","of","medium-risk","sensit","files.","medium","sensit","hit","count","of","medium","sensit","hits.","no","risk","object","count","of","no-risk","objects.","no","risk","sensit","file","count","of","no","risk-sensit","files.","non","sensit","hit","count","of","non","sensit","hits.","out","of","date","status","count","of","workload","that","are","not","up","to","polici","file","hit","entri","per-polici","sensitive-fil","count","over","time.","polici","hit","entri","per-polici","sensitive-hit","count","over","time.","polici","oa","file","hit","entri","per-polici","open-access","sensitive-fil","count","over","time.","polici","stale","file","hit","entri","per-polici","stale","sensitive-fil","count","over","time.","polici","summari","summari","of","the","polici","in","this","timeline.","total","file","hit","entri","total","sensitive-fil","count","over","time.","total","hit","entri","total","sensitive-hit","count","over","time.","total","oa","file","entri","total","open-access","file","count","over","time.","total","oa","file","hit","entri","total","open-access","sensitive-fil","count","over","time.","total","oa","folder","entri","total","open-access","folder","count","over","time.","total","risk","object","count","of","object","with","non-zero","sensit","hits.","total","stale","file","hit","entri","total","stale","sensitive-fil","count","over","time.","total","stale","oa","file","entri","total","stale","open-access","file","count","over","time.","up","to","date","status","count","of","workload","that","are","up","to","date."],["get","polici","filter","valu","type","possibl","relationship","the","possibl","relationship","between","filter","values.","possibl","valu","a","list","of","valu","or","a","two-level","tree"],["get","possibl","categori","type","polici","categori","the","list","of","possibl","polici","categories."],["get","possibl","snapshot","locat","for","object","resp","has","next","indic","if","there","are","more","locat","avail","beyond","snapshot","locat","list","of","locat","on","which","snapshot","of","the"],["get","princip","count","repli","idp","princip","count","idp","wise","princip","count.","princip","count","princip","count."],["get","princip","risk","chang","repli","princip","chang","list","of","principals."],["get","princip","risk","summari","repli","risk","summari","princip","risk","summari","from","the","given","time","range."],["get","princip","risk","trend","repli","princip","risk","date-wis","risk","summari","of","principal."],["get","princip","summari","repli","privileg","api","permiss","count","count","of","privileg","api","permiss","grant","to","the","privileg","member","count","privileg","member","count","of","the","principal.","privileg","membersof","count","privileg","members-of","count","of","the","principal.","privileg","role","count","privileg","role","count","of","the","principal.","secret","count","number","of","secret","assign","to","the","principal.","summari","princip","summary."],["get","princip","tag","stat","repli","atrisk","aggreg","statist","for","at-risk","tag.","privileg","aggreg","statist","for","privileg","tag.","sensit","aggreg","statist","for","sensit","tag."],["get","privileg","princip","summari","resp","princip","type","summari","list","of","summari","by","each","princip","type.","total","summari","total","summari","of","privileg","principals."],["get","recoveri","analysi","result","resp","estim","recoveri","time","second","estim","time","to","complet","the","recoveri","operation,","in","metadata","metadata","about","the","analysi","includ","time","rang","and","summari","aggreg","statist","summar","activ","across","all","users.","user","analys","per-us","analysi","result","show","exchange,","onedrive,","and","sharepoint."],["get","remedi","type","type","remedi","the","possibl","remedi","type","and","their","availability.","target","the","target","that","the","remedi","appli","to."],["get","3","bucket","state","for","recoveri","repli","is","object","acl","enabl","specifi","whether","object","acl","is","enabl","on","the","is","version","enabl","specifi","whether","the","version","is","enabl","on","the"],["get","schema","respons","data","support","in","m3.2.0-m4.2.0","object","with","schema","details.","messag","support","in","m3.2.0-m4.2.0","respons","messag","string.","return","code","support","in","m3.2.0-m4.2.0","return","code.","status","support","in","m3.2.0-m4.2.0","status","of","the","request."],["get","script","for","manual","permiss","valid","repli","bash","script","bash","script","for","permiss","validation.","powershel","script","powershel","script","for","permiss","validation."],["get","self","serv","roll","upgrad","repli","enabl","whether","roll","upgrad","is","enabl","for","the","account."],["get","self","servic","info","for","user","resp","mailbox","mailbox","object,","if","any,","belong","to","the","user.","name","name","of","the","logged-in","user.","onedr","onedr","object,","if","any,","belong","to","the","user.","org","id","organiz","organiz","rsc","id","of","the","m365","organiz","to","which"],["get","skip","team","site","report","resp","extern","download","id","a","report","of","the","workload","restored.","total","skip","site","count","it","is","the","total","number","of","skip","sites."],["get","smb","configur","repli","output","support","in","v5.0+"],["get","sql","server","setup","script","repli","bulk","script","detail","list","of","script","detail","for","the","input","databas"],["get","support","case","comment","repli","comment","comment","on","the","support","case."],["get","taskchain","status","repli","taskchain","the","taskchain."],["get","threat","monitor","object","enabl","stat","respons","enabl","object","count","of","enabl","object","for","threat","monitoring.","support","object","count","of","support","object","for","threat","monitoring."],["get","totp","status","repli","is","enabl","totp","as","2fa","is","enabled.","is","enforc","totp","as","2fa","is","enforced.","is","enforc","user","level","specifi","whether","totp","is","enforc","at","the","user","is","support","specifi","whether","totp","is","support","for","the","user.","totp","config","updat","at","timestamp","of","last","totp","configur","update.","totp","remind","hour","integ","valu","indic","the","period","of","show","totp"],["get","user","detail","repli","locat","display-friend","locat","string","for","the","user.","name","display","name","of","the","user.","num","file","access","number","of","file","this","user","can","access.","risk","risk","level","comput","for","the","user","over","the"],["get","user","session","manag","config","repli","config","user","session","manag","configuration."],["get","user","summari","repli","user","summari","summari","for","the","select","user","summari","type."],["get","valid","region","for","dynamo","db","recoveri","repli","region","list","of","valid","region","for","dynamodb","recovery."],["get","whitelist","repli","enabl","specifi","whether","the","ip","allowlist","is","enabled.","ip","cidr","the","list","of","ip","address","in","the","allowlist.","ip","info","list","of","all","ip","entri","in","the","allowlist.","mode","the","mode","of","the","ip","allowlist."],["get","workload","alert","set","repli","enabl","specifi","whether","anomali","alert","are","enabl","or","not."],["git","hub","connect","status","summari","repli","connect","status","count","list","of","connect","status","counts."],["github","organiz","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","backup","locat","backup","locat","associ","with","the","github","organization.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","connect","status","of","the","github","organization.","dev","op","org","type","organiz","organiz","type","of","the","devop","organization.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exocomput","exocomput","associ","with","the","github","organization.","id","id","of","the","hierarchi","object.","is","relic","true","if","the","github","organiz","is","a","relic.","last","refresh","time","last","refresh","time","of","the","github","organization.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","id","nativ","id","of","the","github","organization.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","org","url","organiz","organiz","canon","organiz","url,","e.g.","\"https://github.com/my-org\"","or","\"https://acme.ghe.com/my-org\"","for","physic","path","sequenti","list","of","the","physic","ancestor","of","this","repo","count","number","of","repositori","in","the","github","organization.","repo","host","type","exocomput","host","type","of","the","github","organization.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","rubrik","host","exocomput","rubrik","host","exocomput","associ","with","the","github","organization.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["github","organiz","connect","count","total","number","of","githuborgan","object","match","the","request"],["github","repositori","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","true","if","the","github","repositori","is","a","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","org","id","organiz","organiz","manag","object","id","of","the","github","organiz","associ","org","name","organiz","organiz","name","of","the","github","organiz","associ","with","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","size","size","of","the","github","repositori","in","bytes.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["github","repositori","connect","count","total","number","of","githubrepositori","object","match","the","request"],["global","certif","cdm","usag","the","usag","for","the","certif","on","rubrik","clusters.","certif","the","certif","in","raw","pem","format.","certif","fid","the","fid","of","the","certificate.","certif","id","the","id","of","the","certificate.","certif","rotat","specifi","the","certif","rotat","details.","cluster","the","rubrik","cluster","to","which","the","certif","has","descript","the","descript","of","the","certificate.","expir","at","the","expir","date","of","the","certificate.","has","key","specifi","whether","the","certif","has","a","privat","key.","is","ca","specifi","whether","the","certif","is","a","ca.","is","ca","sign","specifi","if","the","certif","is","sign","by","a","is","cdm","born","specifi","whether","the","certif","was","import","direct","from","issu","by","the","issuer","of","the","certificate.","issu","on","the","date","on","which","the","certif","was","issued.","issu","to","to","whom","the","certif","was","issued.","issuer","type","specifi","the","type","of","the","certif","issuer.","key","strength","the","cryptograph","key","strength","of","the","certif","(for","key","type","the","cryptograph","key","type","of","the","certif","(for","name","the","display","name","of","the","certificate.","org","organiz","organiz","the","organiz","to","which","the","certif","has","been","rbs","host","usag","specifi","the","host","that","use","this","certif","for","serial","number","the","serial","number","of","the","certificate,","in","hexadecim","sha","1","fingerprint","the","sha-1","fingerprint","of","the","certificate,","in","hexadecim","sha","256","fingerprint","the","sha-256","fingerprint","of","the","certificate,","in","hexadecim","status","the","expir","status","of","the","certificate.","usag","the","usag","for","the","certif","on","rubrik","secur","user","has","privileg","to","schedul","rotat","specifi","whether","the","user","has","the","privileg","to"],["global","certif","connect","count","total","number","of","globalcertif","object","match","the","request"],["global","file","search","repli","data","support","in","v5.1+","list","of","match","objects.","has","more","support","in","v5.1+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.1+","total","list","responses."],["global","manag","connect","url","url","ping","to","check","connectivity."],["global","sla","for","filter","id","id","of","the","sla","domain.","name","name","of","the","sla","domain."],["global","sla","for","filter","connect","count","total","number","of","globalslaforfilt","object","match","the","request"],["global","sla","repli","all","org","have","access","specifi","the","list","of","organiz","that","have","view","all","org","with","access","this","field","is","deprecated.","archiv","locat","upgrad","info","upgrad","inform","about","the","configur","archiv","locat","and","archiv","spec","archiv","specif","for","the","sla","domain.","archiv","spec","list","of","archiv","specif","for","sla","domain.","backup","locat","spec","list","of","backup","locat","specif","for","the","sla","backup","type","type","of","backup.","backup","window","spec","group","of","backup","window","allow","backup","termination.","this","backup","window","backup","window","for","the","sla","domain.","base","frequenc","base","frequenc","for","the","sla","domain.","cluster","to","sync","status","map","sync","status","of","the","clusters.","cluster","uuid","rubrik","cluster","id","of","the","sla","domain.","descript","descript","of","the","sla","domain.","first","full","backup","window","first","full","backup","windows.","ha","polici","ha","polici","of","the","ha","sla","domain.","id","the","id","of","the","sla","domain.","is","archiv","specifi","whether","the","sla","domain","is","archiv","or","is","default","specifi","whether","the","sla","domain","is","a","default","is","read","onli","specifi","whether","the","sla","domain","is","read-only.","is","retent","lock","sla","specifi","if","this","sla","domain","is","retention-lock","or","local","retent","limit","local","retent","limit.","log","config","log","configur","of","the","sla","domain.","name","the","name","of","the","sla","domain.","object","specif","config","the","object-specif","configur","of","the","sla","domain.","object","type","the","object-typ","support","by","the","sla","domain.","owner","org","organiz","organiz","specifi","the","owner","organiz","of","the","sla","domain.","owner","org","name","organiz","organiz","this","field","is","deprecated.","paus","cluster","info","inform","about","rubrik","cluster","where","this","sla","domain","protect","object","count","workload","count","for","the","sla","domain.","purpos","purpos","of","the","sla","domain.","replic","spec","replic","specif","for","the","sla","domain.","replic","spec","2","replic","specif","for","the","sla","domain.","retent","lock","mode","specifi","the","retent","lock","mode","when","enabl","for","snapshot","schedul","snapshot","schedul","for","the","sla","domain.","snapshot","schedul","last","updat","at","last","updat","timestamp","of","the","snapshot","schedul","of","sourc","cluster","sourc","cluster","configur","in","the","sla","domain.","state","version","state","version","of","the","sla","domain.","ui","color","color","of","the","sla","domain","on","the","user","upgrad","info","sla","domain","upgrad","information.","version","the","version","of","the","sla","domain."],["global","sla","status","cluster","cluster","where","the","global","sla","is","synced.","paus","status","paus","status","of","given","cluster.","paus","sla","info","inform","about","the","paus","sla","domain.","sync","status","sync","status","of","given","cluster."],["global","sla","status","connect","count","total","number","of","globalslastatus","object","match","the","request"],["glue","iceberg","catalog","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","cloud","nativ","id","aw","nativ","id","of","the","glue","catalog.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","whether","the","catalog","is","a","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","aw","nativ","name","of","the","catalog.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","aw","region","of","the","catalog.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","tag","tag","associ","with","the","catalog."],["glue","iceberg","databas","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cloud","nativ","id","aw","nativ","id","of","the","glue","database.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","whether","the","databas","is","a","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","aw","nativ","name","of","the","database.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","aw","region","of","the","database.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","tag","tag","associ","with","the","database."],["glue","iceberg","inventori","stat","repli","aw","account","count","aw","nativ","account","with","the","glue","iceberg","protect","catalog","count","glue","iceberg","catalog","visibl","to","the","caller.","databas","count","glue","iceberg","databas","visibl","to","the","caller.","tabl","protect","count","subset","of","`tablestotalcount`","that","are","protect","by","an","tabl","total","count","glue","iceberg","tabl","visibl","to","the","caller."],["glue","iceberg","tabl","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cloud","nativ","id","aw","nativ","id","of","the","glue","table.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","data","locat","region","region","of","the","storag","locat","where","the","tabl","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","exocomput","configur","whether","exocomput","is","configur","for","the","region","where","is","relic","whether","the","tabl","is","a","relic.","locat","s3","data","locat","for","this","table.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","aw","nativ","name","of","the","table.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","aw","region","of","the","table.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","size","byte","size","of","the","iceberg","tabl","in","bytes.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","tag","tag","associ","with","the","table.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["googl","workspac","org","organiz","organiz","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","api","usag","the","api","usag","of","the","organiz","dure","the","author","oper","the","author","oper","on","the","object.","backup","job","stat","stat","of","the","backup","job","in","the","last","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","the","connect","status","to","the","organization.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","environ","type","the","environ","type","of","the","googl","workspac","organization.","id","id","of","the","hierarchi","object.","last","refresh","time","the","time","at","which","the","googl","workspac","organiz","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","natur","id","id","of","the","googl","workspac","organiz","at","the","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","onboard","app","type","list","of","onboard","app","types.","org","url","organiz","organiz","the","url","of","the","googl","workspac","organization.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rbac","hierarchi","node","list","of","rbac","hierarchi","nodes.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","saa","app","org","info","organiz","organiz","the","inform","of","the","saa","app","organization.","saa","org","type","organiz","organiz","the","organiz","type","that","categor","the","saa","provider.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","the","status","of","the","googl","workspac","organization.","storag","region","the","rsc","storag","region","for","the","organization.","storag","region","the","storag","region","where","rsc","back","up","organiz"],["group","activ","user","user","from","the","user","group","who","are","current","all","org","the","suborgan","in","which","the","user","group","has","domain","name","domain","name","of","the","user","group.","group","id","the","id","of","the","user","group.","group","name","the","name","of","the","user","group.","role","user","group","role","in","the","context","organization.","user","user","from","the","user","group","who","are","logged-in"],["group","connect","count","total","number","of","group","object","match","the","request"],["group","count","count","group","member","count.","group","group","name."],["group","count","list","with","total","group","list","list","of","cluster","group","by","upgrad","status.","total","count","total","count","of","rubrik","clusters."],["guest","credenti","detail","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["guest","os","credenti","cluster","cluster","of","the","guest","os","credential.","descript","descript","of","the","guest","os","credential.","domain","domain","name","of","the","guest","os","credential.","id","id","of","the","guest","os","credential.","usernam","usernam","of","the","guest","os","credential."],["guest","os","credenti","connect","count","total","number","of","guestoscredenti","object","match","the","request"],["ha","polici","archiv","locat","count","number","of","archiv","locat","in","this","high-avail","policy.","creation","time","creation","time","of","the","high-avail","policy.","descript","descript","of","the","high-avail","policy.","host","count","number","of","host","in","this","high-avail","policy.","id","uniqu","identifi","of","the","high-avail","policy.","last","updat","time","last","updat","time","of","the","high-avail","policy.","name","name","of","the","high-avail","policy.","object","count","number","of","object","(protect","workloads)","in","this","high-avail","primari","cluster","uuid","primari","cluster","uuid.","secondari","cluster","uuid","secondari","cluster","uuid","for","failov","destinations.","status","status","of","the","high-avail","policy.","status","messag","status","messag","provid","addit","details."],["ha","polici","connect","count","total","number","of","hapolici","object","match","the","request"],["has","access","to","365","object","resp","has","access","true","if","user","has","access","to","ani","o365"],["has","relic","azur","ad","snapshot","repli","type","has","relic","snapshot","specifi","whether","the","microsoft","entra","id","has","relic"],["help","content","snippet","categori","categori","of","the","content.","descript","summari","of","the","help","content.","id","id","of","the","help","content.","last","updat","timestamp","of","when","the","content","was","last","updated.","link","url","point","to","the","complet","help","content.","sourc","datasourc","for","help","content.","sourc","label","display","label","for","the","datasourc","(for","exampl","\"rsc","titl","titl","of","the","help","content."],["help","content","snippet","connect","count","total","number","of","helpcontentsnippet","object","match","the","request"],["hierarchi","object","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["hierarchi","object","connect","count","total","number","of","hierarchyobject","object","match","the","request"],["hierarchi","snappabl","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["hierarchi","snappabl","connect","count","total","number","of","hierarchysnapp","object","match","the","request"],["host","diagnosi","summari","connect","support","in","v5.0+"],["host","failov","cluster","all","node","the","list","of","host","make","up","this","host","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","the","cdm","cluster.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","archiv","boolean","variabl","denot","if","archived.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","node","os","type","the","os","type","of","the","host","failov","cluster.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","connect","status","of","failov","cluster."],["host","failov","cluster","connect","count","total","number","of","hostfailoverclust","object","match","the","request"],["host","for","failov","group","id","host","id.","inelig","reason","reason","whi","the","host","is","inelig","(if","not","is","elig","whether","the","host","is","elig","for","add","to","name","name","of","the","host.","os","type","os","type","of","the","host.","rbs","status","rbs","status","of","the","host."],["host","for","failov","group","connect","count","total","number","of","hostforfailovergroup","object","match","the","request"],["host","share","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","changelist","enabl","specifi","whether","the","changelist","option","is","enabled.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nas","migrat","info","inform","pertain","to","migrat","of","the","nas","host","nas","share","type","data","access","protocol","(nfs/smb)","for","nas","host","share.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["host","share","connect","count","total","number","of","hostshar","object","match","the","request"],["hot","add","bandwidth","info","export","limit","required.","support","in","v5.3+","the","hotadd","bandwidth","limit","ingest","limit","required.","support","in","v5.3+","the","hotadd","bandwidth","limit"],["hot","add","network","config","with","name","network","name","support","in","v5.3+","the","name","of","the","hotadd","static","ip","config","support","in","v5.3+"],["hyper","v","cluster","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","connect","status","of","hyperv","cluster.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","server","id","list","of","hyperv","server","id","in","the","cluster.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["hyper","v","live","mount","attach","disk","count","number","of","disk","attach","to","the","target","virtual","cluster","cluster","of","the","live","mount.","id","fid","of","the","live","mount.","is","disk","level","mount","describ","if","the","mount","is","a","disk","mount.","is","vm","readi","virtual","machin","describ","if","the","live","mount","is","ready.","mount","spec","specif","of","the","live","mount","in","json","string.","mount","time","time","when","the","snapshot","was","mounted.","mount","vm","fid","virtual","machin","id","of","the","mount","virtual","machine..","mount","vm","status","virtual","machin","power","status","of","hyperv","live","mount.","name","name","of","the","live","mount.","server","fid","id","of","the","hyperv","server.","server","name","host","name","of","the","server","where","hyper-v","virtual","sourc","snapshot","sourc","snapshot","of","the","live","mount.","sourc","vm","virtual","machin","name","of","the","sourc","virtual","machine.","sourc","vm","fid","virtual","machin","id","of","the","sourc","virtual","machine..","target","vm","virtual","machin","name","of","the","target","virtual","machin","for","disk","target","vm","fid","virtual","machin","id","of","the","target","virtual","machin","for","disk"],["hyper","v","live","mount","connect","count","total","number","of","hypervlivemount","object","match","the","request"],["hyper","vscvmm","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","connect","status","of","scvmm","host.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","name","name","or","ip","address","of","scvmm","host.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","run","as","account","the","runa","account","which","will","be","use","to","scvmm","info","the","addit","inform","avail","for","the","system","center","secur","metadata","secur","postur","metadata.","should","deploy","agent","flag","to","specifi","if","rubrik","can","deploy","the","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","connect","status","of","the","scvmm","server."],["hyper","vscvmm","connect","count","total","number","of","hypervscvmm","object","match","the","request"],["hyper","v","virtual","machin","agent","status","agent","status","of","hyper-v","virtual","machine.","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","the","virtual","machin","in","rubrik","cdm.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","hyperv","vm","mount","count","virtual","machin","hyper-v","virtual","machin","live","count","connection.","id","id","of","the","hierarchi","object.","is","relic","flag","to","indic","whether","the","virtual","machin","is","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","os","type","type","of","oper","system","use","by","the","hyper-v","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","protect","date","hyper-v","virtual","machin","sla","domain","protect","start","date.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","stat","for","hyper-v","virtual","machin","(e.g.,","capacity).","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info"],["hyper","v","virtual","machin","connect","count","total","number","of","hypervvirtualmachin","object","match","the","request"],["hyperv","host","summari","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","total","support","in","v5.0+","total","list","responses."],["hyperv","host","virtual","switch","repli","result","per-host","virtual","switch","results,","one","entri","per","request"],["hyperv","scvmm","updat","repli","hyperv","scvmm","summari","hyperv","scvmm","updat","properti","of","hyper-v","scvmm","object."],["hyperv","server","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","connect","status","of","hyper-v","host.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","hostnam","name","or","ip","address","of","hyper-v","host.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","status","of","the","hyper-v","server."],["hyperv","server","connect","count","total","number","of","hypervserv","object","match","the","request"],["hyperv","top","level","descend","type","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["hyperv","top","level","descend","type","connect","count","total","number","of","hypervtopleveldescendanttyp","object","match","the","request"],["hyperv","virtual","machin","detail","guest","os","type","hyperv","virtual","machin","summari","hyperv","virtual","machin","updat","is","agent","regist","support","in","v5.0+","return","whether","the","rubrik","connector","natur","id","oper","system","type","virtual","disk","info","support","in","v5.2+","brief","inform","about","all","virtual"],["hyperv","virtual","machin","snapshot","file","detail","config","file","info","support","in","v9.1+","virtual","disk","info","required.","support","in","v9.1+"],["hyperv","virtual","switch","respons","data","required.","support","in","v9.6+","list","of","virtual","switches.","has","more","required.","support","in","v9.6+","indic","if","there","are"],["ident","data","locat","encrypt","info","cipher","cipher","use","to","encrypt","the","data","location.","encrypt","type","encrypt","type","use","for","the","data","location.","key","name","key","name","use","to","encrypt","the","data","location.","key","vault","name","key","vault","name","use","to","encrypt","the","data","key","version","key","version","use","to","encrypt","the","data","location.","locat","name","name","of","the","data","location.","workload","id","workload","id","for","the","data","location.","workload","type","workload","type","for","the","data","location."],["ident","data","locat","encrypt","info","connect","count","total","number","of","identitydatalocationencryptioninfo","object","match","the","request"],["ident","provid","activ","user","count","number","of","user","from","the","ident","provid","that","allow","idp","initi","sso","specifi","whether","idp-initi","sso","is","allow","for","this","author","group","count","number","of","author","group","for","the","ident","provider.","entiti","id","entityid","of","the","ident","provider.","expir","date","expir","date","of","the","ident","provid","metadata.","id","uniqu","identifi","of","the","ident","provider.","idp","claim","attribut","list","of","claim","attribut","of","the","ident","provider.","is","default","specifi","whether","the","ident","provid","is","the","default.","is","forc","authn","enabl","whether","the","saml","authnrequest","sent","to","this","ident","metadata","json","metadata","of","the","ident","provid","in","json","format.","name","name","of","the","ident","provider.","owner","org","id","organiz","organiz","id","of","the","organiz","that","own","the","ident","sign","in","url","url","of","singl","sign-on","endpoint.","sign","out","url","url","of","the","singl","sign-out","endpoint.","sign","certif","sign","certif","of","the","ident","provider.","sp","initi","sign","in","url","url","of","servic","provid","initi","singl","sign-on.","sp","initi","test","url","url","of","servic","provid","initi","singl","sign-on","for"],["ignor","cluster","remov","precheck","repli","can","ignor","precheck","specifi","whether","the","cluster","remov","precheck","can","be","ignor","precheck","time","timestamp","when","the","cluster","remov","precheck","can","be","is","air","gap","specifi","whether","the","cluster","is","air-gapped.","is","disconnect","whether","the","cluster","is","disconnected.","last","connect","time","the","time","when","the","cluster","was","last","found"],["initi","upload","session","repli","part","size","size","of","each","part","for","multipart","upload.","session","id","uniqu","identifi","for","the","upload","session."],["instal","version","group","count","count","count","of","cluster","in","each","version.","group","version","name.","is","upgrad","recommend","upgrad","recommend","value."],["instanc","properti","repli","instanc","properti","list","of","instanc","properti","avail","for","the","request"],["integr","ingest","status","last","run","start","time","last","time","the","job","start","running.","last","success","time","last","success","ingest","time."],["internal","get","cluster","ip","respons","item"],["internal","get","default","gateway","respons","item"],["internal","get","rout","respons","item","respons","field","for","rout","from","cdm."],["internal","replic","bandwidth","incom","respons","item","timeseries,","in","byte","per","second."],["internal","replic","bandwidth","outgo","respons","item","timeseries,","in","byte","per","second."],["inventori","root","descend","connect","list","of","descendants.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut"],["inventori","sub","hierarchi","root","child","connect","list","of","children.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","descend","connect","list","of","descendants.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","root","enum","top","level","descend","connect","list","of","top-level","descend","(with","respect","to","rbac).","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut"],["investig","csv","download","link","repli","download","link","link","for","the","csv","file","which","can","be"],["ioc","feed","entri","author","ioc","author.","disabl","info","onli","set","if","the","ioc","is","deactiv","by","hash","info","hash","detail","if","the","ioc","type","is","hash.","intel","id","uniqu","identifi","of","the","intel.","ioc","status","status","of","the","feed","entry.","ioc","type","type","of","the","ioc.","last","updat","time","last","updat","time","of","the","ioc","from","the","provid","info","provid","specif","info.","provid","ioc","id","id","of","the","ioc","from","the","provider.","provid","malwar","id","id","of","the","malwar","from","the","provider.","threat","famili","the","threat","famili","associ","with","the","ioc.","yara","info","yara","rule","detail","if","the","ioc","type","is"],["ioc","feed","entri","connect","count","total","number","of","iocfeedentri","object","match","the","request"],["ip","info","contain","current","ip","address","whether","the","entri","contain","the","current","ip","address.","creat","at","the","timestamp","for","when","the","entri","was","first","descript","the","descript","of","the","entry.","id","id","of","the","entry.","ip","cidr","the","ip","address,","range,","or","subnet","of","the","is","global","entri","whether","the","entri","is","inherit","from","the","global","updat","at","the","timestamp","for","when","the","entri","was","last"],["ip","info","connect","count","total","number","of","ipinfo","object","match","the","request"],["ip","whitelist","set","enabl","whether","ip","allowlist","is","enabled.","is","inherit","from","global","whether","ip","allowlist","is","inherit","from","the","global","mode","mode","of","the","ip","allowlist."],["is","cloud","cluster","disk","upgrad","avail","repli","is","upgrad","avail","specifi","whether","a","disk","upgrad","is","avail","for"],["is","cloud","nativ","tag","rule","name","uniqu","repli","is","uniqu","indic","whether","the","rule","name","is","uniqu","or"],["is","volum","snapshot","restor","repli","is","restor","specifi","whether","the","eb","volum","snapshot","is","restorable."],["issu","event","file","result","id","latest","polici","obj","open","time","pagin","id","polici","resolv","time","violat"],["issu","connect","count","total","number","of","issu","object","match","the","request"],["job","info","status","status","of","a","cdm","job."],["8","s","app","manifest","is","success","specifi","the","success","or","failur","status.","to","appli","manifest","inform","to","appli","the","new","version.","to","delet","manifest","inform","to","delet","the","old","version.","version","kubernet","rubrik","backup","servic","version."],["8","s","cluster","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cluster","info","inform","about","the","kubernet","cluster.","cluster","ip","list","of","ip","for","the","kubernet","cluster.","cluster","port","rang","rang","for","port","use","for","backup","and","recovery.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","descend","connect","list","of","descendants.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","k","8","s","descend","namespac","namespac","belong","to","the","kubernet","cluster.","all","org","all","tag","api","version","author","oper","cluster","scope","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","relic","k","8","s","cluster","id","logic","path","name","namespac","name","newest","index","snapshot","newest","snapshot","num","pvcs","num","workload","descend","num","workload","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","physic","path","resourc","version","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","connect","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","new","connect","workload","snapshot","connect","last","refresh","time","time","of","the","last","success","refresh","task","on","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rbs","port","rang","deprecated.","use","clusterportrang","instead.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","connect","status","of","the","kubernet","cluster."],["8","s","cluster","connect","count","total","number","of","k8scluster","object","match","the","request"],["8","s","cluster","summari","crd","servic","account","info","support","in","v9.2+","the","detail","of","the","rsc","distribut","support","in","v9.1+","distribut","of","the","kubernet","cluster.","id","required.","support","in","v9.0+","id","of","the","kubernet","kupr","server","proxi","config","support","in","v9.2+","the","configur","for","the","kupr","last","refresh","time","support","in","v9.0+","last","refresh","time","of","the","max","concurr","agent","maximum","number","of","kupr","backup","agent","allow","to","max","pvcs","per","agent","maximum","number","of","pvcs","assign","to","a","singl","name","required.","support","in","v9.0+","name","of","the","kubernet","onboard","servic","account","info","support","in","v9.2+","the","detail","of","the","rsc","onboard","type","support","in","v9.2+","the","type","of","onboarding.","it","pvc","group","strategi","pvc","group","strategi","(node_affin","|","count","|","none).","region","support","in","v9.1+","region","of","the","kubernet","cluster.","registri","support","in","v9.0+","contain","registri","url","for","store","status","required.","support","in","v9.0+","connect","status","of","the","transport","support","in","v9.1+","the","transport","type","use","for"],["8","s","manifest","respons","data","required.","support","in","v9.2+","manifest","data","for","kubernet"],["8","s","namespac","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","api","version","api","version","of","the","namespace.","author","oper","the","author","oper","on","the","object.","cluster","scope","specifi","whether","the","namespac","contain","kubernet","cluster-scop","resources.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","relic","specifi","whether","the","namespac","is","a","relic.","k","8","s","cluster","id","kubernet","cluster","id.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","namespac","name","name","of","the","namespace.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","pvcs","number","of","persist","volum","claims.","num","workload","descend","number","of","descend","workload","of","this","object.","num","workload","number","of","workloads.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","resourc","version","version","of","the","namespac","on","the","kubernet","cluster.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["8","s","namespac","connect","aggreg","8","s","pvcs","the","aggreg","persist","volum","claim","(pvc)","across","namespac","aggreg","8","s","workload","the","aggreg","workload","across","namespac","base","on","appli","count","total","number","of","k8snamespac","object","match","the","request"],["8","s","protect","set","summari","custom","resourc","depend","support","in","v9.6+","custom","resourc","depend","list.","present","definit","required.","support","in","v9.1+","definit","of","the","kubernet","hook","config","support","in","v9.1+","id","required.","support","in","v9.1+","id","of","the","kubernet","kubernet","cluster","uuid","required.","support","in","v9.1+","id","of","the","kubernet","kubernet","namespac","support","in","v9.1+","v9.1-v9.5:","kubernet","namespac","to","which","label","selector","support","in","v9.6+","label","selector","for","entry-point","workload","name","required.","support","in","v9.1+","name","of","the","kubernet","namespac","exclud","pattern","support","in","v9.6+","namespac","exclus","patterns.","present","for","namespac","includ","pattern","support","in","v9.6+","namespac","name","or","pattern","includ","rs","type","required.","support","in","v9.1+","v9.1-v9.5:","type","of","the"],["8","s","snapshot","info","expir","time","expir","time","of","the","snapshot.","is","archiv","specifi","whether","the","snapshot","is","archived.","namespac","kubernet","namespac","name.","pvc","list","list","of","inform","about","pvcs","in","the","namespace.","snapshot","time","creation","time","of","the","snapshot."],["8","s","snapshot","summari","list","respons","data","support","in","v9.0+","list","of","match","objects.","has","more","support","in","v9.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v9.0+","total","list","responses."],["kms","encrypt","key","alias","alias","of","kms","key.","arn","amazon","resourc","name","(arn)","of","the","kms","key.","id","id","of","kms","key."],["knowledg","base","articl","articl","number","articl","number","of","the","knowledg","base","article.","author","display","name","of","the","articl","author.","caus","a","flatten","list","of","node","repres","the","caus","creat","date","timestamp","when","the","articl","was","created.","descript","summari","of","the","knowledg","base","article.","environ","a","flatten","list","of","node","repres","the","environ","id","id","of","the","knowledg","base","article.","last","modifi","timestamp","when","the","articl","was","last","modified.","note","a","flatten","list","of","node","repres","the","note","record","type","record","type","name,","for","exampl","\"troubleshooting\".","resolut","a","flatten","list","of","node","repres","the","resolut","summari","a","flatten","list","of","node","repres","the","summari","titl","titl","of","the","knowledg","base","article.","view","count","number","of","time","this","articl","has","been","viewed."],["kosmo","workload","live","mount","cluster","cluster","of","the","live","mount.","host","mount","path","describ","the","mount","path","in","the","host","machine.","id","the","id","of","the","live","mount.","mount","creat","time","describ","the","creation","time","of","the","live","mount.","mount","host","the","mount","host","object.","name","the","name","of","the","live","mount.","point","in","time","describ","the","point","in","time","to","which","we","sourc","snapshot","sourc","snapshot","of","the","live","mount.","subnet","mask","describ","the","subnet","configur","of","the","live","mount","workload","id","the","id","of","respect","kosmo","workload.","workload","name","describ","the","name","of","respect","kosmo","workload."],["kosmo","workload","live","mount","connect","count","total","number","of","kosmosworkloadlivemount","object","match","the","request"],["kubernet","cluster","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","kubernet","protectionset","on","rubrik","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cloud","account","id","id","of","the","cloud","account","use","to","establish","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","cdm","cluster","uuid.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","distribut","distribut","indic","the","type","of","kubernet","distribut","use","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","ek","cluster","arn","amazon","resourc","name","(arn)","for","the","ek","kubernet","extern","ip","the","ip","for","connect","to","the","kubernet","cluster","helm","status","compat","status","between","the","deploy","helm","chart","and","helm","version","deploy","helm","chart","version","on","the","cluster.","null","id","id","of","the","hierarchi","object.","is","auto","ps","creation","enabl","specifi","whether","automat","protect","set","creation","is","enabled.","is","pull","secret","configur","specifi","whether","the","pull","secret","is","configured.","is","replica","true","if","this","object","is","a","replica,","it","k","8","s","descend","protect","set","protect","set","belong","to","the","kubernet","cluster.","all","org","all","tag","author","oper","cdm","id","cdm","link","cdm","pend","object","paus","assign","cluster","cluster","uuid","configur","sla","domain","creation","type","cross","account","replic","object","info","custom","resourc","depend","definit","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","relic","is","replica","k","8","s","cluster","name","k","8","s","cluster","uuid","label","selector","latest","user","note","logic","path","miss","snapshot","connect","miss","snapshot","group","by","connect","name","namespac","namespac","exclud","pattern","namespac","includ","pattern","newest","archiv","snapshot","newest","index","snapshot","newest","replic","snapshot","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","primari","cluster","uuid","replic","object","count","replic","object","rs","name","rs","type","secur","metadata","sla","assign","sla","paus","status","snapshot","connect","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","summari","k","8","s","descend","virtual","machin","virtual","machin","belong","to","the","kubernet","cluster.","all","org","all","tag","api","version","author","oper","cdm","id","cdm","link","cdm","pend","object","paus","assign","cluster","cluster","uuid","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","guest","os","name","id","is","relic","is","replica","k","8","s","cluster","name","k","8","s","cluster","uuid","k","8","s","label","id","k","8","s","namespac","id","k","8","s","protect","label","fid","k","8","s","protect","label","name","k","8","s","virtual","machin","disk","latest","user","note","logic","path","miss","snapshot","connect","miss","snapshot","group","by","connect","name","namespac","name","newest","archiv","snapshot","newest","index","snapshot","newest","replic","snapshot","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","pend","object","delet","status","pend","sla","physic","path","power","status","primari","cluster","locat","primari","cluster","uuid","protect","set","id","replic","object","count","replic","object","report","workload","secur","metadata","sla","assign","sla","paus","status","snapshot","connect","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","summari","virtual","provid","vm","name","virtual","machin","k","8","s","name","name","of","kubernet","cluster.","k","8","s","version","version","of","kubernet","cluster.","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","max","concurr","agent","specifi","the","maximum","number","of","concurr","backup","agents.","max","pvcs","per","agent","specifi","the","maximum","number","of","pvcs","per","backup","nad","name","specifi","the","name","for","the","network","attach","definit","nad","namespac","specifi","the","namespac","for","the","network","attach","definit","name","name","of","the","hierarchi","object.","namespac","count","number","of","namespac","in","the","cluster.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","onboard","type","onboard","type","of","kubernet","cluster.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","port","port","number","for","connect","to","the","kubernet","cluster.","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","cdm","cluster","uuid.","registri","registri","of","kubernet","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","connect","status","of","the","kubernet","cluster.","storag","class","storag","class","in","the","kubernet","cluster.","transport","transport","type","of","kubernet","cluster."],["kubernet","cluster","connect","count","total","number","of","kubernetesclust","object","match","the","request"],["kubernet","namespac","type","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","kubernet","namespac","on","rubrik","cdm.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","uuid","of","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","k","8","s","cluster","name","name","of","the","kubernet","cluster.","k","8","s","cluster","uuid","uuid","of","the","kubernet","cluster.","k","8","s","label","id","list","of","kubernet","label","ids.","k","8","s","protect","label","fid","protect","label","fid","of","the","kubernet","namespace.","k","8","s","protect","label","name","protect","label","name","of","the","kubernet","namespace.","kubernet","descend","virtual","machin","kubernet","virtual","machin","belong","to","the","kubernet","namespace.","all","org","all","tag","api","version","author","oper","cdm","id","cdm","link","cdm","pend","object","paus","assign","cluster","cluster","uuid","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","guest","os","name","id","is","relic","is","replica","k","8","s","cluster","name","k","8","s","cluster","uuid","k","8","s","label","id","k","8","s","namespac","id","k","8","s","protect","label","fid","k","8","s","protect","label","name","k","8","s","virtual","machin","disk","latest","user","note","logic","path","miss","snapshot","connect","miss","snapshot","group","by","connect","name","namespac","name","newest","archiv","snapshot","newest","index","snapshot","newest","replic","snapshot","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","pend","object","delet","status","pend","sla","physic","path","power","status","primari","cluster","locat","primari","cluster","uuid","protect","set","id","replic","object","count","replic","object","report","workload","secur","metadata","sla","assign","sla","paus","status","snapshot","connect","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","summari","virtual","provid","vm","name","virtual","machin","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","namespac","name","name","of","kubernet","namespace.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","primari","cdm","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["kubernet","protect","set","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","protect","set","on","cdm.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","cdm","cluster","uuid.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","creation","type","creation","type","of","protect","set.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","custom","resourc","depend","custom","resourc","depend","captur","as","part","of","this","definit","definit","of","protect","set.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","relic","specifi","whether","the","protect","set","is","a","relic.","is","replica","true","if","this","object","is","a","replica,","it","k","8","s","cluster","name","name","of","the","kubernet","cluster.","k","8","s","cluster","uuid","uuid","of","the","kubernet","cluster.","label","selector","label","selector","use","to","match","kubernet","resourc","protect","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","namespac","namespac","of","protect","set.","namespac","exclud","pattern","namespac","name","pattern","to","exclud","when","select","resourc","namespac","includ","pattern","namespac","name","pattern","to","includ","when","select","resourc","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","cdm","cluster","uuid.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","rs","name","name","of","protect","set.","rs","type","type","of","protect","set.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info"],["kubernet","protect","set","connect","count","total","number","of","kubernetesprotectionset","object","match","the","request"],["kubernet","virtual","machin","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","api","version","api","version","of","the","k8s","virtual","machine.","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","kubernet","virtual","machin","on","rubrik","cdm.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","uuid","of","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","guest","os","name","guest","os","name","of","the","k8s","virtual","machine.","id","object","id","of","kubernet","virtual","machine.","is","relic","specifi","whether","the","protect","set","is","a","relic.","is","replica","true","if","this","object","is","a","replica,","it","k","8","s","cluster","name","name","of","the","kubernet","cluster.","k","8","s","cluster","uuid","uuid","of","the","kubernet","cluster.","k","8","s","label","id","list","of","id","of","the","kubernet","labels.","k","8","s","namespac","id","id","of","the","kubernet","namespace.","k","8","s","protect","label","fid","protect","label","fid","of","the","kubernet","virtual","machine.","k","8","s","protect","label","name","protect","label","name","of","the","kubernet","virtual","machine..","k","8","s","virtual","machin","disk","list","of","kubernet","virtual","machin","disks.","cdm","id","cluster","uuid","disk","type","exclud","from","snapshot","id","is","archiv","is","full","need","is","thin","k","8","s","cluster","uuid","k","8","s","virtual","machin","id","name","namespac","name","primari","cluster","uuid","pvc","name","size","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","namespac","name","name","of","the","kubernet","namespace.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","power","status","power","status","of","the","k8s","virtual","machine.","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","primari","cdm","cluster.","protect","set","id","id","of","the","protect","set.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","contain","statist","for","the","protect","objects,","such","as","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","virtual","provid","virtual","provid","of","the","k8s","virtual","machine.","vm","name","virtual","machin","name","of","kubernet","virtual","machine."],["kubernet","virtual","machin","snapshot","repli","data","support","in","v9.3+","list","of","match","objects.","has","more","support","in","v9.3+","if","there","is","more.","next","cursor","support","in","v9.3+","cursor","to","retriev","the","next","total","support","in","v9.3+","total","list","responses."],["lacp","presenc","check","bond","0","flag","indic","if","the","cluster","has","node","with","cluster","uuid","cluster","uuid."],["lacp","presenc","check","connect","count","total","number","of","lacppresencecheck","object","match","the","request"],["lambda","set","anomali","threshold","probabl","threshold","for","anomali","detector.","is","anomali","alert","enabl","flag","to","repres","if","alert","on","anomali","workload","ransomwar","threshold","probabl","threshold","for","ransomwar","detector."],["ldap","integr","base","dn","basedn","for","your","ldap","integration.","bind","user","name","bindusernam","for","your","ldap","integration.","dynam","dns","name","dynam","dns","name","for","your","ldap","integration.","group","member","attr","group","member","attribut","for","your","ldap","integration.","group","membership","attr","group","membership","attribut","for","your","ldap","integration.","group","search","filter","group","search","filter","for","your","ldap","integration.","id","id","for","your","ldap","integration.","is","totp","enforc","whether","totp","as","2fa","is","enforc","for","the","ldap","server","ldapserv","for","your","ldap","integration.","name","name","for","your","ldap","integration.","trust","cert","trustedcert","for","your","ldap","integration.","user","name","attr","user","name","attribut","for","your","ldap","integration.","user","search","filter","user","search","filter","for","your","ldap","integration."],["ldap","integr","connect","count","total","number","of","ldapintegr","object","match","the","request"],["legal","hold","snappabl","detail","id","id.","name","workload","name.","physic","locat","physic","path","to","this","workload.","snappabl","type","workload","type.","snapshot","count","number","of","snapshot","on","legal","hold.","snapshot","detail","snapshot","details."],["legal","hold","snappabl","detail","connect","count","total","number","of","legalholdsnappabledetail","object","match","the","request"],["legal","hold","snapshot","detail","custom","id","id.","legal","hold","time","legal","hold","time.","snapshot","retent","info","provid","snapshot","detail","for","each","location.","snapshot","time","snapshot","time.","type","snapshot","type."],["legal","hold","snapshot","detail","connect","count","total","number","of","legalholdsnapshotdetail","object","match","the","request"],["licens","for","cluster","product","repli","info","inform","about","the","distinct","product","type","of","this","overview","aggreg","inform","about","the","cluster","product."],["link","entiti","display","name","human-read","name","shown","in","the","ui.","enforc","whether","the","gpo","link","is","enforced.","entiti","id","uniqu","identifi","of","the","entity.","entiti","type","ad","type","(ou,","domain,","site)","use","the","share","link","enabl","whether","the","gpo","link","is","current","active.","link","type","indic","whether","the","entiti","is","direct","or","nested-linked."],["link","entiti","connect","count","total","number","of","linkedent","object","match","the","request"],["linux","fileset","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","the","cdm","cluster.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","failov","cluster","app","failov","cluster","app.","fileset","templat","fileset","templat","of","the","linux","fileset.","hardlink","support","enabl","boolean","variabl","denot","if","hard","link","support","is","host","host","of","the","linux","fileset.","id","id","of","the","hierarchi","object.","is","pass","through","boolean","variabl","denot","if","this","is","a","nas","is","relic","boolean","variabl","denot","if","fileset","is","relic.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","path","except","variabl","indic","path","exceptions.","path","exclud","list","of","path","exclud","from","fileset.","path","includ","list","of","path","includ","in","the","fileset.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","includ","statist","for","the","protect","objects,","for","example,","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","symlink","resolut","enabl","boolean","variabl","denot","if","symlink","resolut","is","enabled."],["linux","rbs","bulk","instal","repli","output","output","of","the","linux","rubrik","backup","servic","bulk"],["list","all","upload","record","repli","activ","upload","list","of","activ","uploads.","complet","upload","list","of","complet","uploads.","show","list","flag","whether","to","show","the","list","or","not"],["list","certif","usag","for","cloud","account","resp","certif","id","list","of","certif","id","use","by","the","cloud"],["list","cidr","for","comput","set","repli","cluster","interfac","cidr","list","of","cluster","interfac","cidrs."],["list","cloud","direct","site","set","resp","site","set","list","of","site","set","access","to","the","user."],["list","document","type","detail","repli","document","type","repres","the","list","of","document","type","details."],["list","integr","repli","integr","the","request","integrations."],["list","locat","repli","locat","list","of","ransomwar","investig","workload","locations."],["list","365","directori","object","attribut","resp","attribut","respons","of","m365directoryobjectattribut","oper","and","the","hold","list"],["list","store","respons","data","support","in","m3.2.0-m4.2.0","object","with","respons","from","liststore.","messag","support","in","m3.2.0-m4.2.0","error","messag","in","case","of","return","code","support","in","m3.2.0-m4.2.0","return","code.","status","support","in","m3.2.0-m4.2.0","status","of","the","request."],["list","store","disk","locat","repli","region","list","of","region","where","your","gcp","disk","are","zone","list","of","zone","where","your","gcp","disk","are"],["list","threat","feed","respons","feed","list","of","feed","in","the","account."],["list","version","respons","data","support","in","m3.2.0-m4.2.0","object","with","respons","from","listversion.","messag","support","in","m3.2.0-m4.2.0","error","messag","in","case","of","return","code","support","in","m3.2.0-m4.2.0","return","code.","status","support","in","m3.2.0-m4.2.0","status","of","the","request."],["lockout","config","account","auto","unlock","durat","in","min","specifi","the","time","after","which","the","account","is","inact","lockout","config","specifi","inform","about","inact","lockout","configuration.","is","auto","unlock","featur","enabl","specifi","whether","the","auto","unlock","featur","is","enabl","is","brute","forc","lockout","enabl","specifi","whether","the","account","lockout","featur","is","enabl","is","self","servic","enabl","specifi","whether","self","servic","is","enabl","for","all","login","attempt","limit","specifi","the","number","of","fail","login","attempt","allow","self","servic","attempt","limit","specifi","the","number","of","time","self-servic","is","allow","self","servic","token","valid","in","min","specifi","the","valid","of","the","current","self","servic"],["lookup","account","repli","account","expiri","date","account","expir","date.","account","hold","length","specifi","the","number","of","day","befor","account","goe","account","state","account","state.","account","state","updat","at","last","state","updat","date","of","account.","account","type","account","type.","hold","warn","length","specifi","number","of","day","for","which","ui","should","subdomain","account","subdomain."],["365","backup","storag","group","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","group","spec","the","specif","for","a","configur","group.","configur","group","specif","the","specif","for","a","configur","group.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","delet","in","azur","true,","if","the","group","is","delet","in","microsoft","display","name","display","name","of","the","group.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","group","id","rubrik","internal","uuid","for","group.","group","sub","type","the","subtyp","of","the","group.","group","type","the","type","of","group.","id","group","id","of","m365","backup","storag","group","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","metadata","the","metadata","for","an","offic","365","group.","name","name","of","the","hierarchi","object.","natur","id","natur","id","of","the","group.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","user","count","number","of","user","that","are","member","of","the","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","backup","storag","licens","usag","account","consumpt","repres","microsoft","365","backup","storag","consumpt","at","account","org","consumpt","entri","organiz","organiz","repres","the","microsoft","365","backup","storag","consumpt","at"],["365","backup","storag","mailbox","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","backup","storag","protect","status","protect","status","in","microsoft","365","backup","storage.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","specifi","whether","the","mailbox","is","a","relic.","is","sync","status","specifi","whether","the","mailbox","status","is","sync","with","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","prefer","data","locat","the","prefer","data","locat","of","the","mailbox.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","user","princip","name","the","user","princip","name","of","the","mailbox.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","backup","storag","onedr","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","backup","storag","protect","status","protect","status","in","microsoft","365","backup","storage.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","specifi","whether","the","onedr","is","a","relic.","is","sync","status","specifi","whether","the","onedr","status","is","sync","with","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","prefer","data","locat","the","prefer","data","locat","of","the","onedrive.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","user","princip","name","the","user","princip","name","of","the","onedrive.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","backup","storag","org","organiz","organiz","activ","time","time","when","the","microsoft","365","backup","storag","organiz","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","control","status","status","of","the","microsoft","365","backup","storag","organiz","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","group","summari","summari","of","microsoft","group","count.","id","id","of","the","hierarchi","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","status","status","of","the","microsoft","365","backup","storag","organization.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id","workload","summari","summari","of","workload","by","type."],["365","backup","storag","restor","point","expir","date","time","repres","the","expir","time","for","m365","backup","storag","id","repres","id","of","restor","point.","protect","date","time","repres","the","backup","time","of","m365","backup","storag","type","repres","the","type","of","restor","point."],["365","backup","storag","restor","point","connect","count","total","number","of","m365backupstoragerestorepoint","object","match","the","request"],["365","backup","storag","site","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","backup","storag","protect","status","protect","status","in","microsoft","365","backup","storage.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","specifi","whether","the","sharepoint","site","is","a","relic.","is","sync","status","specifi","whether","the","sharepoint","site","status","is","sync","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","prefer","data","locat","the","prefer","data","locat","of","the","sharepoint","site.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","titl","the","titl","or","name","of","the","sharepoint","site.","url","the","url","of","the","sharepoint","site.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","licens","entitl","repli","capac","entitl","in","byte","total","backup","capac","purchas","in","bytes.","user","entitl","total","number","of","entitl","for","protect","users."],["365","org","backup","locat","organiz","organiz","primari","locat","primari","backup","data","locat","of","an","m365","organization.","secondari","locat","secondari","backup","data","location(s)","of","an","m365","organization."],["365","org","oper","mode","organiz","organiz","oper","mode","contain","oper","mode","of","differ","workload","type","of"],["365","region","resp","region","the","list","of","regions."],["manag","volum","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","applic","tag","mount","protocol","use","for","manag","volume.","author","oper","the","author","oper","on","the","object.","cdm","id","the","id","of","the","workload","on","the","rubrik","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","client","config","client","configur","relat","to","backup","scripts.","client","name","pattern","allow","host","names.","cluster","cdm","cluster","information.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","physic","host","for","the","manag","volume.","host","detail","specifi","host","detail","for","the","sla","manag","volume.","id","id","of","the","hierarchi","object.","is","relic","if","the","manag","volum","is","in","relic","state.","is","replica","true","if","this","object","is","a","replica,","it","last","reset","reason","the","reason","for","the","last","reset","of","the","latest","user","note","latest","user","note","information.","live","mount","pagin","list","of","live","mount","for","manag","volume.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","channel","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","logic","use","size","manag","volum","name","num","channel","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","smb","share","opt","snapshot","distribut","sourc","snapshot","logic","path","sequenti","list","of","the","logic","ancestor","of","this","main","mount","main","mount","for","the","manag","volume.","manag","volum","type","the","type","of","the","manag","volume.","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","mount","state","mount","state","of","the","manag","volume.","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","nfs","set","nfs","set","and","configur","for","the","manag","volume.","num","channel","number","of","channel","in","the","manag","volume.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","physic","use","size","the","manag","volum","physic","size","in","bytes.","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","protect","date","the","date","on","which","the","effect","sla","domain","protocol","mount","protocol","use","for","manag","volume.","provis","size","size","provis","for","the","manag","volum","in","bytes.","queu","snapshot","group","bys","the","list","of","manag","volum","queu","snapshot","for","group","by","info","manag","volum","queu","snapshot","connect","manag","volum","queu","snapshot","group","by","queu","snapshot","the","list","of","queu","snapshot","for","this","manag","date","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","includ","statist","for","the","protect","objects,","for","example,","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","smb","share","smb","share","detail","of","the","manag","volume.","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","state","state","of","the","manag","volume.","subnet","subnet","of","the","manag","volume."],["manag","volum","connect","count","total","number","of","managedvolum","object","match","the","request"],["manag","volum","inventori","stat","alway","mount","always-mount","manag","volum","inventori","statistics.","sla","base","sla-bas","manag","volum","inventori","statistics."],["manag","volum","mount","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","channel","channel","metadata","of","the","manag","volum","mount.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","fid","of","the","manag","volum","export.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","logic","use","size","logic","size","use","by","the","manag","volum","in","manag","volum","manag","volum","for","the","export.","name","name","of","the","hierarchi","object.","num","channel","number","of","channel","in","the","manag","volum","export.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","smb","share","opt","smb","share","detail","of","the","manag","volum","mount.","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","sourc","snapshot","sourc","snapshot","of","the","live","mount."],["manag","volum","mount","connect","count","total","number","of","managedvolumemount","object","match","the","request"],["map","azur","cloud","account","exocomput","subscript","repli","is","success","whether","the","map","was","successful."],["map","azur","cloud","account","to","persist","storag","locat","repli","is","success","whether","the","map","was","successful."],["map","cloud","account","exocomput","account","repli","is","success","whether","all","request","account","succeeded;","per-account","detail","in"],["mark","agent","secondari","certif","repli","cert","id","required.","support","in","v5.3+","id","of","the","certificate.","cluster","uuid","required.","support","in","v5.3+","pars","cluster","id","from","is","agent","enabl","required.","support","in","v5.3+","whether","this","certif","has","name","required.","support","in","v5.3+","display","name","for","the"],["microsoft","group","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","group","specif","configur","group","spec","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","delet","in","azur","whether","the","group","is","delet","in","microsoft","entra","display","name","display","name","of","microsoft","group","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","group","id","group","id","of","microsoft","group","group","sub","type","group","sub-typ","of","the","microsoft","group","group","type","group","type","of","the","microsoft","group","id","id","of","the","hierarchi","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","metadata","metadata","of","the","microsoft","group","name","name","of","the","hierarchi","object.","natur","id","natur","id","of","microsoft","group","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","user","count","user","count","of","microsoft","group","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["microsoft","group","connect","count","total","number","of","microsoftgroup","object","match","the","request"],["microsoft","mip","label","color","repres","the","color","of","the","label.","content","format","repres","the","content","format","of","the","label.","descript","for","admin","repres","the","descript","for","the","admins.","descript","for","user","repres","the","descript","for","the","users.","display","name","repres","the","display","name","of","the","label.","has","protect","determin","whether","this","label","has","protection.","is","activ","repres","the","activ","status","of","the","label.","is","appliabl","repres","the","appliabl","status","of","the","label.","label","id","repres","label","id","of","the","label.","parent","info","repres","the","parent","label","information.","parent","label","id","repres","the","parent","label","id","of","the","label.","sensit","repres","the","sensit","of","the","label.","tenant","id","repres","the","tenant","id","of","the","label."],["microsoft","site","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","prefer","data","locat","the","prefer","data","locat","of","the","sharepoint","site.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","titl","the","titl","or","name","of","the","sharepoint","site.","url","the","url","of","the","sharepoint","site.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["microsoft","site","connect","count","total","number","of","microsoftsit","object","match","the","request"],["miss","snapshot","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["miss","cluster","cluster","ip","cluster","ip","address.","cluster","type","cluster","type.","connect","status","connect","status","of","the","cluster.","disconnect","state","current","state","of","disconnect","for","the","cluster.","exclus","reason","reason","for","exclus","of","cluster","connect","from","rsc.","is","exclud","specifi","whether","the","cluster","is","exclud","by","the","name","cluster","name.","num","of","node","number","of","node","in","the","cluster.","uuid","cluster","uuid.","version","cluster","version."],["miss","cluster","connect","count","total","number","of","missingclust","object","match","the","request"],["modifi","ipmi","repli","access","required.","support","in","v5.0+","is","avail","required.","support","in","v5.0+"],["mongo","collect","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","cdm","id","of","the","mongodb","collection.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","identifi","of","the","host","cluster.","collect","set","parent","collect","set","connection.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","databas","parent","databas","connection.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","specifi","whether","the","mongodb","collect","is","a","relic","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","mongo","snapshot","connect","the","list","of","mongodb","collect","snapshots.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","mongo","snapshot","group","by","connect","groupbi","connect","for","mongodb","collect","snapshots.","group","by","info","mongo","snapshot","connect","mongo","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","identifi","of","the","primari","host","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","sourc","parent","sourc","connection."],["mongo","collect","connect","count","total","number","of","mongocollect","object","match","the","request"],["mongo","collect","set","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","cdm","id","of","the","mongodb","collect","set.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","identifi","of","the","host","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","specifi","whether","the","mongodb","collect","set","is","a","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","identifi","of","the","primari","host","cluster.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info"],["mongo","databas","activ","collect","count","count","of","activ","collect","for","this","mongodb","database.","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","cdm","id","of","the","mongodb","database.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","identifi","of","the","host","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","specifi","whether","the","mongodb","databas","is","a","relic","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","identifi","of","the","primari","host","cluster.","protect","collect","count","count","of","protect","collect","for","this","mongodb","database.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","sourc","parent","sourc","connection."],["mongo","databas","connect","count","total","number","of","mongodatabas","object","match","the","request"],["mongo","op","manag","restor","target","for","snapshot","list","respons","data","support","in","v9.3+","list","of","match","objects.","has","more","support","in","v9.3+","if","there","is","more.","next","cursor","support","in","v9.3+","cursor","to","retriev","the","next","total","support","in","v9.3+","total","list","responses."],["mongo","recover","rang","recover","rang","mongodb","recover","rang","objects."],["mongo","sourc","activ","collect","count","count","of","activ","collect","for","this","mongodb","source.","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","ca","certif","id","certif","id","referenc","the","certif","import","by","use","cdm","id","cdm","id","of","the","mongodb","source.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","inform","about","cdm","cluster","for","this","mongodb","cluster.","cluster","uuid","uuid","of","the","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","data","host","the","list","of","data","host","associ","with","this","ad","domain","agent","id","agent","primari","cluster","uuid","all","org","all","tag","author","oper","cbt","status","cdm","id","cdm","link","cdm","pend","object","paus","assign","cluster","cluster","relat","configur","sla","domain","connect","status","cross","account","replic","object","info","default","cbt","descend","connect","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","host","rba","certif","host","volum","id","ip","address","is","archiv","is","changelist","enabl","is","exchang","host","is","mssql","host","is","oracl","host","is","replica","last","success","upgrad","time","latest","user","note","logic","path","mssql","sdd","detail","name","nas","api","endpoint","nas","api","hostnam","nas","migrat","info","nas","vendor","type","network","throttl","num","workload","descend","object","backup","window","object","paus","status","object","type","oracl","sdd","detail","oracl","set","oracl","user","detail","os","name","os","type","pend","object","delet","status","pend","sla","physic","child","connect","physic","path","primari","cluster","locat","rba","packag","upgrad","info","rbs","upgrad","status","rbs","version","replic","object","count","replic","object","resourc","info","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","vfd","state","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","discoveri","status","discoveri","status","of","the","mongodb","source.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","detail","list","of","data","host","detail","associ","with","this","id","id","of","the","hierarchi","object.","ignor","secondari","node","list","of","ignor","secondari","mongodb","sourc","nodes.","is","archiv","specifi","whether","the","mongodb","sourc","is","deleted.","is","relic","specifi","whether","the","mongodb","sourc","is","a","relic","is","replica","true","if","this","object","is","a","replica,","it","last","refresh","time","timestamp","of","the","latest","success","mongodb","sourc","refresh.","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","manag","type","manag","type","of","the","mongodb","source.","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","ip","of","the","mongodb","source.","protect","collect","count","count","of","protect","collect","for","this","mongodb","source.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","sourc","metadata","metadata","of","the","mongodb","source.","sourc","node","list","of","sourc","nodes.","sourc","type","type","of","the","mongodb","source.","ssl","param","ssl","options.","status","status","of","the","mongodb","source.","usernam","mongodb","username."],["mongo","sourc","connect","count","total","number","of","mongosourc","object","match","the","request"],["mongodb","collect","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","backup","count","number","of","backup","for","the","mongodb","collection.","backup","param","backup","paramet","for","the","mongodb","collection.","cluster","mosaic","cluster","information.","cluster","uuid","uuid","of","the","mosaic","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","databas","parent","databas","connection.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","the","mongodb","collect","id.","is","relic","specifi","whether","mongodb","collect","is","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","bys","group","by","pagin","list","for","mongodb","snapshots.","all","snapshot","group","bys","group","by","info","snapshot","snapshot","pagin","list","of","snapshot","for","mongodb","collection.","cluster","uuid","db","info","expir","time","id","job","durat","sla","domain","snapshot","type","version","version","state","workload","id","sourc","parent","sourc","connection."],["mongodb","collect","connect","count","total","number","of","mongodbcollect","object","match","the","request"],["mongodb","databas","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","backup","count","backup","count","for","the","mongodb","database.","backup","param","backup","paramet","for","the","mongodb","database.","cluster","mosaic","cluster","information.","cluster","uuid","uuid","of","the","nosql","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","descend","connect","list","of","descendants.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","specifi","whether","mongodb","databas","is","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","child","connect","list","of","physic","children.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","sourc","parent","sourc","connection.","watcher","enabl","watcher","status","of","this","mongodb","database."],["mongodb","databas","connect","count","total","number","of","mongodbdatabas","object","match","the","request"],["mongodb","sourc","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","backup","count","number","of","backup","for","the","mongodb","sourc","cluster.","backup","param","backup","paramet","for","the","mongodb","sourc","cluster.","cluster","inform","about","nosql","cluster","for","this","mongodb","cluster.","cluster","uuid","uuid","of","the","nosql","cluster.","config","param","configur","param","for","the","mongodb","sourc","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","descend","connect","list","of","descendants.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","node","count","number","of","node","in","mongodb","sourc","node.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","child","connect","list","of","physic","children.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","size","overal","data","size","of","mongodb","sourc","cluster","in","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","sourc","ip","ip","of","the","mongodb","source.","status","sourc","connect","status.","watcher","enabl","watcher","status","for","the","mongodb","sourc","cluster."],["mongodb","sourc","connect","count","total","number","of","mongodbsourc","object","match","the","request"],["mosaic","async","respons","data","support","in","m3.2.0-m4.2.0","mosaic","job","id","of","submit","messag","support","in","m3.2.0-m4.2.0","error","messag","in","case","of","return","code","support","in","m3.2.0-m4.2.0","return","code","from","mosaic.","status","support","in","m3.2.0-m4.2.0","status","of","the","request."],["mosaic","recoveri","rang","respons","data","support","in","m3.2.0-m4.2.0","object","with","detail","of","ani","messag","support","in","m3.2.0-m4.2.0","respons","messag","string.","return","code","support","in","m3.2.0-m4.2.0","return","code.","status","support","in","m3.2.0-m4.2.0","status","of","the","request."],["mosaic","storag","locat","backup","count","count","of","backup","store","in","storag","location.","cluster","uuid","uuid","of","mosaic","cluster.","connect","paramet","various","paramet","use","for","connect","with","store.","fid","fid","of","mosaic","storag","locations.","geograph","locat","geograph","locat","of","store.","id","mosaic","id","of","storag","location.","space","consum","byte","space","consum","on","storag","location.","storag","locat","name","name","of","storag","location.","store","connect","status","connect","status","of","mosaic","with","store.","store","type","type","of","mosaic","store."],["mount","disk","repli","taskchain","uuid","taskchain","id","of","the","mount","job."],["mssql","avail","group","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","copi","onli","copyon","flag","of","the","avail","group.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","has","log","config","from","sla","boolean","flag","indic","if","the","avail","group","deriv","host","log","retent","interval,","in","seconds,","between","the","delet","of","archiv","id","id","of","the","hierarchi","object.","instanc","the","list","of","instanc","associ","with","an","avail","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","log","backup","frequenc","in","second","number","of","second","between","two","log","backups.","when","log","backup","retent","in","hour","number","of","hour","to","retain","a","log","backup.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["mssql","avail","group","virtual","group","group","list","of","avail","group","in","the","virtual","group.","link","fid","the","list","of","link","fid","of","ag","that","name","name","of","the","virtual","group."],["mssql","avail","group","virtual","group","connect","count","total","number","of","mssqlavailabilitygroupvirtualgroup","object","match","the","request"],["mssql","databas","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","group","snapshot","list","of","snapshot","taken","for","a","rubrik","cdm","cdm","snapshot","group","by","info","cdm","id","cdm","id","of","the","sql","server","database.","cdm","link","a","link","to","view","the","workload","on","the","cdm","newest","snapshot","the","newest","snapshot","taken","for","a","cdm","workload.","cdm","oldest","snapshot","the","oldest","snapshot","taken","for","a","cdm","workload.","cdm","on","demand","snapshot","count","the","count","of","on","demand","snapshot","for","a","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cdm","snapshot","the","list","of","snapshot","taken","for","a","sql","cdm","id","cdm","version","cluster","uuid","date","expir","date","expiri","hint","id","index","attempt","is","corrupt","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","unindex","latest","user","note","retent","info","sla","domain","sub","obj","workload","id","workload","type","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","copi","onli","specifi","if","copy-on","backup","are","enabled.","when","false,","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","dag","id","id","of","the","associ","sql","server","distribut","avail","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","has","log","config","from","sla","boolean","flag","indic","if","the","databas","deriv","log","has","permiss","specifi","whether","the","the","rubrik","backup","servic","has","host","log","retent","interval,","in","seconds,","between","the","delet","of","archiv","id","id","of","the","hierarchi","object.","is","in","avail","group","specifi","if","the","sql","server","databas","is","in","is","log","ship","secondari","specifi","if","the","sql","server","databas","is","a","is","mount","specifi","if","the","sql","server","databas","is","a","is","onlin","specifi","if","the","sql","server","databas","is","online.","is","relic","specifi","if","the","sql","server","databas","is","a","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","live","mount","list","of","live","mount","for","a","sql","server","cdm","id","cluster","creation","date","fid","is","readi","mount","request","id","mount","databas","id","mount","databas","name","owner","id","recoveri","point","sourc","databas","target","instanc","unmount","request","id","log","backup","frequenc","in","second","number","of","second","between","two","log","backups.","when","log","backup","retent","in","hour","number","of","hour","to","retain","a","log","backup.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","post","backup","script","inform","about","the","script","run","after","a","backup.","pre","backup","script","inform","about","the","script","run","befor","a","backup.","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recoveri","model","specifi","if","the","recoveri","model","is","simple,","full,","replica","list","of","the","replica","avail","for","the","sql","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","unprotect","reason","list","of","reason","that","a","sql","server","databas","version","the","microsoft","sql","server","version."],["mssql","databas","connect","count","total","number","of","mssqldatabas","object","match","the","request"],["mssql","databas","live","mount","cdm","id","internal","id","of","the","live","mount.","cluster","cluster","of","the","live","mount.","creation","date","timestamp","when","the","mount","was","created.","fid","forev","id","of","the","live","mount.","is","readi","status","of","the","live","mount.","mount","request","id","id","of","the","databas","mount","request","job.","mount","databas","id","internal","id","of","the","mount","database.","mount","databas","name","name","of","the","mount","database.","owner","id","owner","id","of","the","live","mount.","recoveri","point","recoveri","point","of","the","live","mount.","sourc","databas","sourc","databas","of","the","live","mount.","target","instanc","target","instanc","of","the","live","mount.","unmount","request","id","id","of","the","databas","unmount","request","job."],["mssql","databas","live","mount","connect","count","total","number","of","mssqldatabaselivemount","object","match","the","request"],["mssql","databas","virtual","group","activ","db","fid","forev","id","of","the","activ","database.","databas","list","of","databas","in","the","virtual","group.","link","fid","the","list","of","link","fid","of","ag","that","name","name","of","the","virtual","group."],["mssql","databas","virtual","group","connect","count","total","number","of","mssqldatabasevirtualgroup","object","match","the","request"],["mssql","default","properti","on","cluster","repli","cbt","status","required.","support","in","v5.0+","v5.0-v5.2:","true","to","enabl","log","backup","frequenc","in","second","required.","support","in","v5.0+","log","retent","time","in","hour","support","in","v5.3+","should","use","default","backup","locat","support","in","v7.0+","use","the","default","backup","locat"],["mssql","host","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","associ","with","the","microsoft","sql","host","in","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","host","metadata","metadata","of","the","under","physic","host.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["mssql","host","configur","af","2","minimum","file","count","support","in","v9.4+","v9.4:","the","minimum","number","of","cbt","max","memori","usag","in","mb","support","in","v6.0+","the","maximum","memori","size","in","cmd","pipe","buffer","size","in","kb","support","in","v9.3+","the","size","of","the","buffer","copi","log","to","host","dure","live","mount","support","in","v9.6+","specifi","whether","to","copi","log","enabl","databas","batch","snapshot","support","in","v6.0+","specifi","if","sql","server","batch","enabl","group","fetch","support","in","v6.0+","enabl","group","fetch","of","sql","enabl","mssql","multi","node","backup","support","in","v9.3+","enabl","sql","server","multi-nod","backup.","enabl","mssql","multi","node","restor","support","in","v9.2+","enabl","sql","server","multi-nod","restore.","enabl","vdi","support","in","v6.0+","enabl","sql","server","log","backup","enabl","vdi","db","support","in","v6.0+","enabl","sql","server","db","backup","file","restor","read","parallel","support","in","v6.0+","number","of","concurr","read","request","file","restor","write","parallel","support","in","v6.0+","number","of","concurr","write","request","file","transfer","parallel","support","in","v6.0+","number","of","concurr","request","for","max","db","load","size","in","byte","support","in","v9.4+","maximum","databas","load","size","in","max","node","for","multi","node","backup","support","in","v9.5+","v9.5:","maximum","number","of","rubrik","max","node","for","multi","node","restor","support","in","v9.5+","v9.5:","maximum","number","of","rubrik","mssql","allow","dirti","read","for","ag","queri","support","in","v9.5+","control","whether","to","use","the","mssql","allow","dirti","read","for","db","size","queri","support","in","v9.3+","specifi","whether","to","use","the","mssql","databas","queri","timeout","support","in","v9.2+","length,","in","seconds,","of","the","mssql","default","max","data","stream","per","databas","support","in","v6.0+","the","default","valu","for","maximum","mssql","enabl","cleanup","on","restor","failur","support","in","v9.5+","specifi","whether","to","delet","orphan","mssql","use","dm","file","space","usag","support","in","v9.3+","specifi","whether","to","use","sys.dm_db_file_space_usag","multi","node","restor","max","data","stream","per","node","support","in","v9.3+","the","maximum","number","of","data","physic","host","databas","restor","throttl","max","ref","count","support","in","v6.0+","the","maximum","number","of","concurr","physic","host","log","backup","throttl","max","ref","count","support","in","v6.0+","maximum","number","of","concurr","sql","throttl","physic","host","max","ref","count","support","in","v6.0+","maximum","number","of","concurr","snapshot","use","af","2","for","high","data","file","count","support","in","v9.4+","specifi","whether","to","use","af2","use","default","backup","locat","support","in","v7.0+","specifi","whether","to","use","the","vdi","restor","max","timeout","in","minut","support","in","v7.0+","length,","in","minutes,","of","the","vdi","restor","timeout","in","second","per","gb","support","in","v7.0+","length,","in","seconds,","of","the"],["mssql","instanc","activ","node","name","of","the","current","activ","node","for","a","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","version","version","of","the","instanc","configuration.","chang","when","the","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","discov","address","network","address","discov","dure","instanc","registration.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","has","log","config","from","sla","boolean","flag","indic","if","the","instanc","deriv","log","has","permiss","whether","rubrik","has","the","requir","permiss","on","this","has","sysadmin","role","whether","the","rubrik","servic","account","has","sysadmin","role","host","log","retent","interval,","in","seconds,","between","the","delet","of","archiv","host","instal","list","of","host","where","this","sql","server","instanc","id","id","of","the","hierarchi","object.","is","cluster","instanc","whether","this","instanc","is","a","sql","server","failov","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","log","backup","frequenc","in","second","number","of","second","between","two","log","backups.","when","log","backup","retent","in","hour","number","of","hour","to","retain","a","log","backup.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","network","name","network","name","of","the","sql","server","instance.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","protect","date","date","when","this","instanc","was","first","protect","by","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","servic","account","user","servic","account","usernam","use","by","the","sql","server","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","unprotect","reason","list","of","reason","that","a","sql","server","instanc","version","sql","server","version","string","of","the","instance."],["mssql","instanc","summari","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["mssql","log","ship","summari","2","list","respons","data","support","in","v5.3+","list","of","match","objects.","has","more","support","in","v5.3+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.3+","total","list","responses."],["mssql","log","ship","target","cdm","id","internal","id","of","the","log","ship","target.","cluster","cluster","of","the","log","ship","target.","fid","forev","id","of","the","log","ship","target.","lag","time","from","primari","lag","time","of","the","log","ship","target.","last","appli","point","last","appli","point","of","the","log","ship","target.","locat","locat","of","the","log","ship","target.","log","frequenc","frequenc","that","the","primari","databas","take","log","backups.","primari","cluster","primari","cluster","of","the","log","ship","target.","primari","databas","primari","databas","of","the","log","ship","target.","secondari","databas","secondari","databas","of","the","log","ship","target.","secondari","instanc","secondari","instanc","of","the","log","ship","target.","state","state","of","the","log","ship","target.","status","status","of","the","log","ship","target."],["mssql","log","ship","target","connect","count","total","number","of","mssqllogshippingtarget","object","match","the","request"],["mssql","miss","recover","rang","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["mssql","recover","rang","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["mssql","restor","estim","result","byte","from","cloud","required.","support","in","v5.0+","v5.0-v5.2:","estim","of","number"],["mssql","top","level","descend","type","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["mssql","top","level","descend","type","connect","count","total","number","of","mssqltopleveldescendanttyp","object","match","the","request"],["multi","hop","upgrad","path","repli","version","path","order","sequenc","of","cdm","version","to","upgrad","through,"],["mvc","profil","analysi","job","most","recent","mvc","analysi","job","for","this","profile.","descript","option","descript","of","the","mvc","profile.","group","id","id","of","the","m365","group","includ","in","this","id","uniqu","id","of","the","mvc","profile.","name","display","name","of","the","mvc","profile.","org","id","organiz","organiz","id","of","the","org","this","profil","belong","to.","recoveri","plan","recoveri","plan","associ","with","this","minimum","viabl","compani","site","id","id","of","the","sharepoint","site","includ","in","this","total","uniqu","user","cach","count","of","uniqu","user","across","all","group","updat","at","timestamp","when","the","profil","was","last","updated.","user","id","id","of","the","m365","user","includ","in","this"],["mvc","profil","connect","count","total","number","of","mvcprofil","object","match","the","request"],["mysqldb","databas","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","entiti","info","the","basic","entiti","information.","id","id","of","the","hierarchi","object.","is","relic","specifi","whether","mysql","databas","is","relic.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","metadata","the","metadata","field","of","mysql","database.","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","parent","entiti","the","parent","object","of","the","specifi","kosmo","hierarchi","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["mysqldb","databas","connect","count","total","number","of","mysqldbdatabas","object","match","the","request"],["mysqldb","instanc","advanc","config","advanc","configur","for","the","mysql","instance.","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","the","id","of","the","workload","on","the","rubrik","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","mode","whether","this","is","a","standalon","or","ha","mysql","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","entiti","info","the","basic","entiti","information.","host","info","the","host","inform","of","the","discover","entity.","id","id","of","the","hierarchi","object.","is","relic","indic","whether","the","workload","type","is","relic.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","live","mount","the","live","mount","of","the","given","workloads.","cluster","host","mount","path","id","mount","creat","time","mount","host","name","point","in","time","sourc","snapshot","subnet","mask","workload","id","workload","name","logic","path","sequenti","list","of","the","logic","ancestor","of","this","metadata","the","metadata","field","of","mysql","instance.","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","mysql","ha","cluster","info","ha","cluster","info","includ","the","group","name","and","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recover","rang","the","recoveri","rang","for","the","current","workload.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","status","the","connect","status","of","mysql","instance.","user","detail","the","user","detail","of","mysql","instance."],["mysqldb","instanc","connect","count","total","number","of","mysqldbinst","object","match","the","request"],["nas","fileset","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","allow","backup","hidden","folder","in","network","mount","includ","or","exclud","hidden","folder","from","backup","that","author","oper","the","author","oper","on","the","object.","cdm","id","the","rubrik","cdm-assign","uuid","of","the","nas","fileset.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","hardlink","support","enabl","whether","optim","backup","of","hardlink","is","support","on","id","the","object","fid.","is","pass","through","whether","this","is","a","nas","direct","archiv","fileset.","is","relic","whether","this","object","is","a","relic.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","nas","migrat","info","inform","pertain","to","switch","the","nas","host","from","nas","share","the","nas","share","to","which","this","fileset","belongs.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","path","except","the","except","to","the","fileset","exclus","rules.","path","exclud","the","path","to","be","exclud","from","the","fileset","path","includ","the","path","to","includ","in","the","backup","of","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapmirror","label","for","full","backup","rubrik","cdm","use","a","prefix","match","to","select","snapmirror","label","for","increment","backup","rubrik","cdm","use","a","prefix","match","to","select","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","symlink","resolut","enabl","whether","resolut","of","symlink","is","support","on","this","templat","fid","the","associ","fileset","templat","fid."],["nas","namespac","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","rubrik","cdm","id","of","the","regist","nas","system.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","readon","determin","whether","the","nas","namespac","is","read-only.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","net","app","metro","cluster","info","option","netapp","metro","cluster","info","for","the","nas","nfs","data","address","specifi","all","avail","nfs","data","interfac","for","the","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","smb","data","address","specifi","all","avail","smb","data","interfac","for","the","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","user","select","nfs","interfac","list","of","hostnam","or","ip","address","use","for","user","select","smb","interfac","list","of","hostnam","or","ip","address","use","for","vendor","type","vendor","type","of","the","correspond","nas","system."],["nas","namespac","connect","count","total","number","of","nasnamespac","object","match","the","request"],["nas","share","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","rubrik","cdm","id","of","the","regist","nas","system.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","through","the","sourc","of","the","nas","share:","cdm","or","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","export","point","nfs/smb","export","path","for","the","nas","share.","host","address","host","address","of","the","nas","share.","host","id","for","restor","the","host","id","need","to","restor","to","this","id","object","id.","is","changelist","enabl","specifi","whether","the","changelist","option","is","enabled.","is","hidden","specifi","if","the","share","is","hidden.","is","nas","share","manual","add","specifi","whether","the","nas","share","are","manual","configur","is","net","app","snap","diff","enabl","specifi","whether","netapp","snapdiff","is","enabled.","is","nutanix","cft","enabl","specifi","whether","nutanix","file","chang","file","track","(cft)","is","relic","specifi","whether","this","object","is","a","relic.","is","replica","true","if","this","object","is","a","replica,","it","is","stale","specifi","if","the","share","is","delet","on","the","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nas","namespac","the","nas","namespac","to","which","this","nas","share","nas","system","the","nas","system","to","which","this","nas","share","nas","volum","the","nas","volum","to","which","this","nas","share","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","fileset","nas","share","protect","fileset.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","share","type","file","share","protocol","(nfs","or","smb).","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","user","select","interfac","list","of","hostnam","or","ip","address","use","for"],["nas","share","connect","count","total","number","of","nasshar","object","match","the","request"],["nas","system","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","rubrik","cdm","id","of","the","regist","nas","system.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","changelist","enabl","specifi","whether","the","changelist","option","is","enabled.","is","net","app","metro","cluster","enabl","is","net","app","snap","diff","enabl","specifi","whether","netapp","snapdiff","is","enabled.","is","nfs","support","specifi","whether","nfs","is","support","by","the","nas","is","nutanix","cft","enabl","specifi","whether","nutanix","file","chang","file","track","(cft)","is","relic","specifi","whether","this","object","is","a","relic.","is","replica","true","if","this","object","is","a","replica,","it","is","smb","support","specifi","whether","smb","is","support","by","the","nas","is","user","suppli","smb","credenti","specifi","whether","smb","credenti","are","manual","provid","by","last","refresh","time","utc","timestamp","of","the","most","recent","nas","system","last","status","specifi","the","connect","status","of","the","nas","system.","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","namespac","count","the","total","number","of","namespac","in","this","nas","net","app","metro","cluster","info","option","netapp","metro","cluster","info","for","the","nas","nfs","pseudo","fs","prefix","nfsv4","pseudo-filesystem","prefix","remov","from","mountd","export","path","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","os","version","os","version","of","the","regist","nas","system.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","share","count","the","total","number","of","share","in","this","nas","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","user","select","nfs","interfac","list","of","hostnam","or","ip","address","use","for","user","select","smb","interfac","list","of","hostnam","or","ip","address","use","for","vendor","type","vendor","type","of","the","regist","nas","system.","volum","count","the","total","number","of","volum","in","this","nas"],["nas","system","connect","count","total","number","of","nassystem","object","match","the","request"],["nas","volum","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","readon","whether","or","not","the","nas","volum","is","read-only.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nas","namespac","the","nas","namespac","to","which","this","nas","volum","nas","system","the","nas","system","to","which","this","nas","volum","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","size","in","byte","the","size","of","the","volum","in","bytes.","size","use","in","byte","the","size","that","has","been","use","of","the","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snap","mirror","label","label","that","can","be","appli","to","a","newli","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["ncd","back","end","capac","usag","in","byte","the","back-end","capac","usag","in","bytes."],["ncd","front","end","capac","archiv","fetb","the","new","front-end","capac","archiv","usag","in","bytes.","backup","fetb","the","new","front-end","capac","backup","usag","in","bytes.","usag","in","byte","the","front-end","capac","usag","in","bytes."],["ncd","object","protect","status","averag","file","size","the","averag","file","size.","file","the","object","protect","status","summari","for","files.","share","the","object","protect","status","summari","for","shares.","throughput","the","throughput."],["ncd","object","over","time","data","directori","the","total","count","of","directories.","file","the","total","count","of","files.","link","the","total","count","of","links.","timestamp","the","timestamp","of","the","data","point."],["ncd","sla","complianc","data","job","fail","the","total","count","of","fail","jobs.","job","pass","the","total","count","of","success","jobs.","timestamp","the","timestamp","of","the","data","point."],["ncd","task","data","descript","the","descript","of","the","nas","cloud","direct","task.","site","the","site","at","which","the","nas","cloud","direct","status","the","end","status","of","the","nas","cloud","direct","timestamp","the","timestamp","of","the","nas","cloud","direct","task."],["ncd","usag","over","time","data","chang","in","byte","the","amount","of","ingest","data","changed.","new","in","byte","the","amount","of","new","data","ingested.","timestamp","the","timestamp","of","the","data","point."],["ncd","vm","imag","url","virtual","machin","download","url","url","to","download","nas","cloud","direct","virtual","machin","sha","256","sha256","checksum","valu","of","the","download","image.","size","size","of","the","nas","cloud","direct","virtual","machin"],["network","host","project","name","name","of","the","gcp","project.","nativ","id","gcp","nativ","id.","project","id","gcp","project","id."],["network","info","list","respons","data","support","in","v5.3+","list","of","match","objects.","has","more","support","in","v5.3+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.3+","total","list","responses."],["network","interfac","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["network","throttl","summari","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["nf","anomali","result","anomali","id","uniqu","id","for","the","anomaly.","cluster","the","rubrik","cluster","of","the","object.","detect","time","the","time","at","which","the","anomali","was","detected.","is","anomali","specifi","whether","the","snapshot","is","anomalous.","locat","the","locat","of","the","object.","object","type","the","type","of","the","object.","workload","fid","the","internal","fid","of","the","object.","workload","name","the","name","of","the","object."],["nf","anomali","result","connect","count","total","number","of","nfanomalyresult","object","match","the","request"],["nf","anomali","result","group","data","group","by","info","group","by","information.","nf","anomali","result","group","data","provid","further","group","for","the","data.","nf","anomali","result","pagin","anomali","result","data.","anomali","id","cluster","detect","time","is","anomali","locat","object","type","workload","fid","workload","name"],["nf","anomali","result","group","data","connect","count","total","number","of","nfanomalyresultgroupeddata","object","match","the","request"],["node","remov","cancel","permiss","repli","event","seri","id","event","seri","id.","is","cancel","cancel","or","not."],["node","status","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["node","to","remov","by","count","node","id","node","id."],["node","to","remov","by","count","connect","count","total","number","of","nodetoremovebycount","object","match","the","request"],["node","to","replac","repli","node","to","replac","the","id","of","a","remov","node","to","replace."],["node","tunnel","status","connect","data","list","of","node","tunnel","status.","has","more","whether","there","are","more","nodes.","next","cursor","next","cursor.","total","total","number","of","nodes."],["notif","applic","applic","that","sent","the","notification.","creat","at","creation","date","of","notification.","default","action","primari","call","to","action","of","the","notification.","id","the","uuid","of","the","notification.","is","read","read","state","of","notification.","level","the","notif","level.","messag","notif","messag","with","placehold","for","dynam","values.","metadata","metadata","associ","with","the","notification.","prioriti","the","notif","priority.","resourc","id","resourc","id","associ","with","the","notification.","resourc","subtyp","the","resourc","subtyp","associ","with","the","notif","and","resourc","type","the","resourc","type","associ","with","the","notification.","subtyp","notif","subtype.","variabl","valu","for","the","messag","placeholders."],["notif","connect","count","total","number","of","notif","object","match","the","request"],["notif","for","get","licens","repli","is","success","indic","whether","notif","is","success","sent."],["ntp","server","configur","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["nutanix","categori","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","cdm","id","of","the","nutanix","category.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","connect","status","of","the","cdm","cluster.","if","the","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","duplic","object","provid","a","list","of","duplic","object","repres","ident","duplic","object","absolut","count","determin","the","total","count","of","duplic","object","for","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","prism","central","id","prism","central","id","of","the","category.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["nutanix","categori","valu","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","categori","id","categori","id","of","the","categori","value.","cdm","id","cdm","id","of","the","nutanix","categori","value.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","connect","status","of","the","cdm","cluster.","if","the","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","duplic","object","provid","a","list","of","duplic","object","repres","ident","duplic","object","absolut","count","determin","the","total","count","of","duplic","object","for","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","nutanix","vms","provid","a","list","of","child","nutanix","virtual","machin","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","prism","central","id","prism","central","id","of","the","categori","value.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["nutanix","cluster","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","cdm","id","of","the","nutanix","virtual","machine.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","metadata","nutanix","cluster","metadata.","cluster","network","network","of","the","nutanix","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","connect","status","of","the","nutanix","cluster.","if","the","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","name","ip","address","of","nutanix","cluster.","id","object","id.","is","replica","true","if","this","object","is","a","replica,","it","last","refresh","time","last","refresh","timestamp","of","nutanix","cluster.","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","natur","id","natur","id","of","nutanix","cluster.","nos","version","nutanix","cluster","version.","num","workload","descend","number","of","descend","workload","of","this","object.","nutanix","snapshot","consist","mandat","nutanix","cluster","snapshot","consist","level.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","storag","contain","storag","contain","of","the","nutanix","cluster.","user","name","username."],["nutanix","cluster","connect","count","total","number","of","nutanixclust","object","match","the","request"],["nutanix","contain","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["nutanix","live","mount","attach","disk","count","number","of","disk","attach","to","the","target","virtual","cdm","id","cdm","id","of","the","live","mount.","cluster","cluster","of","the","live","mount.","id","fid","of","the","live","mount.","is","disk","level","mount","indic","whether","the","mount","is","a","disk","mount.","is","migrat","disabl","specifi","if","the","mount","virtual","machin","doe","not","is","vm","readi","virtual","machin","describ","if","the","live","mount","is","ready.","migrat","job","instanc","id","migrat","job","instanc","id.","this","is","applic","onli","migrat","job","status","status","of","the","migrat","job.","this","is","applic","mount","job","instanc","id","mount","job","instanc","id.","mount","spec","specif","of","the","live","mount","in","json","string.","mount","status","mount","status","of","the","virtual","machine.","if","the","mount","date","time","when","the","virtual","machin","was","mounted.","this","mount","vm","fid","virtual","machin","id","of","the","mount","virtual","machine.","this","may","mount","vm","id","virtual","machin","cdm","id","of","the","mount","virtual","machine.","this","name","name","of","the","live","mount.","nutanix","cluster","fid","id","of","the","nutanix","cluster.","nutanix","cluster","id","cdm","id","of","the","nutanix","cluster.","nutanix","cluster","name","name","of","the","nutanix","cluster.","organiz","id","organiz","id","of","the","live","mount.","owner","id","owner","id","of","the","live","mount.","power","status","power","status","of","the","virtual","machine.","it","is","snapshot","date","time","when","the","snapshot","was","taken.","this","may","snapshot","id","rubrik","cdm","id","of","the","snapshot","use","for","sourc","snapshot","sourc","snapshot","of","the","live","mount.","sourc","vm","fid","virtual","machin","id","of","the","sourc","virtual","machine.","sourc","vm","id","virtual","machin","cdm","id","of","the","sourc","virtual","machine.","sourc","vm","name","virtual","machin","name","of","the","sourc","virtual","machine.","storag","contain","name","nutanix","storag","contain","where","the","mount","virtual","machin","unmount","job","instanc","id","unmount","job","instanc","id."],["nutanix","live","mount","connect","count","total","number","of","nutanixlivemount","object","match","the","request"],["nutanix","network","list","respons","data","support","in","v8.1+","list","of","match","objects.","has","more","support","in","v8.1+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v8.1+","total","list","responses."],["nutanix","prism","central","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","cdm","id","of","the","nutanix","virtual","machine.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","connect","status","of","the","nutanix","prism","central.","if","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","duplic","object","provid","a","list","of","duplic","object","repres","ident","duplic","object","absolut","count","determin","the","total","count","of","duplic","object","for","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","name","ip","address","of","nutanix","prism","central.","id","object","id.","is","dr","enabl","specifi","whether","nutanix","dr","support","is","enabl","for","is","replica","true","if","this","object","is","a","replica,","it","last","refresh","time","last","refresh","timestamp","of","nutanix","prism","central.","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","natur","id","natur","id","of","nutanix","prism","central.","nos","version","nutanix","prism","central","version.","num","workload","descend","number","of","descend","workload","of","this","object.","nutanix","cluster","id","list","of","nutanix","cluster","that","are","protect","as","nutanix","cluster","provid","a","list","of","child","nutanix","cluster","object","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","should","use","4","indic","whether","request","for","this","prism","central","should","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","user","name","username."],["nutanix","prism","central","connect","count","total","number","of","nutanixprismcentr","object","match","the","request"],["nutanix","vm","virtual","machin","agent","status","nutanix","virtual","machin","agent","status.","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","blueprint","id","id","of","the","recoveri","plan","this","nutanix","virtual","blueprint","name","name","of","the","recoveri","plan","this","nutanix","virtual","cdm","id","cdm","id","of","the","nutanix","virtual","machine.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","current","host","id","id","of","the","ahv","host","where","virtual","machin","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exclud","disk","list","of","id","of","the","exclud","disks.","hypervisor","type","hypervisor","type,","such","as","ahv.","this","field","will","id","object","id.","is","agent","regist","specifi","if","the","agent","is","registered.","is","blueprint","child","specifi","whether","the","virtual","machin","belong","to","a","is","relic","specifi","whether","this","nutanix","virtual","machin","is","current","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","metadata","metadata","of","the","nutanix","virtual","machine.","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","nutanix","snapshot","consist","mandat","nutanix","snapshot","consist","level.","nutanix","vm","mount","count","virtual","machin","total","number","of","live","mount","on","nutanix","virtual","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","os","type","guest","oper","system","type","of","the","virtual","machine.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","post","backup","script","post","backup","script","configuration.","post","snap","script","post","snapshot","script","configuration.","pre","backup","script","pre","backup","script","configuration.","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","snappabl","statist","for","nutanix","virtual","machin","(for","example,","capacity).","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","consist","mandat","deprecated,","use","nutanixsnapshotconsistencymand","instead.","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","vm","disk","virtual","machin","list","of","virtual","disks.","vm","uuid","virtual","machin","virtual","machin","id."],["nutanix","vm","connect","virtual","machin","count","total","number","of","nutanixvm","object","match","the","request"],["nutanix","vm","detail","virtual","machin","blackout","window","respons","info","exclud","disk","id","required.","support","in","v5.0+","a","list","of","virtual","is","agent","regist","required.","support","in","v5.0+","return","whether","the","rubrik","is","paus","required.","support","in","v5.0+","whether","backup/archival/repl","is","paus","nutanix","vm","patch","virtual","machin","nutanix","vm","summari","virtual","machin","virtual","disk","support","in","v5.2+","inform","of","all","the","virtual"],["nutanix","vm","snapshot","detail","virtual","machin","nutanix","vm","snapshot","summari","virtual","machin","this","field","contain","the","virtual","machin","name","and"],["nutanix","vm","snapshot","vdisk","detail","list","respons","virtual","machin","data","support","in","v9.2+","list","of","match","objects.","has","more","support","in","v9.2+","if","there","is","more.","next","cursor","support","in","v9.2+","cursor","to","retriev","the","next","total","support","in","v9.2+","total","list","responses."],["365","ad","group","member","name","the","name","of","the","activ","directori","group","member.","natur","id","the","microsoft","365","id","of","the","activ","directori","pdl","the","prefer","data","locat","of","the","configur","group","user","princip","name","the","user","princip","name","of","the","activ","directori"],["365","ad","group","member","connect","count","total","number","of","o365adgroupmemb","object","match","the","request"],["365","app","add","at","the","add","time","of","the","o365","app.","app","auth","status","the","authent","status","of","the","app","against","the","app","auth","version","the","authent","version","of","the","app","against","the","app","id","the","id","of","the","o365","app.","app","owner","the","owner","of","the","o365","app","(rubrik","or","app","type","the","type","of","the","o365","app","(e.g.","onedrive).","cred","state","the","state","of","the","app","credentials.","is","authent","the","authent","status","of","the","app","against","the","subscript","the","subscript","to","which","the","o365","app","is","subscript","id","the","id","of","the","o365","subscription."],["365","app","connect","count","total","number","of","o365app","object","match","the","request"],["365","calendar","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","relic","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","calendar","event","attende","the","attende","of","the","calendar","event.","end","date","time","the","end","time","of","the","calendar","event.","event","type","the","type","of","the","calendar","event.","hierarchi","type","type","of","hierarchi","for","the","specifi","calendar","event.","id","the","id","of","the","microsoft","365","exchang","object.","last","modifi","date","time","the","timestamp","when","the","calendar","event","was","last","name","the","subject","of","the","calendar","event.","organiz","the","organiz","of","the","calendar","event.","parent","folder","id","the","parent","folder","id","of","the","object","(root","recurr","the","recurr","of","the","event","(if","part","of","snapshot","id","the","snapshot","id","of","this","version","of","the","snapshot","time","the","snapshot","time","of","this","version","of","the","start","date","time","the","start","time","of","the","calendar","event.","version","start","snapshot","id","the","snapshot","id","of","the","snapshot","in","which"],["365","calendar","folder","hierarchi","type","type","of","hierarchi","for","the","specifi","calendar","folder.","id","the","id","of","the","microsoft","365","exchang","object.","is","calendar","group","indic","if","this","folder","repres","a","calendar","group.","name","the","display","name","of","the","calendar","folder.","parent","folder","id","the","parent","folder","id","of","the","object","(root","snapshot","id","the","snapshot","id","of","this","version","of","the","snapshot","time","the","snapshot","time","of","this","version","of","the"],["365","configur","group","member","display","name","the","display","name","of","the","configur","group","member.","id","the","id","of","the","configur","group","member.","object","type","the","type","of","the","configur","group","member.","pdl","the","prefer","data","locat","of","the","configur","group","url","the","url","of","the","configur","group","member,","if"],["365","configur","group","member","connect","count","total","number","of","o365configuredgroupmemb","object","match","the","request"],["365","consumpt","consumpt","overal","rubrik","m365","licens","consumpt","statistics.","consumpt","per","msp","org","organiz","organiz","list","of","licens","consum","for","all","multiten","organiz","consumpt","per","workload","type","consumpt","statist","per","workload","type.","org","segreg","consumpt","organiz","organiz","rich","org-level","segreg","consumpt","data","with","detail","breakdowns."],["365","contact","address","address","associ","with","this","contact.","compani","the","compani","at","which","this","contact","works.","email","address","email","address","associ","with","this","contact.","id","the","id","of","the","microsoft","365","exchang","object.","name","the","name","for","this","contact.","parent","folder","id","the","parent","folder","id","of","the","object","(root","phone","number","phone","number","associ","with","this","contact.","snapshot","id","the","snapshot","id","of","this","version","of","the","snapshot","num","the","snapshot","number","of","this","version","of","the","snapshot","time","the","snapshot","time","of","this","version","of","the"],["365","contact","folder","id","the","id","of","the","microsoft","365","exchang","object.","name","the","display","name","for","this","contact","folder.","parent","folder","id","the","parent","folder","id","of","the","object","(root","snapshot","id","the","snapshot","id","of","this","version","of","the","snapshot","num","the","snapshot","number","of","this","version","of","the","snapshot","time","the","snapshot","time","of","this","version","of","the"],["365","email","from","the","sender","of","the","email.","hierarchi","type","type","of","hierarchi","for","the","specifi","email.","id","the","id","of","the","microsoft","365","exchang","object.","last","modifi","date","time","the","timestamp","when","the","email","was","last","modified.","parent","folder","id","the","parent","folder","id","of","the","object","(root","receiv","date","time","the","timestamp","when","the","email","was","received.","sent","date","time","the","timestamp","when","the","email","was","sent.","snapshot","id","the","snapshot","id","of","this","version","of","the","snapshot","num","the","snapshot","number","of","this","version","of","the","subject","the","subject","of","the","email.","to","recipi","the","recipi","of","the","email."],["365","exchang","object","id","the","id","of","the","microsoft","365","exchang","object.","parent","folder","id","the","parent","folder","id","of","the","object","(root"],["365","exchang","object","connect","count","total","number","of","o365exchangeobject","object","match","the","request"],["365","folder","hierarchi","type","type","of","hierarchi","for","the","specifi","folder.","id","the","id","of","the","microsoft","365","exchang","object.","name","the","display","name","of","the","folder.","parent","folder","id","the","parent","folder","id","of","the","object","(root","snapshot","id","the","snapshot","id","of","this","version","of","the","snapshot","num","the","snapshot","number","of","this","version","of","the"],["365","full","sp","descend","creat","time","the","time","when","this","sharepoint","descend","object","was","fid","the","fid","of","the","sharepoint","descend","object.","modifi","time","the","time","when","this","sharepoint","descend","object","was","name","the","name","of","the","sharepoint","descend","object.","o","365","quarantin","info","quarantin","inform","for","the","sharepoint","descend","object.","object","type","the","object","type.","parent","id","the","parent","id","of","the","sharepoint","descend","object.","sharepoint","id","the","sharepoint","natur","id","of","the","sharepoint","descend","snapshot","id","the","id","of","the","snapshot.","snapshot","num","the","sequenc","number","of","the","snapshot."],["365","full","sp","object","creat","time","the","time","when","this","sharepoint","descend","object","was","fid","the","fid","of","the","sharepoint","descend","object.","modifi","time","the","time","when","this","sharepoint","descend","object","was","name","the","name","of","the","sharepoint","descend","object.","object","type","the","object","type.","parent","id","the","parent","id","of","the","sharepoint","descend","object.","sharepoint","id","the","sharepoint","natur","id","of","the","sharepoint","descend","snapshot","id","the","id","of","the","snapshot.","snapshot","num","the","sequenc","number","of","the","snapshot."],["365","full","sp","object","connect","count","total","number","of","o365fullspobject","object","match","the","request"],["365","group","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","group","spec","the","specif","for","a","configur","group.","configur","group","specif","the","specif","for","a","configur","group.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","delet","in","azur","true,","if","the","group","is","delet","in","ad.","display","name","display","name","of","the","group.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","group","id","rubrik","internal","uuid","for","group.","group","sub","type","the","subtyp","of","the","group.","group","type","the","type","of","group.","id","group","id","of","o365","group","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","metadata","the","metadata","for","an","offic","365","group.","mvb","analysi","job","recoveri","analysi","job","inform","for","this","group.","name","name","of","the","hierarchi","object.","natur","id","natur","id","of","the","group.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","org","id","organiz","organiz","uuid","of","the","o365","organization.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","user","count","number","of","user","that","are","member","of","group.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","group","connect","count","total","number","of","o365group","object","match","the","request"],["365","licens","licens","detail","the","licens","detail","of","o365","account."],["365","mailbox","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","relic","job","titl","the","job","titl","of","the","microsoft","365","user.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","prefer","data","locat","the","prefer","data","locat","of","the","mailbox.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","user","princip","name","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","mailbox","connect","count","total","number","of","o365mailbox","object","match","the","request"],["365","oauth","consent","complet","repli","app","id","the","app","id.","encrypt","refresh","token","the","encrypt","refresh","token."],["365","oauth","consent","kickoff","repli","app","client","id","the","app","id","that","should","be","use","in","csrf","token","the","csrf","token.","tenant","id","the","tenant","id."],["365","onedr","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","ransomwar","investig","enabl","ransomwar","investig","enabl","status.","is","relic","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","natur","id","the","natur","id","of","the","onedrive.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","prefer","data","locat","the","prefer","data","locat","of","the","onedrive.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","total","storag","in","byte","use","storag","in","byte","user","id","user","name","user","princip","name","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","onedr","connect","count","total","number","of","o365onedr","object","match","the","request"],["365","onedr","file","channel","folder","name","the","name","of","the","folder","correspond","to","the","channel","id","the","id","of","the","team","channel","contain","this","channel","membership","type","the","membership","type","of","the","team","channel.","channel","name","the","display","name","of","the","team","channel.","creat","time","the","creation","time","of","the","onedr","object.","file","type","the","file","type","or","extens","of","the","file.","id","the","id","of","the","o365","onedr","object.","modifi","time","the","modifi","time","of","the","onedr","object.","name","the","name","of","the","onedr","object.","o","365","quarantin","info","quarantin","inform","for","the","file.","object","type","the","object","type","of","this","file,","for","example,","parent","folder","id","the","parent","folder","id","of","the","object","(root","path","the","path","of","the","onedr","object","from","the","size","the","size","of","the","onedr","object","or","it","snapshot","id","the","id","of","the","snapshot","contain","this","file.","snapshot","num","the","sequenc","number","of","the","snapshot","contain","this","snapshot","time","the","time","at","which","the","snapshot","contain","this"],["365","onedr","folder","channel","folder","name","the","name","of","the","folder","correspond","to","the","channel","id","the","id","of","the","team","channel","contain","this","channel","membership","type","the","membership","type","of","the","team","channel.","channel","name","the","display","name","of","the","team","channel.","creat","time","the","creation","time","of","the","onedr","object.","id","the","id","of","the","o365","onedr","object.","item","count","the","count","of","item","in","the","folder.","modifi","time","the","modifi","time","of","the","onedr","object.","name","the","name","of","the","onedr","object.","o","365","quarantin","info","quarantin","inform","for","the","folder.","object","type","the","object","type","of","this","folder,","for","example,","parent","folder","id","the","parent","folder","id","of","the","object","(root","path","the","path","of","the","onedr","object","from","the","size","the","size","of","the","onedr","object","or","it","snapshot","id","the","id","of","the","snapshot","contain","this","folder.","snapshot","num","the","sequenc","number","of","the","snapshot","contain","this","snapshot","time","the","time","at","which","the","snapshot","contain","this"],["365","onedr","object","channel","folder","name","the","name","of","the","folder","correspond","to","the","channel","membership","type","the","membership","type","of","the","team","channel.","channel","name","the","display","name","of","the","team","channel.","creat","time","the","creation","time","of","the","onedr","object.","id","the","id","of","the","o365","onedr","object.","modifi","time","the","modifi","time","of","the","onedr","object.","name","the","name","of","the","onedr","object.","parent","folder","id","the","parent","folder","id","of","the","object","(root","path","the","path","of","the","onedr","object","from","the","size","the","size","of","the","onedr","object","or","it"],["365","onedr","object","connect","count","total","number","of","o365onedriveobject","object","match","the","request"],["365","org","organiz","organiz","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","child","connect","list","of","direct","children","of","o365org.","all","org","all","tag","author","oper","child","connect","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","email","address","id","is","relic","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exchang","graph","migrat","status","status","of","the","ew","to","microsoft","graph","migrat","exocomput","id","group","summari","summari","of","microsoft","group","count.","has","share","point","legaci","snapshot","specifi","whether","the","org","has","legaci","sharepoint","snapshots.","id","id","of","the","hierarchi","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","mailbox","pend","graph","migrat","count","of","protected,","activ","mailbox","not","yet","on","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","past","1","day","mailbox","complianc","count","complianc","count","for","exchange.","past","1","day","mailbox","out","of","complianc","count","out","of","complianc","count","for","sharepoint","site","collections.","past","1","day","onedr","complianc","count","complianc","count","for","onedrives.","past","1","day","onedr","out","of","complianc","count","out","of","complianc","count","for","onedrives.","past","1","day","sharepoint","complianc","count","complianc","count","for","sharepoint","document","libraries.","past","1","day","sharepoint","out","of","complianc","count","out","of","complianc","count","for","sharepoint","document","libraries.","past","1","day","sp","list","complianc","count","complianc","count","for","sharepoint","lists.","past","1","day","sp","list","out","of","complianc","count","out","of","complianc","count","for","sharepoint","lists.","past","1","day","sp","site","collect","complianc","count","complianc","count","for","sharepoint","site","collections.","past","1","day","sp","site","collect","out","of","complianc","count","out","of","complianc","count","for","sharepoint","site","collections.","past","1","day","team","complianc","count","complianc","count","for","teams.","past","1","day","team","out","of","complianc","count","out","of","complianc","count","for","teams.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","search","descend","connect","list","of","all","descend","of","o365org.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","status","tenant","id","the","tenant","id","of","the","microsoft","organization.","unprotect","user","count","number","of","o365","user","with","no","sla","assigned.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id","workload","summari","summari","of","workload","by","type."],["365","org","connect","organiz","organiz","count","total","number","of","o365org","object","match","the","request"],["365","org","info","organiz","organiz","exchang","on","colossus","exchang","colossus","status.","org","id","organiz","organiz","id","of","o365","subscription.","past","1","day","mailbox","complianc","count","count","of","mailbox","compliant.","past","1","day","mailbox","out","of","complianc","count","count","of","mailbox","out","of","compliance.","past","1","day","onedr","complianc","count","count","of","onedr","compliant.","past","1","day","onedr","out","of","complianc","count","count","of","onedr","out","of","compliance.","past","1","day","sharepoint","complianc","count","count","of","sharepoint","drive","compliant.","past","1","day","sharepoint","out","of","complianc","count","count","of","sharepoint","drive","out","of","compliance.","past","1","day","sp","list","complianc","count","count","of","sharepoint","list","compliant.","past","1","day","sp","list","out","of","complianc","count","count","of","sharepoint","list","out","of","compliance.","past","1","day","sp","site","collect","complianc","count","complianc","count","for","sharepoint","site","collections.","past","1","day","sp","site","collect","out","of","complianc","count","out","of","complianc","count","for","sharepoint","site","collections.","past","1","day","team","complianc","count","count","of","team","compliant.","past","1","day","team","out","of","complianc","count","count","of","team","out","of","compliance.","status","provis","status","of","o365","subscription."],["365","pdl","group","repli","group","the","group","for","the","prefer","data","locat","and"],["365","saa","setup","kickoff","repli","app","client","id","per","type","the","app","client","id","per","type.","csrf","token","the","csrf","token."],["365","servic","account","status","resp","status","the","servic","account","status.","usernam","the","username."],["365","setup","kickoff","resp","app","client","id","the","exchang","app","client","id","for","the","singular","app","client","id","per","type","the","app","client","id","per","type.","csrf","token","the","csrf","token."],["365","sharepoint","drive","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","relic","list","natur","id","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","natur","id","the","natur","id","of","the","sharepoint","drive.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","id","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","parent","id","physic","path","sequenti","list","of","the","physic","ancestor","of","this","prefer","data","locat","the","prefer","data","locat","of","the","sharepoint","drive.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","site","child","id","the","child","id","of","the","object","use","for","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","titl","total","storag","in","byte","url","use","storag","in","byte","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","sharepoint","drive","connect","count","total","number","of","o365sharepointdr","object","match","the","request"],["365","sharepoint","list","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","the","id","of","the","o365","sharepoint","list","object.","is","relic","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","natur","id","the","natur","id","of","the","sharepoint","list.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","id","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","parent","id","physic","path","sequenti","list","of","the","physic","ancestor","of","this","prefer","data","locat","the","prefer","data","locat","of","the","sharepoint","list.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","site","child","id","the","child","id","of","the","object","use","for","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","titl","url","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","sharepoint","list","connect","count","total","number","of","o365sharepointlist","object","match","the","request"],["365","sharepoint","object","object","id","the","sharepoint","object","id.","parent","id","the","parent","id","of","the","object.","prefer","data","locat","the","prefer","data","locat","of","the","sharepoint","workload.","site","child","id","the","child","id","of","the","object","use","for","titl","the","titl","or","name","of","the","sharepoint","object."],["365","sharepoint","object","connect","count","total","number","of","o365sharepointobject","object","match","the","request"],["365","site","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exclud","object","the","object","exclud","from","protect","for","full","sharepoint.","hierarchi","level","id","object","id.","is","ransomwar","investig","enabl","ransomwar","investig","enabl","status.","is","relic","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","id","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","parent","id","physic","path","sequenti","list","of","the","physic","ancestor","of","this","prefer","data","locat","the","prefer","data","locat","of","the","sharepoint","site.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","site","child","id","the","child","id","of","the","object","use","for","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","titl","url","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","site","connect","count","total","number","of","o365sit","object","match","the","request"],["365","subscript","app","type","count","exchang","app","count","the","number","of","exchang","app","in","this","subscript","onedr","app","count","the","number","of","onedr","app","in","this","subscript","sharepoint","app","count","the","number","of","sharepoint","app","in","this","subscript","subscript","id","the","id","of","the","o365","subscription.","team","app","count","the","number","of","team","app","in","this","subscript"],["365","team","conv","channel","channel","id","the","rsc","id","of","channel.","folder","id","the","id","of","sharepoint","folder","of","the","channel.","is","archiv","specifi","whether","the","channel","is","relic","or","not.","membership","type","the","membership","type","of","the","channel.","name","display","name","of","the","channel.","natur","id","the","natur","id","of","microsoft","365","team","channel."],["365","team","conv","channel","connect","count","total","number","of","o365teamconvchannel","object","match","the","request"],["365","team","convers","sender","display","name","natur","id"],["365","team","convers","sender","connect","count","total","number","of","o365teamconversationssend","object","match","the","request"],["365","team","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","relic","logic","path","sequenti","list","of","the","logic","ancestor","of","this","member","count","name","name","of","the","hierarchi","object.","natur","id","the","natur","id","of","the","team.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","org","id","organiz","organiz","physic","path","sequenti","list","of","the","physic","ancestor","of","this","prefer","data","locat","the","prefer","data","locat","of","the","team.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","team","name","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["365","team","channel","folder","id","the","id","of","the","sharepoint","folder","for","the","folder","name","the","name","of","the","sharepoint","folder","for","the","id","the","id","of","the","team","channel.","is","archiv","specifi","whether","the","channel","is","relic","or","not.","membership","type","the","membership","type","of","the","channel.","name","the","display","name","of","the","team","channel.","natur","id","the","natur","id","of","microsoft","365","team","channel."],["365","team","channel","connect","count","total","number","of","o365teamschannel","object","match","the","request"],["365","team","connect","count","total","number","of","o365team","object","match","the","request"],["365","team","convers","channel","id","the","rsc","id","of","the","channel.","channel","name","display","name","of","the","channel.","channel","post","count","the","number","of","match","convers","post","in","the"],["365","team","convers","connect","count","total","number","of","o365teamsconvers","object","match","the","request"],["365","user","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","child","connect","list","of","direct","children","of","o365user.","all","org","all","tag","author","oper","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","email","address","id","id","of","the","hierarchi","object.","is","relic","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["365","user","descend","metadata","id","the","object","id.","name","the","name","of","the","object.","prefer","data","locat","the","prefer","data","locat","of","the","workload.","user","princip","name","the","user","princip","name","of","the","object."],["365","user","descend","metadata","connect","count","total","number","of","o365userdescendantmetadata","object","match","the","request"],["oauth","code","for","edg","reg","repli","cdm","ova","link","link","to","download","rubrik","cdm","ova","for","virtual","registr","code","request","paramet","for","an","oauth","access","token","to","window","tool","link","link","to","the","window","tool","use","to","package,"],["object","id","for","hierarchi","type","object","id","list","of","object","id","for","the","hierarchi","type.","snappabl","type","the","workload","hierarchi","type","of","the","objects."],["object","type","access","summari","account","id","store","the","account","id","here","in","case","the","account","name","store","the","account","name","here","in","case","the","delta","hit","chang","in","sensit","hit","for","the","time","period.","object","type","object","type.","platform","store","the","platform","to","determin","the","icon","when","polici","summari","detail","polici","summaries.","total","hit","total","number","of","sensit","hits."],["object","type","access","summari","connect","count","total","number","of","objecttypeaccesssummari","object","match","the","request"],["onboard","mode","backup","stat","backup","stat","bucket","contain","backup","stat","in","differ","time","rang","buckets.","num","full","fail","total","number","of","full","fail","in","the","chosen","num","full","succeed","total","number","of","full","succeed","in","the","chosen","num","item","back","up","total","number","of","item","back","up","in","the"],["onboard","mode","stat","complet","percentag","percentag","of","complet","for","full","backups.","num","full","in","progress","total","number","of","full","in-progress.","num","full","succeed","total","number","of","full","succeeded.","total","protect","count","count","of","the","number","of","object","protect","with"],["option","group","arn","amazon","resourc","name","(arn)","of","the","option","group.","engin","option","group","engine.","major","engin","version","major","version","of","the","option","group","engine.","name","name","of","the","option","group.","vpc","id","virtual","privat","cloud","(vpc)","correspond","to","the","option"],["oracl","aco","paramet","list","paramet","required.","support","in","v6.0+","an","array","that","contain"],["oracl","data","guard","group","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","cdm","id","of","the","oracl","data","guard","group.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","data","guard","group","id","the","data","guard","group","id","of","the","oracl","data","guard","type","the","data","guard","type","of","the","oracl","data","db","role","the","role","of","the","oracl","data","guard","group.","db","uniqu","name","the","db","uniqu","name","of","the","oracl","data","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","host","log","retent","effect","host","log","retent","for","the","oracl","data","effect","log","backup","frequenc","effect","log","backup","frequenc","for","the","oracl","database.","effect","log","retent","effect","log","retent","for","the","oracl","data","guard","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","log","retent","hour","the","host","log","retention,","in","hours,","of","the","id","id","of","the","hierarchi","object.","is","relic","whether","the","oracl","data","guard","group","is","a","is","replica","true","if","this","object","is","a","replica,","it","is","zero","rpo","enabl","support","in","v9.6+.","indic","whether","zero","rpo","(near-zero","last","valid","result","the","last","valid","result","of","the","oracl","data","latest","user","note","latest","user","note","information.","log","backup","frequenc","the","log","backup","frequency,","in","minutes,","of","the","log","rate","per","rman","channel","in","mb","support","in","v9.5+.","specifi","the","rman","rate","paramet","log","retent","hour","the","log","retention,","in","hours,","of","the","oracl","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","channel","the","number","of","rman","channel","use","for","backup","num","instanc","the","number","of","instanc","of","the","oracl","data","num","log","snapshot","the","number","of","log","snapshot","taken","of","the","num","tablespac","the","number","of","tablespac","contain","in","the","oracl","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pdbs","the","pluggabl","databas","of","an","oracl","data","guard","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","prefer","data","guard","member","uniqu","name","an","order","sequenc","of","oracl","data","guard","member","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","rate","per","rman","channel","in","mb","support","in","v9.5+.","specifi","the","rman","rate","paramet","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","section","size","in","gigabyt","specifi","the","section","size,","in","gigabytes,","to","be","secur","metadata","secur","postur","metadata.","should","backup","from","primari","onli","specifi","whether","backup","job","should","run","on","the","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","tablespac","the","list","of","tablespac","in","the","oracl","data","use","secur","thrift","specifi","whether","the","data","guard","group","use","secur"],["oracl","databas","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","archiv","log","mode","archivelogmod","of","the","oracl","database.","author","oper","the","author","oper","on","the","object.","cdm","id","cdm","id","of","the","oracl","database.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","data","guard","group","the","oracl","data","guard","group","correspond","to","the","data","guard","type","the","data","guard","type","of","the","oracl","database.","db","role","the","role","of","the","oracl","database.","db","uniqu","name","the","db","uniqu","name","of","the","oracl","database.","directori","path","the","directori","path","of","the","oracl","database.","effect","host","log","retent","effect","host","log","retent","for","the","oracl","database,","effect","log","backup","frequenc","effect","log","backup","frequenc","for","the","oracl","database.","effect","log","retent","effect","log","retent","for","the","oracl","database.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","log","retent","hour","the","host","log","retention,","in","hours,","of","the","id","id","of","the","hierarchi","object.","instanc","specifi","detail","of","the","oracl","databas","instances.","is","live","mount","specifi","whether","the","oracl","databas","is","live","mounted.","is","relic","whether","the","oracl","databas","is","a","relic","in","is","replica","true","if","this","object","is","a","replica,","it","is","zero","rpo","enabl","support","in","v9.6+.","indic","whether","zero","rpo","(near-zero","last","valid","result","the","last","valid","result","of","the","oracl","database.","latest","user","note","latest","user","note","information.","live","mount","list","of","live","mount","for","an","oracl","database.","cdm","id","cluster","creation","date","id","is","file","onli","mount","is","instant","recov","is","readi","mount","databas","mount","databas","name","owner","sourc","databas","sourc","databas","name","sourc","snapshot","status","target","host","mount","target","oracl","host","target","oracl","rac","log","backup","frequenc","the","log","backup","frequency,","in","minutes,","of","the","log","rate","per","rman","channel","in","mb","support","in","v9.5+.","specifi","the","rman","rate","paramet","log","retent","hour","the","log","retention,","in","hours,","of","the","oracl","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","channel","the","number","of","rman","channel","use","for","backup","num","instanc","the","number","of","instanc","of","the","oracl","database.","num","log","snapshot","the","number","of","log","snapshot","taken","of","the","num","tablespac","the","number","of","tablespac","contain","in","the","oracl","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","os","name","specifi","the","os","name","for","the","oracl","host","os","type","specifi","the","os","type","for","the","oracl","host","pdbs","the","pluggabl","databas","of","an","oracl","database.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","rate","per","rman","channel","in","mb","support","in","v9.5+.","specifi","the","rman","rate","paramet","rba","role","the","rbs","role","of","the","oracl","databas","in","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","section","size","in","gigabyt","specifi","the","section","size,","in","gigabytes,","to","be","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","tablespac","the","list","of","tablespac","in","the","oracl","database.","use","secur","thrift","specifi","whether","the","oracl","databas","use","secur","thrift"],["oracl","databas","connect","count","total","number","of","oracledatabas","object","match","the","request"],["oracl","db","detail","blackout","window","respons","info","db","uniqu","name","support","in","v5.0-v5.3","oracl","databas","uniqu","name.","(db_unique_name)","host","info","support","in","v5.3+","an","array","that","contain","the","is","live","mount","support","in","v5.0+","v5.0-v5.3:","boolean","valu","that","indic","last","valid","result","support","in","v5.3+","general","inform","about","last","valid","latest","recoveri","point","50","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","51","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","52","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","53","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","60","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","70","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","80","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","81","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","90","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","91","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","92","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","93","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","94","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","95","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","96","the","time","stamp","of","the","most","recent","recoveri","latest","recoveri","point","97","the","time","stamp","of","the","most","recent","recoveri","log","rate","per","rman","channel","in","mb","support","in","v9.5+","v9.5:","specifi","the","rman","rate","oldest","recoveri","point","50","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","51","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","52","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","53","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","60","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","70","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","80","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","81","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","90","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","91","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","92","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","93","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","94","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","95","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","96","the","time","stamp","of","the","earliest","recoveri","point","oldest","recoveri","point","97","the","time","stamp","of","the","earliest","recoveri","point","oracl","db","summari","oracl","home","support","in","v5.0+","oracl","home","of","the","oracl","oracl","non","sla","properti","pdb","detail","support","in","v8.0+","detail","about","the","pdbs","that","pend","sla","domain","support","in","v5.3+","describ","ani","pend","sla","domain","prefer","dg","member","uniqu","name","support","in","v6.0+","order","list","of","databas","uniqu","rate","per","rman","channel","in","mb","support","in","v9.5+","specifi","the","rman","rate","paramet","section","size","in","gb","support","in","rubrik","cdm","version","9.0","and","later.","should","backup","from","primari","dg","group","member","onli","support","in","v6.0+","indic","whether","to","backup","onli","should","enabl","zero","rpo","support","in","v9.6+","indic","whether","zero","rpo","(near-zero","snapshot","count","required.","support","in","v5.0+","tablespac","required.","support","in","v5.0+","an","array","that","contain"],["oracl","file","download","link","download","link","required.","support","in","v5.3+","link","for","file","download."],["oracl","host","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","the","connect","status","of","the","oracl","host.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","host","log","retent","effect","host","log","retent","for","the","oracl","host.","effect","log","backup","frequenc","effect","log","backup","frequenc","for","the","oracl","host.","effect","log","retent","effect","log","retent","for","the","oracl","host.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exclud","db","uniqu","name","the","db_unique_nam","of","the","oracl","databas","on","this","host","sourc","host","of","the","oracl","database.","host","log","retent","hour","the","host","log","retention,","in","hours,","of","the","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","log","backup","frequenc","the","log","backup","frequency,","in","minutes,","of","the","log","retent","hour","the","log","retention,","in","hours,","of","the","oracl","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","channel","the","number","of","rman","channel","use","for","backup","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["oracl","live","mount","cdm","id","id","of","the","oracl","live","mount.","cluster","cluster","of","the","live","mount.","creation","date","date","when","live","mount","was","created.","id","fid","of","the","oracl","live","mount.","is","file","onli","mount","indic","if","mount","is","file","only.","is","instant","recov","indic","whether","this","mount","was","creat","dure","an","is","readi","describ","if","the","live","mount","is","ready.","mount","databas","mount","databas","of","the","live","mount.","mount","databas","name","name","of","the","mount","database.","owner","the","creator","of","the","live","mount.","sourc","databas","sourc","oracl","databas","of","the","live","mount.","sourc","databas","name","name","of","the","sourc","databas","that","has","been","sourc","snapshot","sourc","snapshot","of","the","oracl","live","mount.","status","status","of","the","live","mount.","target","host","mount","the","full","path","for","the","directori","on","the","target","oracl","host","target","oracl","host","of","the","live","mount.","if","target","oracl","rac","target","oracl","rac","of","the","live","mount.","if"],["oracl","live","mount","connect","count","total","number","of","oraclelivemount","object","match","the","request"],["oracl","log","backup","config","host","log","retent","hour","host","log","retention,","in","hours,","of","the","oracl","log","backup","frequenc","min","log","backup","frequency,","in","minutes,","of","the","oracl","log","retent","hour","log","retention,","in","hours,","of","the","oracl","object."],["oracl","miss","recover","rang","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["oracl","pdb","detail","applic","contain","required.","support","in","v8.0+","list","of","applic","contain","regular","pdbs","required.","support","in","v8.0+","name","of","the","pdbs"],["oracl","rac","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","backup","node","list","of","rac","node","name","design","for","multi-nod","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","the","connect","status","of","the","oracl","rac.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","distribut","backup","automat","specifi","if","backup","are","distribut","automatically.","effect","host","log","retent","effect","host","log","retent","for","the","oracl","rac.","effect","log","backup","frequenc","effect","log","backup","frequenc","for","the","oracl","rac.","effect","log","retent","effect","log","retent","for","the","oracl","rac.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exclud","db","uniqu","name","the","db_unique_nam","of","the","oracl","databas","on","this","host","log","retent","hour","the","host","log","retention,","in","hours,","of","the","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","log","backup","frequenc","the","log","backup","frequency,","in","minutes,","of","the","log","retent","hour","the","log","retention,","in","hours,","of","the","oracl","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","node","order","the","list","of","node","order","prioriti","object","of","num","channel","the","number","of","rman","channel","use","for","backup","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","node","name","of","the","rac","node","design","as","the","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secondari","node","order","list","of","secondari","rac","node","names.","array","secur","metadata","secur","postur","metadata.","should","enabl","multi","node","backup","boolean","valu","that","specifi","whether","multi-nod","backup","is","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["oracl","recover","rang","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["oracl","recover","rang","minim","respons","rang","list","of","recover","rang","for","the","specifi","oracl"],["oracl","top","level","descend","type","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["oracl","top","level","descend","type","connect","count","total","number","of","oracletopleveldescendanttyp","object","match","the","request"],["org","organiz","organiz","all","cluster","capac","quota","all","cluster","capac","quota","enforc","on","the","organization.","all","url","all","url","associ","with","the","organization.","allow","cluster","allow","cluster","for","the","organization.","auth","domain","config","specifi","whether","to","use","the","sso/ldap","configur","of","cross","account","capabl","specifi","cross-account","capabl","enabl","for","this","organization.","descript","descript","of","the","organization.","full","name","full","name","of","the","organization.","has","own","idp","configur","specifi","whether","this","tenant","organiz","has","configur","it","id","id","of","the","organization.","is","envoy","requir","specifi","whether","organiz","is","forc","to","use","rubrik","is","inherit","ip","allowlist","disabl","specifi","whether","ip","allowlist","set","and","entri","are","is","servic","account","disabl","specifi","whether","servic","account","are","not","enabl","for","mfa","status","specifi","mfa","status.","name","name","of","the","organization.","org","admin","role","organiz","organiz","organiz","admin","role.","permiss","permiss","given","to","the","organization.","physic","storag","use","physic","storag","use","by","the","organization.","replic","onli","cluster","cluster","design","as","replication-on","for","the","organization.","self","servic","permiss","self-servic","permiss","assign","to","the","organization.","should","enforc","mfa","for","all","specifi","whether","mfa","is","enforc","for","all","user","sso","group","sso","group","author","for","the","organization.","tenant","network","health","health","of","the","tenant","network","associ","with","the","user","exist","user","in","the","organization."],["org","connect","organiz","organiz","count","total","number","of","org","object","match","the","request"],["org","secur","polici","organiz","organiz","disallow","weaker","polici","specifi","whether","to","disallow","weaker","polici","for","tenants."],["org","for","princip","repli","all","org","the","organiz","to","which","the","princip","has","access."],["overal","ransomwar","investig","summari","analysi","failur","count","count","of","fail","ransomwar","investigations.","analysi","success","count","count","of","success","ransomwar","investigations.","anomali","count","count","of","total","critic","anomali","found."],["password","complex","polici","leak","detect","polici","polici","for","control","leak","password","detection.","length","polici","polici","for","the","length","of","each","password","string.","lowercas","polici","polici","for","the","number","of","lowercas","charact","in","numer","polici","polici","for","the","number","of","numer","charact","in","password","expir","polici","polici","for","control","password","expiration.","password","reus","polici","polici","for","control","password","reuse.","special","char","polici","polici","for","the","number","of","special","charact","in","uppercas","polici","polici","for","the","number","of","uppercas","charact","in"],["patch","db","2","databas","repli","backup","compress","librari","path","support","in","v9.6+","absolut","path","on","the","db2","backup","parallel","support","in","v9.0+","specifi","the","valu","of","the","backup","session","support","in","v9.0+","specifi","the","valu","of","the","is","backup","compress","enabl","support","in","v9.6+","when","true,","db2","backup","are"],["patch","db","2","instanc","repli","async","request","status","required.","support","in","v7.0+","status","of","the","refresh","db","2","instanc","summari","required.","support","in","v7.0+","summari","of","the","edit"],["patch","mysqldb","instanc","respons","async","request","status","required.","support","in","v9.3+","status","of","the","asynchron"],["patch","nutanix","mount","1","repli","nutanix","vm","mount","summari","virtual","machin"],["patch","postgr","db","cluster","respons","async","request","status","required.","support","in","v9.2+","status","of","the","asynchron"],["patch","sap","hana","system","repli","async","request","status","required.","support","in","v5.3+","status","of","the","job","system","summari","required.","support","in","v5.3+","summari","of","the","updat"],["paus","sla","repli","success","return","true","if","the","paus","or","resum","is"],["paus","target","repli","locat","id","rubrik","secur","cloud","manag","locat","id.","status","ownership","status","of","the","archiv","location."],["per","locat","migrat","info","data","migrat","specif","info","the","migrat","info","provider.","locat","id","id","of","the","locat","undergo","migration.","rcv","bucket","aw","bucket","correspond","to","the","target","rcv","location."],["permiss","object","for","hierarchi","type","list","of","object","in","hierarchy.","oper","the","oper","grant","to","the","newli","add","org."],["permiss","polici","aw","manag","polici","list","of","aws-manag","polici","arn","to","be","attach","custom","manag","polici","list","of","custom","polici","document","to","be","attach","extern","artifact","key","extern","artifact","key","to","uniqu","identifi","the","aw"],["phoenix","rollout","progress","num","enabl","the","number","of","object","that","have","phoenix","enabled.","num","in","process","the","number","of","object","that","requir","migrat","and","num","incomplet","first","full","the","number","of","object","that","have","not","yet","num","not","enabl","the","number","of","object","that","requir","migrat","and"],["physic","host","ad","domain","activ","directori","domain","name","for","window","hosts.","agent","id","id","of","the","rubrik","backup","servic","(rbs)","instal","agent","primari","cluster","uuid","the","primari","cluster","uuid","of","the","agent.","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cbt","status","the","cbt","status","of","this","physic","host.","cdm","id","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","relat","the","relat","of","the","cluster","to","the","primari","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","default","cbt","the","default","cbt","status","of","this","physic","host.","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","rba","certif","the","rba","certif","of","the","host.","host","volum","id","id","of","the","hierarchi","object.","ip","address","is","archiv","is","changelist","enabl","specifi","whether","the","changelist","option","is","enabled.","is","exchang","host","specifi","if","the","physic","host","is","a","microsoft","is","mssql","host","specifi","if","the","physic","host","is","a","sql","is","oracl","host","specifi","if","physic","host","is","an","oracl","host.","is","replica","true","if","this","object","is","a","replica,","it","last","success","upgrad","time","timestamp","of","the","last","success","rbs","upgrad","on","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","mssql","sdd","detail","specifi","the","mssql","sdd","details.","name","name","of","the","hierarchi","object.","nas","api","endpoint","specifi","the","nas","api","endpoint.","nas","api","hostnam","specifi","the","nas","api","hostname.","nas","migrat","info","inform","pertain","to","switch","the","nas","host","from","nas","vendor","type","specifi","the","nas","vendor,","which","can","be","isilon,","network","throttl","network","throttl","inform","associ","with","this","physic","host.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oracl","sdd","detail","specifi","the","oracl","databas","sensit","data","monitor","details.","oracl","set","the","oracl","settings,","such","as","the","sep","configur","oracl","user","detail","the","oracl","user","detail","of","this","physic","host.","os","name","os","type","the","oper","system","type","of","the","physic","host.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","rba","packag","upgrad","info","specifi","the","rubrik","backup","servic","(rbs)","upgrad","status","rbs","upgrad","status","rbs","upgrad","status","of","the","host.","rbs","version","version","of","the","rubrik","backup","servic","(rbs)","on","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","resourc","info","resourc","inform","associ","with","this","physic","host","as","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","vfd","state"],["physic","host","connect","count","total","number","of","physicalhost","object","match","the","request"],["pit","restor","mysqldb","instanc","respons","async","request","status","required.","support","in","v9.4+","status","of","the","asynchron","id","required.","support","in","v9.4+","id","of","the","new"],["pit","restor","postgr","db","cluster","respons","async","request","status","required.","support","in","v9.2+","status","of","the","asynchron","id","required.","support","in","v9.2+","id","of","the","new"],["polari","inventori","sub","hierarchi","root","child","connect","list","of","children.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","descend","connect","list","of","descendants.","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","root","enum","top","level","descend","connect","list","of","top-level","descend","(with","respect","to","rbac).","all","org","all","tag","configur","sla","domain","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","physic","path","rsc","nativ","object","pend","sla","rsc","pend","object","paus","assign","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut"],["polari","snapshot","archiv","locat","id","specifi","the","id","of","the","locat","where","the","archiv","locat","name","specifi","the","name","of","the","locat","where","the","archiv","snapshot","archiv","copi","of","the","snapshot.","backup","type","specifi","backup","type","for","this","snapshot.","consist","level","the","consist","level","of","the","snapshot.","date","the","date","of","the","snapshot.","expir","date","the","expir","date","of","the","snapshot.","expiri","hint","specifi","whether","the","snapshot","will","expir","soon.","has","unexpir","archiv","copi","indic","whether","the","snapshot","has","a","valid","archiv","has","unexpir","replica","indic","whether","the","snapshot","has","a","valid","replica.","id","the","id","of","the","snapshot.","index","time","the","time","when","the","snapshot","was","indexed.","index","attempt","the","number","of","index","attempt","for","the","snapshot.","is","anomali","flag","if","the","snapshot","is","an","anomaly.","is","archiv","copi","specifi","whether","the","snapshot","is","an","archiv","copy.","is","archiv","specifi","whether","the","snapshot","has","been","archiv","to","is","corrupt","specifi","whether","or","not","the","snapshot","is","corrupted.","is","delet","from","sourc","specifi","whether","the","snapshot","has","been","delet","from","is","download","snapshot","specifi","whether","the","snapshot","was","download","from","an","is","expir","specifi","whether","or","not","the","snapshot","is","expired.","is","index","specifi","whether","or","not","the","snapshot","is","indexed.","is","on","demand","snapshot","specifi","whether","the","snapshot","is","an","on-demand","snapshot.","is","quarantin","process","specifi","whether","rsc","is","process","the","snapshot","to","is","quarantin","specifi","whether","the","snapshot","is","quarantined.","is","ransomwar","investig","snapshot","specifi","whether","the","snapshot","has","been","analyz","by","is","replica","specifi","whether","the","snapshot","is","a","replica.","is","replic","specifi","whether","the","snapshot","has","been","replic","to","is","retent","lock","specifi","whether","the","snapshot","is","retent","locked.","is","snapshot","searchabl","indic","whether","snapshot-level","file","search","is","avail","for","is","unindex","specifi","whether","or","not","the","snapshot","is","unindexable.","latest","user","note","latest","user","note","information.","legal","hold","info","contain","info","regard","legal","hold","on","the","snapshot;","parent","snapshot","id","specifi","the","parent","snapshot","id.","pend","sla","specifi","that","the","sla","domain","assign","is","pend","polari","specif","snapshot","rubrik-specif","inform","about","snapshot","of","specif","workloads.","currently,","replic","locat","the","replic","data","locat","for","the","snapshot.","retent","lock","mode","across","locat","specifi","the","mode","of","the","retent","lock","if","sequenc","number","the","sequenc","number","of","this","snapshot","(order","within","sla","domain","the","effect","sla","domain","of","this","snapshot.","snappabl","id","the","workload","id","of","the","snapshot.","snapshot","retent","info","snapshot","retention-rel","inform","for","local,","archival,","and","replic","sourc","snapshot","id","specifi","the","sourc","snapshot","id.","unexpir","archiv","snapshot","count","the","count","of","unexpir","archiv","snapshot","copies.","unexpir","replica","count","the","count","of","unexpir","replica","copies."],["polici","detail","analyz","total","analyz","in","a","policy.","creator","polici","creator.","data","type","id","list","of","datatyp","id","in","a","policy.","descript","polici","description.","id","polici","id.","is","activ","data","categori","is","activ","or","not.","last","updat","time","time","when","the","polici","was","last","updated.","name","polici","name.","object","percent","coverag","percentag","of","object","covered.","pend","analysi","object","object","with","pend","initi","analysis.","percent","coverag","the","percentag","of","coverag","for","a","data","category.","total","document","type","total","document","type","in","a","policy.","total","hit","total","sensit","hit","in","a","policy.","total","object","total","object","in","a","policy."],["polici","detail","connect","count","total","number","of","policydetail","object","match","the","request"],["polici","obj","access","risk","reason","user","access","risk","reasons.","access","type","summari","specifi","the","access","type","summari","for","a","principal.","all","analyz","map","analysi","status","analysi","status","of","the","polici","object.","analyz","hit","analyz","hit","count","for","various","risk","levels.","asset","metadata","specifi","the","metadata","of","the","asset.","attribut","summari","specifi","the","sensit","file","count","summari","for","attributes.","data","type","result","specifi","the","data","type","level","results.","delta","user","count","chang","in","the","user","count","for","various","risk","document","type","summari","specifi","the","sensit","file","count","summari","for","document","exposur","summari","signifi","the","file","exposur","summari","of","the","asset.","file","result","connect","access","by","sid","represent","access","by","sid","represent","short","form","analyz","group","result","analyz","result","analyz","risk","hit","attribut","summari","creat","by","creation","time","db","entiti","type","directori","document","type","summari","error","code","exposur","summari","filenam","file","with","hit","file","with","total","hit","hit","is","direct","acl","last","access","time","last","modifi","time","last","scan","time","mip","label","summari","mode","modifi","by","nativ","path","num","activ","num","activ","breakdown","num","activ","delta","num","children","num","descend","error","file","num","descend","file","num","descend","folder","num","descend","skip","ext","file","num","descend","skip","size","file","open","access","file","open","access","file","with","hit","open","access","folder","open","access","stale","file","open","access","type","owner","pagin","id","princip","access","info","risk","level","risk","reason","sensit","file","sensit","hit","size","snappabl","snapshot","fid","snapshot","timestamp","stale","file","stale","file","with","hit","stale","type","std","path","total","hit","total","sensit","hit","type","user","access","type","folder","child","connect","access","by","sid","represent","access","by","sid","represent","short","form","analyz","group","result","analyz","result","analyz","risk","hit","attribut","summari","creat","by","creation","time","db","entiti","type","directori","document","type","summari","error","code","exposur","summari","filenam","file","with","hit","file","with","total","hit","hit","is","direct","acl","last","access","time","last","modifi","time","last","scan","time","mip","label","summari","mode","modifi","by","nativ","path","num","activ","num","activ","breakdown","num","activ","delta","num","children","num","descend","error","file","num","descend","file","num","descend","folder","num","descend","skip","ext","file","num","descend","skip","size","file","open","access","file","open","access","file","with","hit","open","access","folder","open","access","stale","file","open","access","type","owner","pagin","id","princip","access","info","risk","level","risk","reason","sensit","file","sensit","hit","size","snappabl","snapshot","fid","snapshot","timestamp","stale","file","stale","file","with","hit","stale","type","std","path","total","hit","total","sensit","hit","type","user","access","type","has","insight","specifi","whether","the","object","has","insight","or","not.","id","is","user","access","enabl","object","specifi","whether","the","object","has","user","access","enabl","is","user","activ","enabl","specifi","whether","the","user","activ","for","the","object","mip","label","summari","specifi","the","sensit","file","count","summari","for","mip","object","status","object","type","specifi","the","object","type","of","the","asset.","os","type","polici","summari","risk","hit","sensit","hit","for","various","risk","levels.","risk","level","risk","level","of","the","polici","object.","root","file","result","root","file","result.","scan","error","info","scan","error","inform","for","the","polici","object.","scan","status","specifi","the","scan","status","of","the","asset.","sensit","file","sensit","file","count","for","various","risk","levels.","share","type","snappabl","snapshot","fid","snapshot","timestamp","timestamp","in","ms.","time","context","the","same","snapshot","may","be","return","for","differ","total","sensit","hit","sensit","hit","accumul","across","differ","workload","for","the","unus","sensit","file","unus","sensit","file","count","for","various","risk","levels.","user","count","user","count","for","various","risk","levels.","violat","sever","signifi","the","violat","sever","of","the","asset.","whitelist","analyz","list"],["polici","obj","connect","count","total","number","of","policyobj","object","match","the","request"],["polici","object","usag","hierarchi","object","polici"],["polici","object","usag","connect","count","total","number","of","policyobjectusag","object","match","the","request"],["polici","result","polici","polici","definition.","violat","name","distinct","violat","name","observ","for","this","policy,","sort","violat","summari","aggreg","violat","summari","for","the","policy."],["polici","risk","summari","file","sensit","files.","hit","sensit","hits.","id","polici","id.","risk","risk","level","of","the","policy."],["polici","summari","high","risk","file","file","with","sensit","data","and","open","access.","low","risk","file","file","with","sensit","data,","but","no","open","access.","summari","polici","summaries."],["polici","violat","creat","at","the","time","the","violat","was","creat","at.","detail","addit","detail","about","the","polici","violation.","last","evalu","at","last","time","when","this","violat","was","evalu","by","last","updat","at","the","last","time","the","violat","was","updated.","last","updat","by","id","of","the","user","who","last","chang","the","name","the","name","of","the","violation.","this","field","will","origin","id","the","origin","id","of","the","violation.","origin","start","time","origin","start","time","is","the","timestamp","when","the","parent","polici","violat","id","the","id","of","the","parent","polici","violation.","this","polici","polici","associ","with","this","violation.","polici","version","the","version","of","the","policy.","polici","violat","id","the","id","of","the","polici","violation.","possibl","remedi","for","violat","target","possibl","remedi","for","violat","target","type.","remedi","detail","of","the","remedi","associ","with","the","violation.","resourc","critic","violat","count","total","number","of","critical-sever","violat","on","the","resource.","resourc","high","violat","count","total","number","of","high-sever","violat","on","the","resource.","resourc","id","resourc","involv","in","a","polici","violation.","resourc","low","violat","count","total","number","of","low-sever","violat","on","the","resource.","resourc","max","sever","the","highest","sever","among","the","resourc","violations.","resourc","medium","violat","count","total","number","of","medium-sever","violat","on","the","resource.","resourc","metadata","metadata","for","the","resourc","involv","in","the","polici","resourc","type","resourc","type.","resourc","violat","count","resource-level","aggreg","violat","counts:","secondari","resourc","id","secondari","resourc","that","is","involv","in","a","polici","secondari","resourc","type","the","type","of","the","secondari","resource.","this","field","status","the","current","status","of","the","polici","violation.","status","reason","a","reason","explain","the","last","chang","in","status.","user","friend","violat","id","polici","violat","id","in","user","friend","format","user","last","updat","the","user","who","last","updat","the","violation.","violat","sever","the","sever","of","the","violat","itself,","if","set.","violat","summari","for","resourc","the","violat","summari","for","the","resourc","in","the"],["polici","violat","connect","count","total","number","of","policyviol","object","match","the","request"],["polici","violat","histori","entri","connect","count","total","number","of","violationhistoryentri","object","match","the","request"],["polici","violat","by","resourc","activ","violat","count","the","number","of","activ","violat","for","the","resource.","critic","sever","violat","count","number","of","critic","sever","violations.","resourc","id","the","resourc","id","of","the","resource.","resourc","metadata","metadata","for","the","resourc","involv","in","the","polici","resourc","type","the","resourc","type","of","the","resource.","sever","the","max","sever","of","the","violat","for","the"],["polici","violat","by","resourc","connect","count","total","number","of","policyviolationsbyresourc","object","match","the","request"],["postgr","sql","databas","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","entiti","info","the","basic","entiti","information.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","metadata","the","metadata","field","of","postgresql","database.","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","parent","entiti","the","parent","object","of","the","specifi","kosmo","hierarchi","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["postgr","sql","databas","connect","count","total","number","of","postgresqldatabas","object","match","the","request"],["postgr","sql","db","cluster","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","the","id","of","the","workload","on","the","rubrik","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","mode","whether","this","is","a","standalon","or","ha","postgresql","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","entiti","info","the","basic","entiti","information.","host","info","the","host","inform","of","the","discover","entity.","id","id","of","the","hierarchi","object.","is","relic","indic","whether","the","workload","type","is","relic.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","live","mount","the","live","mount","of","the","given","workloads.","cluster","host","mount","path","id","mount","creat","time","mount","host","name","point","in","time","sourc","snapshot","subnet","mask","workload","id","workload","name","logic","path","sequenti","list","of","the","logic","ancestor","of","this","metadata","the","metadata","field","of","postgresql","databas","cluster.","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","postgr","ha","cluster","info","ha","cluster","info","includ","the","group","name","and","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recover","rang","the","recoveri","rang","for","the","current","workload.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","status","the","connect","status","of","postgresql","databas","cluster.","user","detail","the","user","detail","of","postgresql","databas","cluster."],["postgr","sql","db","cluster","connect","count","total","number","of","postgresqldbclust","object","match","the","request"],["power","platform","environ","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","api","usag","the","api","usag","of","the","organiz","dure","the","author","oper","the","author","oper","on","the","object.","backup","job","stat","stat","of","the","backup","job","in","the","last","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","the","connect","status","to","the","organization.","datavers","org","url","organiz","organiz","datavers","instanc","url","when","the","environ","has","datavers","dynam","rsc","org","id","organiz","organiz","dynam","rsc","org","id","that","is","onboard","for","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","environ","type","the","type","of","the","power","platform","environment,","such","exocomput","id","denot","the","id","of","the","exocomput","cluster","associ","id","id","of","the","hierarchi","object.","last","refresh","time","the","time","at","which","the","power","platform","environ","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","natur","id","id","of","the","power","platform","environ","at","the","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","onboard","app","type","the","list","of","saa","applic","type","that","are","org","url","organiz","organiz","the","instanc","url","of","the","power","platform","environment.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","saa","app","org","info","organiz","organiz","the","inform","of","the","saa","app","organization.","saa","org","type","organiz","organiz","the","organiz","type","that","categor","the","saa","provider.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","the","lifecycl","status","of","the","power","platform","environment.","storag","region","the","rsc","storag","region","for","the","organization."],["precheck","job","repli","job","id","upgrad","precheck","job","id."],["precheck","status","repli","end","time","precheck","job","end","time.","failur","result","list","of","precheck","failed.","next","run","info","next","precheck","job","information.","num","precheck","total","number","of","precheck","run.","run","period","in","minut","precheck","job","durat","in","minutes."],["prepar","aw","cloud","account","delet","repli","cloud","format","url","cloudform","url","to","delet","the","stack.","featur","region","map","list","of","featur","versions.","templat","url","templat","url","of","the","cloudform","stack.","the","templat"],["prepar","featur","updat","for","aw","cloud","account","repli","cloud","format","url","aw","cloudform","url.","templat","url","templat","url","of","the","cloudform","stack."],["princip","auth","domain","id","id","of","the","authent","domain.","auth","domain","name","name","of","the","authent","domain.","descript","descript","of","the","principal.","email","email","address","of","the","principal.","id","id","of","the","principal.","name","name","of","the","principal.","princip","type","type","of","the","principal."],["princip","api","permiss","repli","api","permiss","list","of","api","permiss","grant","to","this","principal."],["princip","connect","count","total","number","of","princip","object","match","the","request"],["princip","detail","direct","group","direct","group","the","princip","belong","to.","princip","summari","summari","of","the","principal."],["princip","entiti","id","id","of","the","entiti","(e.g.,","sid","for","identities,","idp","type","idp","type.","name","name","of","the","entity."],["princip","insight","messag","messag","of","the","insight.","time","timestamp","of","the","insight","in","unix","milliseconds.","type","type","of","the","insight."],["princip","insight","connect","count","total","number","of","principalinsight","object","match","the","request"],["princip","object","summari","cluster","cluster","to","which","this","polici","belongs.","full","name","name","of","the","principal.","object","id","id","of","the","object.","object","name","name","of","the","object.","object","type","type","of","the","object.","princip","id","id","of","the","principal.","risk","level","risk","level","for","the","principal.","sensit","file","sensit","file","count","for","various","risk","levels.","total","sensit","hit","sensit","hit","accumul","across","differ","workload","for","the"],["princip","object","summari","connect","count","total","number","of","principalobjectsummari","object","match","the","request"],["princip","summari","access","type","summari","specifi","the","access","type","summari","for","a","principal.","addit","metadata","addit","metadata","for","the","principal.","alert","info","alert","inform","about","the","principal.","cloud","account","info","cloud","account","to","which","the","princip","belongs.","creation","time","determin","the","creation","time","of","the","principal.","data","categori","result","data","categori","result","for","principal.","data","type","result","data","type","result","for","principal.","data","violat","info","data","violat","inform","of","the","principal.","delet","at","delet","timestamp","of","the","principal.","delta","sensit","file","delta","sensit","file","count","for","various","risk","levels.","delta","sensit","hit","delta","sensit","hit","accumul","across","differ","workload","for","depart","depart","of","the","principal.","domain","fid","domain","fid","of","principal.","domain","id","id","of","the","domain","to","which","the","princip","domain","name","name","of","the","domain","to","which","the","princip","entiti","id","entiti","id","of","the","principal.","entiti","name","entiti","name","of","the","principal.","full","name","name","of","the","principal.","has","insight","specifi","whether","the","object","has","insight","or","not.","hybrid","state","hybrid","state","of","the","principal.","ident","tag","ident","tag","for","the","principal.","ident","violat","info","ident","violat","inform","of","the","principal.","idp","type","sourc","of","principal.","is","complet","determin","whether","the","princip","is","fulli","populated.","is","newli","add","determin","whether","the","princip","has","been","newli","added.","is","primari","determin","whether","the","princip","is","primary.","last","chang","determin","the","last","chang","time","of","the","principal.","nativ","type","nativ","type","of","the","principal.","num","descend","number","of","descend","of","the","princip","(user","or","object","count","count","of","object","to","which","the","princip","has","owner","list","of","owner","of","this","principal.","previous","risk","level","previous","risk","level","for","the","principal.","princip","id","id","of","the","principal.","princip","origin","origin","of","principal.","princip","type","type","of","principal.","privileg","type","type","of","privileg","of","the","principal.","privileg","membership","detail","membership","count","of","the","principal.","risk","level","risk","level","for","the","principal.","risk","reason","risk","reason","for","a","principal.","root","domain","id","root","domain","id","of","the","principal.","root","domain","name","root","domain","name","of","the","principal.","secret","metadata","secret","metadata","for","non-human","identities.","sensit","file","sensit","file","count","for","various","risk","levels.","sensit","hit","sensit","hit","for","various","risk","levels.","sensit","object","count","number","of","object","on","which","the","user","has","status","status","of","the","principal.","titl","titl","of","principal.","total","sensit","hit","sensit","hit","accumul","across","differ","workload","for","the","uniqu","identifi","uniqu","identifi","of","the","principal.","upn","uniqu","name","for","the","princip","(user","or","group).","violat","info","violat","inform","of","the","principal."],["princip","summari","connect","count","total","number","of","principalsummari","object","match","the","request"],["privat","contain","registri","repli","type","pcr","detail","detail","of","pcr,","includ","the","registri","url","and","pcr","latest","approv","bundl","version","latest","approv","exotask","bundl","version","for","your","privat"],["process","ransomwar","investig","workload","count","repli","count","the","number","of","ransomwar","investig","workload","process","in"],["product","document","content","a","flatten","list","of","node","repres","the","content","descript","summari","of","the","help","topic.","id","id","of","the","help","topic.","languag","languag","code","in","iso","639-1.","next","doc","id","id","of","the","next","topic","in","sequenti","read","next","doc","titl","titl","of","the","next","topic.","prev","doc","id","id","of","the","previous","topic","in","sequenti","read","prev","doc","titl","titl","of","the","previous","topic.","relat","list","of","relat","help","topics.","titl","titl","of","the","help","topic.","type","type","of","the","help","topic."],["protect","object","cluster","the","cluster","correspond","to","the","object.","effect","sla","fid","opt","effect","sla","domain","rsc","id","of","the","object.","effect","sla","opt","effect","sla","domain","of","the","object.","id","id","of","the","object.","is","archiv","specifi","whether","the","object","is","archiv","or","not.","is","unprotect","specifi","whether","the","object","is","unprotected.","name","name","of","the","object.","object","type","object","type.","sla","paus","status","the","paus","status","of","the","protect","object."],["protect","object","connect","count","total","number","of","protectedobject","object","match","the","request"],["protect","summari","2","num","workload","cover","by","recoveri","plan","number","of","workload","cover","by","recoveri","plans.","recoveri","plan","summari","recoveri","plan","summari","group","by","recoveri","plan","type.","total","workload","with","sla","protect","number","of","workload","protect","by","an","sla","domain."],["provis","cloud","direct","cloud","vm","repli","virtual","machin","cloud","provid","cloud","provid","for","the","virtual","machin","provisioning.","cloud","region","cloud","region","for","virtual","machin","provisioning.","imag","id","cloud","provider-specif","imag","identifi","for","the","virtual","machine.","project","id","the","gcp","project","host","the","image.","onli","set","region","imag","id","map","cloud","region","to","imag","id.","singl","entri","user","data","enrol","data","for","the","nas","cloud","direct","virtual"],["pure","storag","array","1","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","the","array","on","the","rubrik","cluster.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","uuid","of","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","connect","status","between","rubrik","and","the","array.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","name","hostnam","or","ip","address","of","the","array.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","rubrik","cluster","manag","this","array.","pure","storag","id","id","of","the","array","in","pure","storage.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","version","pure","storag","softwar","version","of","the","array."],["pure","storag","array","1","connect","count","total","number","of","purestoragearrayv1","object","match","the","request"],["pure","storag","protect","group","snapshot","summari","list","respons","data","support","in","v9.6+","list","of","match","objects.","has","more","support","in","v9.6+","if","there","is","more.","next","cursor","support","in","v9.6+","cursor","to","retriev","the","next","total","support","in","v9.6+","total","list","responses."],["pure","storag","protect","group","1","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","array","id","id","of","the","pure","storag","array","this","protect","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","the","protect","group","on","the","rubrik","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cdm","snapshot","list","of","snapshot","taken","for","this","pure","storag","cdm","id","cdm","version","cluster","uuid","date","expir","date","expiri","hint","id","index","attempt","is","corrupt","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","unindex","latest","user","note","retent","info","sla","domain","sub","obj","workload","id","workload","type","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","uuid","of","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","exclud","volum","id","of","volum","exclud","from","snapshot","in","this","id","id","of","the","hierarchi","object.","is","relic","whether","the","protect","group","has","been","delet","from","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","protect","group.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","volum","number","of","volum","in","this","protect","group.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","rubrik","cluster","manag","this","protect","pure","storag","id","id","of","the","protect","group","in","pure","storage.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","statist","for","the","pure","storag","protect","group","(for","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","volum","volum","in","this","protect","group.","all","org","all","tag","array","id","author","oper","cdm","id","cdm","link","cdm","pend","object","paus","assign","cluster","cluster","uuid","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","relic","is","replica","latest","user","note","logic","path","miss","snapshot","connect","miss","snapshot","group","by","connect","name","newest","archiv","snapshot","newest","index","snapshot","newest","replic","snapshot","newest","snapshot","num","workload","descend","object","backup","window","object","paus","status","object","type","oldest","snapshot","on","demand","snapshot","count","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","primari","cluster","uuid","protect","group","ref","pure","storag","id","replic","object","count","replic","object","report","workload","secur","metadata","serial","number","size","sla","assign","sla","paus","status","snapshot","connect","snapshot","distribut","snapshot","group","by","connect","snapshot","group","by","summari"],["pure","storag","protect","group","1","connect","count","total","number","of","purestorageprotectiongroupv1","object","match","the","request"],["pure","storag","volum","1","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","array","id","id","of","the","pure","storag","array","this","volum","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","the","volum","on","the","rubrik","cluster.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","uuid","of","cdm","cluster.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","whether","the","volum","has","been","delet","from","pure","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","volume.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","rubrik","cluster","manag","this","volume.","protect","group","ref","protect","group","that","contain","this","volume,","each","with","pure","storag","id","id","of","the","volum","in","pure","storage.","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","statist","for","the","pure","storag","volum","(for","example,","secur","metadata","secur","postur","metadata.","serial","number","serial","number","of","the","volume.","size","capac","of","the","volum","in","bytes.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info"],["pure","storag","volum","1","connect","count","total","number","of","purestoragevolumev1","object","match","the","request"],["put","smb","configur","repli","output","support","in","v5.0+"],["pvc","inform","access","mode","access","mode","mount","on","a","host.","capac","pvc","storag","capacity.","id","id","to","uniqu","identifi","pvc.","label","json","string","of","pvc","labels.","name","name","of","pvc","in","snapshot.","phase","phase","in","which","pvc","bound","to","the","pv.","storag","class","storag","class","of","pvc.","volum","pv","name","on","which","pvc","bound."],["quarantin","spec","file","detail","file","which","need","to","be","quarantined.","snapshot","id","id","of","the","snapshot."],["quarantin","threat","hunt","match","repli","is","quarantin","success","specifi","whether","the","quarantin","was","successful."],["queri","datastor","freespac","threshold","repli","threshold","datastor","freespac","threshold","configuration."],["queri","sddl","repli","sec","info","secur","inform","for","each","request","path."],["quiesc","candid","list","respons","data","support","in","v9.6+","list","of","match","objects.","has","more","support","in","v9.6+","if","there","is","more.","next","cursor","support","in","v9.6+","cursor","to","retriev","the","next","total","support","in","v9.6+","total","list","responses."],["ransomwar","investig","analysi","summari","repli","analysi","detail","a","list","of","daili","summari","of","ransomwar","investig"],["ransomwar","investig","enabl","repli","aw","account","the","aw","account","on","which","ransomwar","investig","can","azur","subscript","the","azur","subscript","on","which","ransomwar","investig","can","cloud","direct","cluster","cloud","direct","cluster","on","which","ransomwar","monitor","can","gcp","project","the","gcp","project","on","which","ransomwar","investig","can","microsoft","365","subscript","microsoft","365","subscript","on","which","ransomwar","monitor","can","rubrik","cloud","vault","locat","rubrik","cloud","vault","archiv","locat","on","which","ransomwar"],["ransomwar","result","cluster","uuid","the","cluster","id","of","the","object.","encrypt","probabl","the","probabl","of","the","snapshot","be","encrypted.","id","the","databas","id","of","the","ransomwar","result.","is","encrypt","indic","whether","the","snapshot","is","encrypted.","manag","id","the","internal","manag","id","of","the","object.","snapshot","data","the","date","of","the","snapshot.","snapshot","fid","the","internal","fid","of","the","snapshot.","snapshot","id","the","internal","id","of","the","snapshot.","workload","id","the","internal","id","of","the","object."],["ransomwar","result","connect","count","total","number","of","ransomwareresult","object","match","the","request"],["ransomwar","result","group","data","group","by","info","group","by","information.","ransomwar","result","group","data","provid","further","group","for","the","data.","ransomwar","result","pagin","ransomwar","result","data.","cluster","uuid","encrypt","probabl","id","is","encrypt","manag","id","snapshot","data","snapshot","fid","snapshot","id","workload","id"],["ransomwar","result","group","data","connect","count","total","number","of","ransomwareresultgroupeddata","object","match","the","request"],["rba","instal","url","debian","hash","sha","256","sha-256","hash","of","the","instal","for","linux","in","debian","url","sign","url","of","instal","for","linux","in","debian","rpm","hash","sha","256","sha-256","hash","of","the","instal","for","linux","in","rpm","url","sign","url","of","instal","for","linux","in","rpm","window","hash","sha","256","sha-256","hash","of","the","instal","for","windows.","window","url","sign","url","of","instal","for","windows."],["rbac","permiss","oper","oper","assign","to","the","organiz","on","newli","add","rbac","object","the","object","which","permiss","assign","to."],["rcs","azur","archiv","locat","consumpt","stat","output","rcs","azur","consumpt","stat","list","of","rcs","azur","archiv","locat","consumpt","stats."],["rcv","account","entitl","archiv","entitl","rubrik","cloud","vault","(rcv)","archiv","tier","entitl","details.","backup","entitl","rubrik","cloud","vault","(rcv)","backup","tier","entitl","details.","entitl","rubrik","cloud","vault","(rcv)","entitlements.","rcv","entitl","group","entitl","group","for","capac","consolidation.","onli","popul","when"],["rcv","bli","migrat","detail","bli","migrat","status","current","status","of","blob","immut","migrat","for","this","bli","migrat","unavail","reason","reason","for","the","locat","be","unavail","for","migration.","cluster","name","name","of","the","cluster","associ","with","the","location.","locat","id","locat","id","of","the","location.","locat","name","name","of","the","location.","locat","status","avail","status","of","the","location.","migrat","status","current","status","of","blob","immut","migrat","for","this","migrat","unavail","reason","reason","for","the","locat","be","unavail","for","migration.","rcv","region","region","of","the","location.","storag","consum","byte","total","byte","use","on","the","archiv","location.","tier","tier","of","the","location."],["rcv","bli","migrat","detail","connect","count","total","number","of","rcvblimigrationdetail","object","match","the","request"],["rcv","entitl","runway","current","byte","sum","of","current","archiv","storag","(bytes)","across","the","last","refresh","at","timestamp","of","the","most","recent","forecast","refresh","for","redund","redund","level","of","this","entitl","group.","runway","day","project","number","of","day","until","the","group","use","tier","tier","of","this","entitl","group.","week","growth","pct","weighted-averag","week","growth","rate","(percent)","across","the","group"],["rds","instanc","class","batch","result","db","engin","the","databas","engin","(e.g.,","mysql,","postgres).","db","engin","version","the","databas","engin","version.","none","if","queri","was","instanc","class","list","of","support","db","instanc","class","for","this"],["rds","instanc","detail","from","aw","address","connect","address","of","the","rds","database.","alloc","storag","in","gb","alloc","size","of","an","rds","instance.","backup","retent","period","retent","time","for","rds","backups.","db","engin","db","engin","of","rds","instance.","db","engin","version","version","of","the","databas","engine.","db","instanc","class","db","class","for","rds","instance.","db","instanc","status","status","of","an","rds","instance.","refer","to","the","db","mainten","window","mainten","window","for","the","rds","instance.","db","name","name/identifi","of","the","database.","db","paramet","group","name","name","of","paramet","group","of","rds","instance.","db","subnet","group","name","subnet","group","name","of","rds","instance.","engin","version","rds","db","instanc","engin","version.","iop","input/output","(io)","oper","limit","per","second","for","rds","is","multi","az","specifi","whether","rds","is","avail","in","multi","avail","kms","key","id","key","manag","system","(kms)","key","id","associ","with","master","usernam","usernam","of","the","master","user.","option","group","name","name","of","option","group","of","rds","instance.","port","port","use","to","connect","to","the","rds","instance.","primari","az","primari","avail","zone","(az)","of","rds","instance.","rds","instanc","arn","amazon","resourc","name","(arn)","of","rds","instance.","storag","type","storag","type","of","rds","instance.","amazon","rds","provid","vpc","id","id","of","vpc","in","aws."],["rds","instanc","export","default","alloc","storag","in","gb","alloc","size","of","an","rds","instance.","databas","instanc","class","db","class","for","rds","instance.","aw","support","instanc","db","engin","db","engin","of","rds","instance.","db","engin","version","version","of","db","engine.","db","instanc","class","db","class","for","rds","instance.","db","paramet","group","name","nparamet","group","name","of","the","rds","instance.","db","subnet","group","name","subnet","group","name","of","the","rds","instance.","iop","input/output","(io)","oper","limit","per","second","for","rds","is","multi","az","specifi","whether","rds","is","avail","in","multi","avail","kms","key","id","key","manag","system","(kms)","key","id","associ","with","metadata","metadata","for","the","rds","instanc","as","key-valu","pairs.","option","group","name","name","of","option","group","of","rds","instance.","port","port","use","to","connect","to","the","rds","instance.","primari","az","primari","avail","zone","(az)","of","rds","instance.","storag","type","storag","type","of","rds","instance.","amazon","rds","provid","support","db","engin","version","list","of","rds","db","instanc","engin","versions.","vpc","id","virtual","privat","cloud","(vpc)","associ","with","rds","instance."],["read","integr","repli","integr","the","request","integration."],["reclaim","cluster","stat","data","cluster","name","name","of","the","cluster.","cluster","uuid","uuid","of","the","cluster.","download","snapshot","storag","storag","taken","by","download","snapshot","(in","bytes).","other","storag","other","storag","(calcul","as","total_used_storag","-","relic_storag","-","protect","object","storag","storag","taken","by","protect","object","exclud","download","snapshot","relic","storag","storag","taken","by","relic","object","(in","bytes).","total","capac","total","capac","(in","bytes).","total","use","storag","total","use","storag","(in","bytes).","unprotect","object","storag","storag","taken","by","unprotect","object","exclud","download","snapshot"],["reclaim","cluster","stat","data","connect","count","total","number","of","reclaimableclusterstatsdata","object","match","the","request"],["recov","dev","op","repositori","repli","error","messag","error","messag","if","the","recoveri","oper","failed.","taskchain","id","taskchain","id","for","the","recoveri","operation."],["recov","glue","iceberg","tabl","snapshot","repli","taskchain","uuid","uniqu","identifi","of","the","trigger","recoveri","job."],["recoveri","can","save","as","plan","can","be","save","as","recoveri","plan.","data","transfer","type","data","transfer","type","for","the","recovery.","elaps","time","durat","of","the","recoveri","job,","in","milliseconds.","end","time","timestamp,","in","unix","milliseconds,","when","the","recoveri","job","id","identifi","of","a","particular","recovery.","is","adhoc","recoveri","whether","this","recoveri","is","an","adhoc","recovery.","is","archiv","if","recoveri","has","been","archived.","num","workload","number","of","workloads.","progress","progress","of","the","recovery.","recoveri","failur","action","action","to","be","taken","if","recoveri","fails.","recoveri","name","name","of","the","recovery.","recoveri","outcom","outcom","of","the","recovery.","recoveri","plan","basic","info","basic","inform","about","the","recoveri","plan","associ","with","recoveri","plan","id","recoveri","plan","id.","recoveri","type","recoveri","type.","start","time","timestamp,","in","unix","milliseconds,","when","the","recoveri","job","status","status","of","the","recovery.","step","comprehens","recoveri","steps.","trigger","from","specifi","how","was","recoveri","triggered."],["recoveri","connect","count","total","number","of","recoveri","object","match","the","request"],["recoveri","report","expir","at","report","expir","timestamp.","report","id","uniqu","identifi","for","the","report.","report","url","url","to","download","the","generat","pdf","report.","status","current","status","of","the","report."],["recoveri","spec","repli","recoveri","spec","list","of","recoveri","specif","for","the","recoveri","plan."],["refresh","dev","op","organiz","repli","status","list","of","status","of","refresh","oper","for","each"],["refresh","host","repli","output"],["refresh","nas","system","repli","discov","nas","system","summari","required.","support","in","v7.0+","v7.0-v8.0:","an","array","of"],["refresh","storag","array","repli","respons","refresh","storag","array","responses."],["region","display","name","the","human","readabl","name","for","the","region,","e.g.,","id","the","full-path","id","for","the","region,","it","can","name","the","uniqu","name","of","the","region,","identifi","a"],["region","connect","count","total","number","of","region","object","match","the","request"],["regist","archiv","migrat","repli","success","indic","whether","the","registr","was","successful."],["regist","aw","featur","artifact","repli","all","aw","nativ","idto","rsc","id","map","list","of","aw","nativ","id","to","rsc","account"],["regist","cloud","cluster","repli","error","error","messag","if","ani","error","occur","els","empty.","is","success","true","or","false."],["regist","nas","system","repli","nas","discov","job","status","required.","support","in","v7.0+","the","asynchron","request","status","nas","system","summari","required.","support","in","v7.0+","a","summari","of","the"],["remov","node","detail","repli","remov","cloud","resourc","remov","cloud","resources.","remov","node","detail","the","detail","of","remov","nodes."],["remov","node","for","replac","repli","is","success","specifi","if","the","oper","was","a","success.","job","id","job","id","of","the","submit","job.","messag","detail","of","submit","job","includ","job","name","and"],["remov","upload","record","repli","success","success","flag","for","remov","upload","record."],["remov","vlan","repli","failur","vlan","id","vlan","id(s)","that","fail","to","be","deleted.","success","vlan","id","vlan","id(s)","that","delet","successfully."],["replac","cluster","node","repli","is","success","specifi","if","the","oper","was","a","success.","job","id","job","id","of","the","submit","job.","messag","detail","of","submit","job","includ","job","name","and"],["replic","snapshot","info","associ","cdm","cdm","cluster","associ","with","the","snapshot.","date","time","the","snapshot","was","created.","expir","date","time","the","snapshot","expires.","snappabl","id","id","of","the","workload","to","which","the","snapshot","snapshot","id","id","to","uniqu","identifi","the","snapshot."],["replic","network","throttl","bypass","repli","cluster","name","required.","name","of","the","replic","target","cluster.","id","required.","cluster","uuid","of","the","replic","target.","should","bypass","replic","throttl","required.","support","in","v6.0+","if","true,","the","replic"],["replic","pair","config","detail","configur","detail","about","the","replic","pair","of","rubrik","connect","detail","addit","inform","about","the","connect","status","of","the","fail","task","fail","replic","task","count","in","last","24","hours.","is","paus","repres","replic","pair","paus","enabl","status.","network","throttl","network","throttl","detail","for","sourc","rubrik","cluster.","run","task","run","replic","task","count.","sourc","cluster","sourc","rubrik","cluster","details.","status","connect","status","of","the","replic","pair","(active,","disconnected,","storag","storag","(in","bytes)","consum","on","target","cluster","by","target","cluster","target","rubrik","cluster","details."],["replic","pair","connect","count","total","number","of","replicationpair","object","match","the","request"],["replic","target","throttl","bypass","summari","list","respons","data","list","of","all","the","network","throttl","bypass","summary.","total","total","list","responses."],["report","migrat","status","cluster","rubrik","cluster","of","the","report.","detail","json","string","that","captur","the","migrat","details,","if","report","id","report","id","on","the","rubrik","cluster.","report","name","report","name.","report","templat","report","template.","rsc","report","id","the","correspond","report","id","on","rsc","after","migration.","status","migrat","status","of","the","report."],["report","migrat","status","connect","count","total","number","of","reportmigrationstatus","object","match","the","request"],["report","object","cluster","cluster","information.","id","object","identifier.","name","object","name.","object","type","display","name","object","type","display","name.","physic","path","physic","path","for","locat","display."],["report","object","connect","count","total","number","of","reportobject","object","match","the","request"],["report","templat","by","categori","categori","categori","of","the","report","templates.","descript","descript","of","the","category.","display","name","display","name","of","the","category.","templat","list","of","report","templat","that","belong","to","this"],["report","migrat","count","count","report","count","accord","to","migrat","status."],["request","persist","exoclust","repli","setup","taskchain","id","incid","id","for","the","exocomput","setup","job."],["request","pure","storag","protect","group","forc","full","snapshot","repli","id","required.","support","in","v9.6+","id","of","the","pure","volum","info","list","of","volum","that","have","request","a","forc"],["request","status","success","whether","the","request","complet","successfully."],["request","success","success","specifi","whether","the","request","is","successful."],["reset","type","of","remov","job","reset","after","remov","type","the","reset","type."],["resourc","group","id","the","full-path","id","for","the","resourc","group,","it","name","the","name","of","the","resourc","group."],["resourc","group","connect","count","total","number","of","resourcegroup","object","match","the","request"],["resourc","group","info","id","specifi","the","id","of","the","resourc","group.","name","specifi","the","name","of","the","resourc","group."],["respons","success","success","indic","whether","the","request","return","successfully."],["restor","activ","directori","forest","2","repli","job","id","cdm","job","id","for","the","forest","recoveri","job.","taskchain","id","taskchain","id","for","the","forest","recoveri","job","(uuid)."],["restor","azur","ad","object","with","password","repli","job","id","job","id","of","the","restor","job.","taskchain","id","taskchain","id","of","the","restor","job","taskchain."],["restor","postgr","sql","db","cluster","repli","async","request","status","required.","support","in","v9.4+","v9.4-v9.5:","status","of","the","id","required.","support","in","v9.4+","v9.4-v9.5:","id","of","the","per","object","async","request","status","support","in","v9.6+","per-object","job","statuses.","alway","popul"],["restor","postgr","db","cluster","snapshot","respons","async","request","status","required.","support","in","v9.2+","status","of","the","asynchron"],["resum","target","repli","locat","id","rubrik","secur","cloud","manag","locat","id.","status","ownership","status","of","the","archiv","location."],["retri","backup","resp","cluster","resp","the","respons","for","the","backup","job","from","the"],["role","alreadi","sync","cluster","cluster","to","which","role","is","alreadi","synced.","descript","role","description.","effect","permiss","role","permiss","that","are","in","effect.","effect","rbac","permiss","permiss","assign","to","the","role","that","are","in","explicit","protect","cluster","explicit","list","of","protect","rubrik","clusters.","explicit","assign","permiss","role","permiss","that","are","explicit","assign","by","user.","id","role","id.","is","org","admin","organiz","organiz","if","this","role","is","a","tenant","organiz","administrator.","is","read","onli","boolean","valu","indic","if","the","role","is","read-only.","is","sync","whether","the","role","is","mark","to","be","synced.","name","role","name.","org","id","organiz","organiz","role","organiz","id.","pagin","sync","cluster","pagin","list","of","cluster","to","which","this","role","id","is","connect","last","sync","name","permiss","role","permissions.","protect","cluster","list","of","protect","rubrik","clusters.","sync","cluster","explicit","list","of","cluster","to","which","role","is","tag","permiss","tag-scop","permiss","of","the","role.","popul","for","tag-scop"],["role","connect","count","total","number","of","role","object","match","the","request"],["role","templat","descript","role","templat","description.","explicit","assign","permiss","role","permiss","that","are","explicit","assign","to","the","id","role","templat","id.","name","role","templat","name.","permiss","role","permissions."],["role","templat","connect","count","total","number","of","roletempl","object","match","the","request"],["rotat","servic","account","secret","repli","access","token","uri","uri","to","retriev","the","access","token.","client","id","id","of","the","servic","account.","client","secret","secret","use","to","authent","to","the","author","server.","name","name","of","the","servic","account.","suspend","tpr","polici","id","id","of","the","quorum","author","polici","whose","servic"],["row","metadata","metadata","2","new","version","of","metadata","object.","valu"],["row","connect","column","count","total","number","of","row","object","match","the","request"],["rsc","perm","to","cdm","info","out","incompat","cluster","incompat","cluster","with","cdm","version","earlier","than","9.3.","id","is","connect","last","sync","name","remov","cluster","remov","clusters.","id","is","connect","last","sync","name","sync","cluster","sync","clusters.","id","is","connect","last","sync","name","total","disconnect","cluster","total","number","of","disconnect","cluster","elig","to","synchron"],["rubrik","manag","aw","target","aw","iam","pair","id","option","field","of","an","aw","iam","pair","id","aw","kms","key","id","aw","kms","key","id.","aw","kms","key","manag","name","of","the","aw","kms","key","manager.","aw","retriev","tier","retriev","tier","of","the","aw","target.","bucket","bucket","name","of","the","aw","target.","bypass","proxi","specifi","whether","the","proxi","set","should","be","bypass","cloud","account","cloud","account","detail","of","the","aw","target.","cloud","nativ","loc","templat","type","templat","type","of","the","storag","settings.","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","comput","set","comput","set","of","the","aw","target.","connect","status","connected/disconnect","status","of","the","aw","target.","consum","byte","number","of","byte","store","on","the","target.","encrypt","type","encrypt","type","to","be","use","for","the","aw","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","immut","set","immut","set","of","the","aw","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","is","consolid","enabl","flag","to","check","if","consolid","is","enabl","or","kms","endpoint","option","field","of","the","kms","server","endpoint","when","kms","master","key","id","kms","master","key","id","requir","for","encrypt","for","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","proxi","set","proxi","set","of","the","aw","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","region","region","of","the","aw","target.","run","task","number","of","archiv","task","run","on","this","target.","s","3","endpoint","option","field","of","an","amazon","s3","endpoint","for","status","status","of","the","target.","storag","class","storag","class","of","the","aw","target.","sync","failur","reason","reason","whi","sync","of","this","target","with","cdm","sync","status","sync","status","of","aw","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["rubrik","manag","azur","target","access","key","access","key","of","the","azur","target.","access","tier","access","tier","of","the","azur","target.","bypass","proxi","specifi","whether","the","proxi","set","should","be","bypass","cloud","account","cloud","account","detail","of","the","azur","target.","cloud","nativ","companion","cloud","nativ","inform","of","the","azur","target.","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","comput","set","comput","set","of","the","azur","target.","connect","status","connect","status","of","the","azur","target.","consum","byte","number","of","byte","store","on","the","target.","contain","name","contain","name","of","the","azur","target.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","immut","set","immut","set","of","the","azur","target.","instanc","type","instanc","type","of","the","azur","location.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","azur","tier","support","specifi","whether","azur","archiv","tier","is","support","or","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","is","consolid","enabl","flag","to","check","if","consolid","is","enabl","or","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","proxi","set","proxi","set","of","the","azur","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","retriev","tier","retriev","tier","of","the","azur","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","storag","account","name","storag","account","name","of","the","azur","target.","sync","failur","reason","reason","whi","sync","of","this","target","with","cdm","sync","status","sync","status","of","azur","location.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["rubrik","manag","dca","target","agenc","agenc","provid","for","the","dca","target.","aw","retriev","tier","aw","retriev","tier","of","the","dca","target.","bucket","name","bucket","name","of","the","dca","target.","cap","endpoint","cap","endpoint","of","the","dca","target.","certif","content","certif","content","provid","for","the","dca","target.","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","connect","status","connect","status","of","the","dca","target.","consum","byte","number","of","byte","store","on","the","target.","encrypt","type","encrypt","type","provid","for","the","dca","target.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","kms","master","key","id","kms","master","key","provid","for","the","dca","target.","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","mission","mission","of","the","dca","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","region","region","of","the","dca","target.","role","name","role","name","provid","for","the","dca","target.","rsa","key","rsa","key","of","the","dca","target.","run","task","number","of","archiv","task","run","on","this","target.","s","3","endpoint","amazon","s3","endpoint","of","the","dca","target.","status","status","of","the","target.","storag","class","storag","class","of","the","dca","target.","sync","failur","reason","reason","for","the","synchron","failur","between","this","target","sync","status","synchron","status","of","dca","location.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","token","durat","token","durat","in","minut","of","the","dca","target.","upgrad","status","upgrad","status","of","the","target."],["rubrik","manag","gcp","target","archiv","proxi","set","proxi","set","of","this","gcp","target.","bucket","bucket","of","the","gcp","target.","bypass","proxi","specifi","whether","the","proxi","set","should","be","bypass","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","cnp","specif","field","cnp","specif","field","for","the","gcp","target","location.","connect","status","connect","status","of","the","gcp","target.","consum","byte","number","of","byte","store","on","the","target.","encrypt","type","encrypt","type","to","be","use","for","the","gcp","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","immut","set","immut","set","of","the","gcp","archiv","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","region","region","of","gcp","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","storag","class","storag","class","of","the","gcp","target.","sync","failur","reason","reason","whi","sync","of","this","target","with","cdm","sync","status","sync","status","of","gcp","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["rubrik","manag","glacier","target","cloud","account","cloud","account","detail","of","the","amazon","glacier","target.","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","connect","status","connect","status","of","the","amazon","glacier","target.","consum","byte","number","of","byte","store","on","the","target.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","region","region","of","the","amazon","glacier","target.","retriev","tier","retriev","tier","of","the","amazon","glacier","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","sync","failur","reason","reason","of","sync","failur","of","this","target","with","sync","status","sync","status","of","amazon","glacier","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target.","vault","name","vault","name","of","the","amazon","glacier","target."],["rubrik","manag","lck","target","account","name","account","name","of","the","lck","target.","agenc","agenc","provid","for","the","lck","target.","aw","retriev","tier","aw","retriev","tier","of","the","lck","target.","bucket","name","bucket","name","of","the","lck","target.","certif","content","certif","content","provid","for","the","lck","target.","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","connect","status","connect","status","of","the","lck","target.","consum","byte","number","of","byte","store","on","the","target.","encrypt","type","encrypt","type","provid","for","the","lck","target.","fail","task","number","of","archiv","task","fail","on","this","target.","geo","axi","endpoint","geo","axi","endpoint","of","the","lck","target.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","kms","master","key","id","kms","master","key","provid","for","the","lck","target.","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","region","region","of","the","lck","target.","role","name","role","name","provid","for","the","lck","target.","rsa","key","rsa","key","of","the","lck","target.","run","task","number","of","archiv","task","run","on","this","target.","s","3","endpoint","amazon","s3","endpoint","of","the","lck","target.","status","status","of","the","target.","storag","class","storag","class","of","the","lck","target.","sync","failur","reason","reason","whi","sync","of","this","target","with","cdm","sync","status","synchron","status","of","lck","location.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["rubrik","manag","nfs","target","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","connect","status","connect","status","of","the","nfs","target.","consum","byte","number","of","byte","store","on","the","target.","destin","folder","destin","folder","in","the","nfs","location.","export","dir","directori","in","the","nfs","locat","where","snapshot","will","fail","task","number","of","archiv","task","fail","on","this","target.","file","lock","period","in","second","lock","period","of","the","file","in","nfs","in","host","host","of","the","nfs","location.","id","the","id","of","the","target.","immut","set","immut","set","for","the","nfs","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","is","consolid","enabl","flag","to","check","if","consolid","is","enabl","or","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","nfs","auth","type","authent","type","of","nfs.","nfs","version","version","of","nfs","target.","other","nfs","option","other","nfs","options.","reader","retriev","method","the","retriev","method","of","the","reader","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","sub","type","vendor","subtyp","of","the","nfs","archiv","location.","sync","failur","reason","reason","whi","sync","of","this","target","with","cdm","sync","status","sync","status","of","nfs","location.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["rubrik","manag","rcs","target","bli","migrat","status","type","bli","migrat","status","for","this","rcv","azur","target.","cluster","the","cluster","to","which","this","target","belongs.","cluster","ip","map","ip","allow","list","for","location.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","convers","opt","latest","convers","for","this","rcv","azur","location.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","immut","period","day","immut","lock","durat","of","rcv","azur","target","in","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","is","version","level","immut","enabl","specifi","whether","blob","immut","is","enabl","for","the","last","redund","sync","time","last","time","when","redund","state","was","synchron","for","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","privat","endpoint","connect","rcv","privat","endpoint","connect","details.","privat","endpoint","connect","privat","endpoint","connect","for","this","location.","proxi","set","proxi","configur","use","by","the","rubrik","cluster","to","rcv","convers","list","of","convers","for","this","rcv","location.","reader","retriev","method","the","retriev","method","of","the","reader","target.","redund","redund","for","rcv","azur","target.","redund","state","redund","state","for","rcv","azur","target.","region","region","of","rcv","azur","target.","resourc","group","resourc","group","for","rcv","azur","target.","run","task","number","of","archiv","task","run","on","this","target.","should","bypass","proxi","specifi","whether","the","proxi","set","is","bypass","for","should","bypass","proxi","for","datapath","when","enabled,","blob","storag","(data","path)","traffic","bypass","space","usag","alert","threshold","space","usag","threshold","of","rcv","azur","target","abov","status","status","of","the","target.","storag","account","name","storag","account","name","for","rcv","azur","target.","storag","consumpt","valu","storag","consumpt","valu","of","rcv","azur","target.","subscript","id","subscript","id","for","rcv","azur","target.","sync","failur","reason","reason","whi","sync","of","this","target","with","cdm","sync","status","sync","status","of","rcv","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","tier","tier","for","rcv","target.","upgrad","status","upgrad","status","of","the","target."],["rubrik","manag","rcv","aw","target","allow","list","custom","ip","allowlist","for","this","location.","bucket","specifi","the","bucket","for","the","rcv","aw","archiv","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","encrypt","type","encrypt","type","to","be","use","for","the","rcv","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","privat","connect","vpc","interfac","endpoint","configur","for","privat","connectivity.","proxi","set","proxi","configur","use","by","the","rubrik","cluster","to","rcv","convers","list","of","convers","for","this","rcv","location.","reader","retriev","method","the","retriev","method","of","the","reader","target.","redund","redund","for","rcv","aw","target.","region","region","of","rcv","aw","target.","run","task","number","of","archiv","task","run","on","this","target.","should","bypass","proxi","specifi","whether","the","proxi","set","is","bypass","for","should","bypass","proxi","for","datapath","when","enabled,","s3","object","(data","path)","traffic","bypass","status","status","of","the","target.","sync","failur","reason","reason","whi","sync","of","this","target","with","cdm","sync","status","sync","status","of","rcv","aw","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","tier","tier","for","rcv","aw","target.","upgrad","status","upgrad","status","of","the","target."],["rubrik","manag","rcv","gcp","target","bucket","specifi","the","bucket","for","the","rcv","gcp","archiv","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","encrypt","type","encrypt","type","use","for","the","rcv","gcp","target.","exocloud","id","exocloud","instanc","id","use","to","provis","resourc","for","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","proxi","set","proxi","configur","use","by","the","rubrik","cluster","to","reader","retriev","method","the","retriev","method","of","the","reader","target.","region","region","of","rcv","gcp","target.","run","task","number","of","archiv","task","run","on","this","target.","servic","account","nativ","id","nativ","id","of","the","servic","account","for","the","should","bypass","proxi","specifi","whether","the","proxi","set","is","bypass","for","status","status","of","the","target.","sync","failur","reason","reason","whi","sync","of","this","target","with","cdm","sync","status","sync","status","of","rcv","gcp","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","tier","tier","for","rcv","gcp","target.","upgrad","status","upgrad","status","of","the","target."],["rubrik","manag","3","compat","target","access","key","access","key","for","authent","to","the","s3compat","target.","bucket","prefix","prefix","of","the","s3compat","target","bucket.","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","connect","status","connect","status","of","the","s3compat","target.","consum","byte","number","of","byte","store","on","the","target.","encrypt","type","encrypt","type","to","be","use","for","the","s3-compat","endpoint","host","of","the","s3compat","location.","fail","task","number","of","archiv","task","fail","on","this","target.","ibm","detail","ibm","subtyp","specif","details.","ibm","detail","ibm","subtyp","specif","details.","id","the","id","of","the","target.","immut","set","immut","inform","of","s3-compat","location.","immut","set","immut","inform","of","s3-compat","location.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","is","consolid","enabl","flag","to","check","if","consolid","is","enabl","or","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","number","of","bucket","number","of","bucket","in","the","s3compat","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","sub","type","s3-compat","target","subtype.","sync","failur","reason","reason","whi","sync","of","this","target","with","cdm","sync","status","sync","status","of","s3compat","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target.","use","system","proxi","flag","to","check","if","system","proxi","is","be"],["rubrik","manag","tape","target","type","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","connect","status","connect","status","of","the","tape","target.","consum","byte","number","of","byte","store","on","the","target.","destin","folder","name","destin","folder","name","of","target.","fail","task","number","of","archiv","task","fail","on","this","target.","host","name","name","of","the","target","host.","host","port","port","number","of","the","target","host.","id","the","id","of","the","target.","integr","volum","name","integr","volum","name","of","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","sync","failur","reason","reason","whi","sync","of","this","target","with","cdm","sync","status","sync","status","of","tape","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target.","usernam","usernam","of","the","target."],["run","custom","analyz","repli","match","match","found","by","the","custom","analyz","in","the"],["rvc","deploy","tool","link","linux","download","link","download","link","for","the","linux","binari","of","rvcdt.","mac","os","download","link","download","link","for","the","maco","binari","of","rvcdt.","window","download","link","download","link","for","the","window","binari","of","rvcdt."],["3","bucket","detail","arn","arn","of","the","s3","bucket.","name","name","of","the","s3","bucket.","region","region","the","bucket","resid","in.","region","enum","enum","represent","of","bucket","region."],["3","tabl","iceberg","catalog","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","cloud","nativ","id","aw","nativ","id","of","the","s3","tabl","catalog.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","whether","the","catalog","is","a","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","aw","nativ","name","of","the","catalog.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","aw","region","of","the","catalog.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","tag","tag","associ","with","the","catalog."],["3","tabl","iceberg","namespac","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cloud","nativ","id","aw","nativ","id","of","the","s3","tabl","namespace.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","whether","the","namespac","is","a","relic.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","aw","nativ","name","of","the","namespace.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","aw","region","of","the","namespace.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","tag","tag","associ","with","the","namespace."],["3","tabl","iceberg","tabl","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cloud","nativ","id","aw","nativ","id","of","the","s3","tabl","table.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","data","locat","region","region","of","the","storag","locat","where","the","tabl","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","exocomput","configur","whether","exocomput","is","configur","for","the","region","where","is","relic","whether","the","tabl","is","a","relic.","locat","s3","data","locat","for","this","table.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","nativ","name","aw","nativ","name","of","the","table.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","region","aw","region","of","the","table.","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","secur","metadata","secur","postur","metadata.","size","byte","size","of","the","iceberg","tabl","in","bytes.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","tag","tag","associ","with","the","table.","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["saa","app","organiz","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","api","usag","the","api","usag","of","the","organiz","dure","the","author","oper","the","author","oper","on","the","object.","backup","job","stat","stat","of","the","backup","job","in","the","last","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","the","connect","status","to","the","organization.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","environ","type","environ","type","of","the","organiztion.","id","id","of","the","hierarchi","object.","last","refresh","time","the","time","at","which","the","saa","organiz","was","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","onboard","app","type","the","list","of","saa","applic","type","that","are","physic","path","sequenti","list","of","the","physic","ancestor","of","this","saa","app","org","info","organiz","organiz","the","inform","of","the","saa","app","organization.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","the","state","of","the","saa","organization.","storag","region","the","rsc","storag","region","for","the","organization."],["saa","app","organiz","connect","count","total","number","of","saasappsorgan","object","match","the","request"],["saa","workload","metadata","type","repli","type","list","of","the","metadata","types."],["salesforc","object","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","relic","true","if","the","salesforc","object","is","a","relic.","label","label","of","the","salesforc","object.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","natur","id","natur","id","of","the","salesforc","object.","newest","index","snapshot","the","latest","snapshot","that","is","index","and","unexpired,","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","type","indic","whether","the","salesforc","object","is","recommend","for","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","salesforc","object","type","salesforc","object","type.","it","could","either","be","a","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","archiv","locat","id","archiv","locat","name","archiv","snapshot","backup","type","consist","level","date","expir","date","expiri","hint","has","unexpir","archiv","copi","has","unexpir","replica","id","index","time","index","attempt","is","anomali","is","archiv","copi","is","archiv","is","corrupt","is","delet","from","sourc","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","ransomwar","investig","snapshot","is","replica","is","replic","is","retent","lock","is","snapshot","searchabl","is","unindex","latest","user","note","legal","hold","info","parent","snapshot","id","pend","sla","polari","specif","snapshot","replic","locat","retent","lock","mode","across","locat","sequenc","number","sla","domain","snappabl","id","snapshot","retent","info","sourc","snapshot","id","unexpir","archiv","snapshot","count","unexpir","replica","count","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","polari","snapshot","group","by","snapshot","group","by","new","connect","groupbi","connect","for","the","snapshot","of","this","workload.","group","by","info","polari","snapshot","connect","workload","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","date","expir","date","id","index","attempt","is","anomali","is","corrupt","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","unindex","snappabl","id"],["salesforc","object","connect","count","total","number","of","salesforceobject","object","match","the","request"],["salesforc","organiz","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","api","limit","the","api","limit","configur","for","the","salesforc","organization.","api","usag","the","api","usag","of","the","organiz","dure","the","archiv","enabl","whether","archiv","has","been","enabl","(opt","in)","for","archiv","exocomput","id","denot","the","id","of","the","exocomput","cluster","use","author","oper","the","author","oper","on","the","object.","backup","job","stat","stat","of","the","backup","job","in","the","last","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","connect","status","the","connect","status","to","the","organization.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","environ","type","exocomput","id","denot","the","id","of","the","exocomput","cluster","associ","id","id","of","the","hierarchi","object.","last","refresh","time","the","time","at","which","the","salesforc","organiz","was","logic","path","sequenti","list","of","the","logic","ancestor","of","this","metadata","workload","id","rubrik","id","of","the","salesforc","metadata","workload.","name","name","of","the","hierarchi","object.","natur","id","id","of","the","salesforc","organiz","at","the","source.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","onboard","app","type","the","list","of","saa","applic","type","that","are","org","url","organiz","organiz","the","url","of","the","salesforc","organization.","physic","path","sequenti","list","of","the","physic","ancestor","of","this","rsc","nativ","object","pend","sla","sla","domain","assign","which","is","pend","on","the","rsc","pend","object","paus","assign","object","paus","pend","assign","detail","for","rsc","objects.","saa","app","org","info","organiz","organiz","the","inform","of","the","saa","app","organization.","saa","org","type","organiz","organiz","the","organiz","type","that","categor","the","saa","provider.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","status","the","status","of","the","salesforc","organization.","storag","region","the","rsc","storag","region","for","the","organization."],["sap","hana","databas","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","backup","trigger","type","the","backup","trigger","type","for","the","sap","hana","cdm","id","id","associ","with","sap","hana","databas","in","cdm.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","uuid","of","cluster","associ","with","sap","hana","database.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","data","path","spec","specif","for","data","path.","this","is","use","when","data","path","type","data","path","use","for","the","workload.","for","sap","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","forc","full","take","a","full","backup","instead","of","the","schedul","id","id","of","the","hierarchi","object.","info","inform","relat","to","sap","hana","databas","like","databas","is","relic","specifi","whether","the","sap","hana","databas","is","a","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","log","snapshot","connect","log","snapshot","for","given","sap","hana","database.","app","metadata","cdm","id","cluster","uuid","date","fid","internal","timestamp","is","archiv","locat","map","workload","id","workload","type","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","for","sap","hana","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","for","sap","hana","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshot","for","sap","hana","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cluster.","protect","date","date","of","protect","of","sap","hana","database.","rba","role","the","role","of","this","sap","hana","databas","in","recover","rang","connect","recover","rang","for","given","sap","hana","database.","base","full","snapshot","id","cdm","id","cluster","uuid","db","id","end","time","fid","is","archiv","start","time","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","sap","hana","system","sap","hana","system","for","the","given","database.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","sourc","databas","detail","detail","of","the","sourc","sap","hana","databas","configur","system","id","the","cdm","id","for","the","sap","hana","system","total","snapshot","count","the","total","number","of","snapshot","for","sap","hana"],["sap","hana","databas","connect","count","total","number","of","saphanadatabas","object","match","the","request"],["sap","hana","log","snapshot","app","metadata","app","metadata","of","log","snapshot","in","sap","hana.","cdm","id","the","cdm","fid","of","the","sap","hana","snapshot","cluster","uuid","uuid","of","the","cdm","cluster","associ","with","sap","date","the","creation","date","of","the","snapshot.","fid","the","fid","of","the","sap","hana","snapshot","object.","internal","timestamp","the","internal","timestamp","of","the","sap","hana","snapshot","is","archiv","specifi","the","archiv","status","of","the","sap","hana","locat","map","map","of","locat","where","snapshot","is","available.","workload","id","the","cdm","id","of","the","sap","hana","databas","workload","type","the","object","type","on","which","snapshot","was","taken."],["sap","hana","log","snapshot","connect","count","total","number","of","saphanalogsnapshot","object","match","the","request"],["sap","hana","recover","rang","base","full","snapshot","id","id","of","the","associ","base","full","snapshot.","cdm","id","the","cdm","fid","of","the","sap","hana","recover","cluster","uuid","uuid","of","the","cdm","cluster","associ","with","sap","db","id","the","cdm","id","for","the","sap","hana","databas","end","time","end","time","of","the","sap","hana","recover","rang","fid","the","rubrik","fid","of","the","sap","hana","recover","is","archiv","specifi","the","archiv","status","of","sap","hana","recover","start","time","start","time","of","the","sap","hana","recover","rang"],["sap","hana","recover","rang","connect","count","total","number","of","saphanarecoverablerang","object","match","the","request"],["sap","hana","system","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","backup","trigger","type","the","backup","trigger","type","for","the","sap","hana","cdm","id","id","associ","with","sap","hana","system","in","cdm.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","uuid","of","cluster","associ","with","sap","hana","system.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","list","of","host","associ","with","sap","hana","system.","id","id","of","the","hierarchi","object.","instanc","number","instanc","number","for","sap","hana","system.","is","forc","full","on","master","chang","enabl","whether","to","forc","a","full","backup","after","a","is","relic","is","replica","true","if","this","object","is","a","replica,","it","last","refresh","time","timestamp","of","the","sap","hana","system","refresh.","refresh","last","status","updat","time","timestamp","of","the","status","updat","for","the","sap","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","primari","cluster","uuid","uuid","of","the","primari","cluster.","rba","role","the","role","of","this","sap","hana","system","in","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sid","sid","for","the","sap","hana","system,","for","example,","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","ssl","info","inform","requir","to","connect","to","sap","hana","databas","status","current","status","for","the","sap","hana","system:","ok,","status","messag","addit","inform","about","the","current","status","of","the","system","info","addit","inform","about","the","sap","hana","system."],["sap","hana","system","connect","count","total","number","of","saphanasystem","object","match","the","request"],["schedul","report","attach","type","list","of","attach","type","for","report","delivery.","creat","at","creation","time","of","the","schedule.","creator","rubrik","user","that","creat","the","report.","if","the","daili","time","time","of","the","day","for","daili","report","deliveri","id","id","of","the","schedul","of","the","custom","report.","last","editor","rubrik","user","that","last","edit","this","schedule.","if","last","updat","at","last","updat","time","of","the","schedule.","month","date","date","of","the","month","for","report","deliveri","if","month","time","time","of","the","day","for","month","report","deliveri","recipi","email","list","of","email","address","of","(non-rubrik","user)","recipi","report","id","the","custom","report","id","correspond","to","this","schedul","rubrik","recipi","user","list","of","rubrik","user","that","are","the","intend","show","chart","in","email","bodi","specifi","whether","to","show","chart","in","email","body.","time","zone","time","zone","of","the","schedul","time","in","iana","titl","titl","of","the","report.","week","day","weekday","for","report","deliveri","if","week","schedul","is","week","time","time","of","the","day","for","week","report","deliveri"],["schedul","report","connect","count","total","number","of","scheduledreport","object","match","the","request"],["search","cloud","direct","workload","entri","file","version","list","of","snapshot","version","contain","this","file.","filenam","just","the","filenam","without","the","full","path.","path","full","path","of","the","file."],["search","cloud","direct","workload","entri","connect","count","total","number","of","searchclouddirectworkloadentri","object","match","the","request"],["search","365","backup","storag","object","restor","point","resp","restor","point","restor","point","respons","base","on","the","search","criteria."],["search","respons","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["seed","enabl","polici","repli","polici"],["seed","initi","polici","repli","polici"],["send","pdf","report","repli","taskchain","uuid","korg","job","id","of","the","pdf","generat","job."],["send","test","messag","to","exist","webhook","repli","error","info","captur","detail","of","error","encount","within","the","system.","is","success","true","if","the","test","messag","was","success","sent.","webhook","status","specifi","whether","the","webhook","is","enabled."],["send","test","messag","to","webhook","repli","error","info","captur","detail","of","error","encount","within","the","system.","is","success","true","if","the","test","messag","was","success","sent."],["sensit","data","summari","breakdown","breakdown","of","sensit","data","summari","for","the","given","total","risk","summari","total","risk","summari","for","the","given","filter."],["sensit","file","detail","repli","exposur","summari","repres","the","exposur","summari","associ","with","the","file","file","metadata","metadata","of","the","file."],["servic","account","client","id","client","id","of","the","servic","account.","descript","descript","of","the","servic","account.","integr","id","id","of","the","integr","that","use","this","servic","integr","name","name","of","the","integr","that","use","this","servic","last","login","timestamp","of","the","last","login","by","the","servic","name","name","of","the","servic","account.","role","role","assign","to","the","servic","account."],["servic","account","connect","count","total","number","of","serviceaccount","object","match","the","request"],["set","analyz","risk","repli","analyz","analyz","updat","by","the","api."],["set","ceph","set","repli","data","required.","support","in","v9.5+","the","list","of","ceph"],["set","cloud","direct","global","smb","set","repli","offlin","file","behaviour","updat","valu","of","mode","for","offlin","files.","should","support","system","file","updat","valu","of","supportsystemfiles."],["set","coordin","label","repli","entri","label","assign","for","each","virtual","machine."],["set","datastor","freespac","threshold","repli","threshold","datastor","freespac","threshold","configuration."],["set","host","rbs","network","limit","repli","fail","network","throttl","host","host","that","fail","to","updat","their","rbs","network"],["set","miss","cluster","status","repli","is","success","indic","whether","the","miss","cluster","record","was","updat"],["set","self","serv","roll","upgrad","repli","enabl","whether","roll","upgrad","is","enabl","for","the","account."],["set","upgrad","type","repli","code","status","of","the","request.","excepshun","except","encount","by","the","request.","messag","respons","messag","for","the","request."],["set","user","session","manag","config","repli","config","updat","user","session","manag","configuration."],["set","workload","alert","set","repli","enabl","specifi","whether","anomali","alert","are","enabl","or","not."],["setup","azur","365","exocomput","resp","cluster","id","the","cluster","id.","taskchain","id","the","taskchain","id."],["share","export","id","pair","export","id","export","id","of","select","share.","share","name","of","cloud","direct","share."],["share","fileset","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","the","cdm","cluster.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","hardlink","support","enabl","boolean","variabl","denot","if","hard","link","support","is","host","host","of","this","share","fileset.","id","id","of","the","hierarchi","object.","is","pass","through","boolean","variabl","denot","if","this","is","a","nas","is","relic","boolean","variabl","denot","if","the","host","share","is","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","nas","migrat","info","inform","pertain","to","migrat","of","the","nas","host","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","path","except","variabl","denot","path","exceptions.","path","exclud","list","of","path","exclud","in","the","fileset.","path","includ","list","of","path","includ","in","the","fileset.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","includ","statist","for","the","protect","objects,","for","example,","secur","metadata","secur","postur","metadata.","share","hostshar","of","this","sharefileset.","share","type","share","type","of","the","fileset.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","symlink","resolut","enabl","boolean","variabl","denot","if","symlink","resolut","is","enabled."],["sid","polici","hit","summari","sid","summari","list","of","per-princip","polici","hit","summari","for","the"],["signin","log","detail","actor","display","name","the","actor","display","name.","actor","domain","the","actor","domain.","actor","id","actor","information.","the","actor","uniqu","id.","actor","princip","name","the","actor","princip","name","(email","or","upn).","actor","sid","the","actor","sid","(for","on-prem","ad).","actor","user","type","the","actor","user","type.","addit","data","addit","data.","provider-specif","metadata","additional_data.","for","entraid:","contain","applic","id","applic","information.","the","applic","id","accessed.","applic","name","the","applic","name","accessed.","authent","method","the","authent","method","used.","authent","packag","authent","details.","the","authent","packag","used.","citi","the","citi","from","which","the","sign-in","occurred.","correl","id","correl","id","for","track","relat","events.","countri","the","countri","from","which","the","sign-in","occurred.","countri","code","the","countri","code.","devic","name","devic","information.","the","devic","name.","devic","os","the","devic","oper","system.","error","code","error","code","if","sign-in","failed.","event","id","uniqu","identifi","for","the","sign-in","event.","event","timestamp","timestamps.","the","timestamp","when","the","event","occurred.","event","titl","human-read","titl","for","the","event.","event","type","the","type","of","sign-in","event.","ingest","timestamp","the","timestamp","when","the","event","was","ingested.","ip","address","locat","information.","the","ip","address","from","which","the","logon","type","the","logon","type","(numer","code).","logon","type","descript","descript","of","the","logon","type.","mfa","method","the","mfa","method","used.","mfa","status","mfa","information.","mfa","status:","satisfied,","required,","not_required.","process","name","the","process","name","that","initi","the","logon.","provid","the","ident","provider.","resourc","id","the","resourc","id","accessed.","resourc","name","the","resourc","name","accessed.","result","result","information.","the","result","of","the","sign-in.","result","reason","the","reason","for","the","result.","risk","indic","json","array","of","risk","indicators.","risk","level","risk","information.","the","risk","level.","session","id","session","id","for","the","sign-in","session.","state","the","state","from","which","the","sign-in","occurred.","target","display","name","the","target","display","name.","target","domain","the","target","domain.","target","id","target","information.","the","target","uniqu","id.","target","princip","name","the","target","princip","name.","target","sid","the","target","sid","(for","on-prem","ad).","tenant","id","the","tenant","id","from","the","ident","provider."],["signin","log","filter","valu","respons","has","more","whether","there","are","more","valu","avail","beyond","the","valu","the","possibl","filter","valu","(id=value,","label=display","name)."],["signin","log","summari","actor","display","name","the","ident","display","name.","actor","princip","name","the","actor","princip","name","(email","or","upn).","applic","name","the","applic","name","access","dure","sign-in.","authent","method","the","authent","method","used.","citi","the","citi","from","which","the","sign-in","occurred.","countri","the","countri","from","which","the","sign-in","occurred.","devic","name","the","devic","name","from","which","the","sign-in","occurred.","error","code","the","error","code","if","sign-in","failed.","event","id","uniqu","identifi","for","the","sign-in","event.","event","timestamp","the","timestamp","when","the","event","occurred.","event","type","the","type","of","sign-in","event.","failur","categori","the","failur","categori","for","this","sign-in","event.","ip","address","the","ip","address","from","which","the","sign-in","occurred.","logon","type","the","logon","type","description.","mfa","status","the","mfa","status.","process","name","the","name","of","the","applic","or","servic","that","provid","the","ident","provider.","resourc","name","the","resourc","name","access","dure","sign-in.","result","the","result","of","the","sign-in.","risk","level","the","risk","level.","state","the","state","or","provinc","from","which","the","sign-in","tenant","id","the","tenant","id","from","the","ident","provider.","user","id","the","uniqu","identifi","of","the","user","who","perform","user","sid","the","user","sid","(uniqu","user","identifier)."],["signin","log","summari","connect","count","total","number","of","signinlogsummari","object","match","the","request"],["sla","assign","result","success","return","true","for","success","assign","otherwis","false."],["sla","audit","detail","appli","to","exist","snapshot","specifi","whether","to","appli","chang","to","exist","snapshots.","appli","to","ondemand","and","download","snapshot","specifi","whether","to","appli","chang","to","on-demand","and","cluster","rubrik","cluster","uuid.","current","sla","summari","current","sla","domain","summary.","previous","sla","summari","sla","domain","summari","befor","edit","or","update.","timestamp","the","time","at","which","the","user","perform","this","user","action","the","action","(create/update/delete)","perform","on","the","sla","domain.","user","name","name","of","the","user","who","perform","the","creat"],["sla","domain","id","the","id","of","the","sla","domain.","name","the","name","of","the","sla","domain.","object","specif","config","the","object-specif","configur","of","the","sla","domain.","version","the","version","of","the","sla","domain."],["sla","domain","connect","count","total","number","of","sladomain","object","match","the","request"],["sla","info","id","sla","domain","id.","name","sla","domain","name."],["sla","result","success"],["smb","domain","account","name","account","name","of","smb","domain.","cluster","cluster","of","the","smb","domain.","dns","server","dns","server","authorit","for","this","smb","domain.","empti","domain","id","domain","id","of","smb","domain.","id","id","of","the","smb","domain.","is","archiv","specifi","if","the","smb","domain","is","archived.","name","name","of","the","smb","domain.","status","authent","status","of","the","smb","domain."],["smb","domain","connect","count","total","number","of","smbdomain","object","match","the","request"],["snappabl","archiv","complianc","status","the","archiv","complianc","status.","archiv","snapshot","lag","the","archiv","snapshot","lag.","archiv","snapshot","the","number","of","snapshot","that","have","been","archived.","archiv","storag","the","amount","of","storag","use","by","archiv","snapshots.","await","first","full","whether","the","snappabl","is","await","first","full","backup.","cluster","the","rubrik","cluster","to","which","the","protect","object","complianc","status","the","current","complianc","status","of","the","workload.","data","reduct","the","chang","from","transfer","byte","to","physic","bytes.","fid","the","id","of","the","snappable.","id","the","id","of","the","workload.","last","snapshot","the","timestamp","of","the","last","taken","snapshot.","last","snapshot","logic","byte","the","logic","size","of","the","workload","last","snapshot.","latest","archiv","snapshot","the","timestamp","of","the","latest","archiv","snapshot.","latest","replic","snapshot","the","timestamp","of","the","latest","replic","snapshot.","local","effect","storag","the","local","effect","storag","size","in","bytes.","local","meter","data","the","local","meter","data","size","in","bytes.","local","on","demand","snapshot","the","number","of","local","on-demand","snapshots.","local","protect","data","the","local","protect","data","size","in","bytes.","local","sla","snapshot","the","number","of","local","sla","snapshots.","local","snapshot","the","number","of","snapshot","local","present.","local","storag","the","local","storag","size","in","bytes.","locat","the","locat","of","the","snappable.","logic","byte","logic","byte","use","by","snapshot","of","this","workload.","logic","data","reduct","the","logic","data","reduct","ratio.","miss","snapshot","the","number","of","snapshot","that","were","missed.","name","the","name","of","the","workload.","ncd","latest","archiv","snapshot","the","timestamp","of","the","last","taken","nascd","archiv","ncd","polici","name","the","nascd","polici","name.","ncd","snapshot","type","the","nascd","snapshot","type.","object","state","the","state","of","the","workload","(active,","relic","or","object","type","the","type","of","the","workload.","org","id","organiz","organiz","the","organiz","id","of","this","workload.","org","name","organiz","organiz","the","organiz","name","relat","to","the","workload.","this","physic","byte","physic","byte","use","by","snapshot","of","this","workload.","protect","on","the","date","and","time","when","the","workload","was","protect","status","the","protect","status","of","the","workload.","provis","byte","the","provis","byte","size.","pull","time","the","time","at","which","the","workload","data","was","replica","snapshot","the","number","of","snapshot","that","have","been","replicated.","replica","storag","the","amount","of","storag","use","by","replic","snapshots.","replic","complianc","status","the","replic","complianc","status.","replic","snapshot","lag","the","replic","snapshot","lag.","sla","domain","the","sla","domain","of","the","protect","objects.","sourc","protocol","the","sourc","nas","protocol.","total","snapshot","the","total","number","of","snapshot","present","for","the","transfer","byte","byte","ingest","over","the","network","for","this","workload.","use","byte","total","byte","used.","workload","org","organiz","organiz","specifi","the","owner","organiz","of","the","workload."],["snappabl","connect","aggreg","aggreg","inform","about","the","workloads.","count","total","number","of","snappabl","object","match","the","request"],["snappabl","group","by","group","by","info","the","data","groupbi","info.","snappabl","connect","pagin","snappabl","data.","archiv","complianc","status","archiv","snapshot","lag","archiv","snapshot","archiv","storag","await","first","full","cluster","complianc","status","data","reduct","fid","id","last","snapshot","last","snapshot","logic","byte","latest","archiv","snapshot","latest","replic","snapshot","local","effect","storag","local","meter","data","local","on","demand","snapshot","local","protect","data","local","sla","snapshot","local","snapshot","local","storag","locat","logic","byte","logic","data","reduct","miss","snapshot","name","ncd","latest","archiv","snapshot","ncd","polici","name","ncd","snapshot","type","object","state","object","type","org","id","organiz","organiz","org","name","organiz","organiz","physic","byte","protect","on","protect","status","provis","byte","pull","time","replica","snapshot","replica","storag","replic","complianc","status","replic","snapshot","lag","sla","domain","sourc","protocol","total","snapshot","transfer","byte","use","byte","workload","org","organiz","organiz","snappabl","group","by","provid","further","group","for","the","data."],["snappabl","group","by","connect","count","total","number","of","snappablegroupbi","object","match","the","request"],["snapshot","file","absolut","path","display","path","file","mode","filenam","last","modifi","last","modifi","timestamp.","null","when","modif","time","is","path","quarantin","info","quarantin","inform","correspond","to","the","path.","size","status","messag","workload","field","brows","or","search","delta","respons","return","workload","fields."],["snapshot","file","connect","count","total","number","of","snapshotfil","object","match","the","request"],["snapshot","file","delta","analyz","group","result","analyz","group","results.","children","delta","this","field","is","non-empti","for","directori","only.","it","file","inform","about","the","file","or","directori","such","as","previous","snapshot","quarantin","info","quarantin","inform","for","a","path","in","the","previous","self","delta","this","field","is","empti","for","directories.","it","contain","sensit","hit","sensit","hits."],["snapshot","file","delta","connect","count","total","number","of","snapshotfiledelta","object","match","the","request","current","snapshot","the","current","snapshot.","previous","snapshot","the","snapshot","use","which","delta","are","computed."],["snapshot","file","delta","2","analyz","group","result","analyz","group","results.","children","delta","this","field","is","non-empti","for","directori","only.","it","file","inform","about","the","file","or","directori","such","as","previous","snapshot","quarantin","info","quarantin","inform","for","a","path","in","the","previous","self","delta","this","field","is","empti","for","directories.","it","contain","sensit","hit","sensit","hits."],["snapshot","file","delta","2","connect","count","total","number","of","snapshotfiledeltav2","object","match","the","request","current","snapshot","the","current","snapshot.","is","sensit","data","discoveri","support","flag","to","indic","if","sensit","data","discoveri","is","last","process","sdd","snapshot","date","the","date","of","the","last","snapshot","process","by","last","process","sdd","snapshot","id","the","fid","of","the","last","snapshot","process","by","previous","snapshot","the","snapshot","use","which","delta","are","computed."],["snapshot","result","snapshot","fid","snapshot","fid.","snapshot","time","snapshot","time."],["snapshot","result","connect","count","total","number","of","snapshotresult","object","match","the","request"],["snapshot","secur","info","anomali","confid","anomali","confid","level.","date","snapshot","date.","has","malwar","whether","this","snapshot","has","malware.","is","anomali","whether","this","snapshot","has","anomali","detect","results.","is","quarantin","whether","this","snapshot","is","quarantined.","snapshot","id","snapshot","id.","suspici","file","count","number","of","suspici","file","detect","in","this","snapshot.","threat","hunt","info","inform","about","threat","hunt","on","snapshot.","workload","id","workload","identifier."],["snapshot","secur","info","connect","count","total","number","of","snapshotsecurityinfo","object","match","the","request"],["snapshot","summari","date","support","in","v5.2+","time","at","which","the","snapshot","id","required.","support","in","v5.2+","id","of","the","snapshot.","is","custom","retent","appli","required.","support","in","v5.2+","a","boolean","valu","that","is","retent","lock","appli","required.","support","in","v5.2+","indic","whether","the","snapshot","snapshot","retent","info","required.","support","in","v5.2+","retent","inform","for","snapshot","snapshot","type","required.","support","in","v5.2+"],["snapshot","summari","connect","count","total","number","of","snapshotsummari","object","match","the","request"],["snmp","configur","communiti","string","support","in","v5.0+","v5.0-v5.1:","communicatystr","is","a","user","is","enabl","required.","support","in","v5.0+","boolean","valu","that","specifi","snmp","agent","port","required.","support","in","v5.0+","the","snmp","agent","port","trap","receiv","config","support","in","v5.0+","array","of","snmp","trap","receiv","user","support","in","v5.2+","array","of","usernam","for","the"],["snooz","directori","creat","date","the","date","the","snooz","was","created.","directori","the","directori","path.","expir","date","the","expir","date","of","the","snooze.","fals","posit","type","the","type","of","fals","positive.","other","reason","the","reason","for","snooz","the","directori","(if","falsepositivetyp","status","the","status","of","the","snooze.","user","account","the","account","user","that","snooz","the","directory."],["snooz","directori","connect","count","total","number","of","snoozeddirectori","object","match","the","request"],["sonar","content","report","analyz","group","result","analyz","id","analyz","result","cluster","file","name","file","with","hit","hit","id","locat","logic","path","a","sequenti","list","of","this","object","logic","ancestors.","object","name","object","type","path","polici","id","size","sla","domain","id","snappabl","fid","snapshot","timestamp"],["sonar","content","report","connect","count","total","number","of","sonarcontentreport","object","match","the","request"],["sonar","report","count","return","for","status","polici","and","polici","violations.","group","by","valu","valu","of","the","group-bi","field.","time","seri","result","return","for","time","issu","and","time","violations."],["sonar","report","connect","count","total","number","of","sonarreport","object","match","the","request"],["sonar","report","row","num","high","risk","locat","number","of","high-risk","locations.","num","object","number","of","object","scanned.","num","violat","file","number","of","violat","files.","polici","id","id","of","the","policy.","polici","name","name","of","the","policy.","polici","status","status","of","the","policy.","violat","number","of","polici","violations."],["sonar","report","row","connect","count","total","number","of","sonarreportrow","object","match","the","request"],["sourc","child","recoveri","spec","map","2","recoveri","spec","recoveri","spec","for","the","workload.","workload","id","workload","id."],["ssm","document","for","ec","2","repli","ssm","document","json","json","string","contain","the","ssm","document","body.","ssm","document","name","name","of","the","ssm","document."],["sso","group","alreadi","exist","repli","doe","exist","determin","if","the","sso","group","alreadi","exist","in"],["start","azur","ad","app","setup","repli","app","id","id","of","the","creat","azur","ad","app.","csrf","token","state","token","to","be","use","in","completeazureadappsetupreply.","excess","permiss","list","of","excess","permiss","for","the","entra","id","miss","permiss","list","of","miss","permiss","for","the","entra","id","tenant","cloud","type","cloud","type","of","the","entra","id","tenant.","warn","a","warn","messag","indic","a","unrecommend","onboard","scenario."],["start","azur","ad","app","updat","repli","app","id","id","of","the","updat","azur","ad","app.","csrf","token","state","token","to","be","use","in","completeazureadappupdate.","excess","permiss","list","of","excess","permiss","for","the","entra","id","miss","permiss","list","of","miss","permiss","for","the","entra","id"],["start","azur","cloud","account","oauth","repli","client","id","azur","oauth","client","id.","session","id","azur","oauth","session","id."],["start","bulk","threat","hunt","repli","hunt","contain","inform","specif","to","each","success","trigger","hunt."],["start","cluster","report","migrat","job","repli","job","instanc","id","the","id","of","the","job","instance."],["start","crawl","repli","crawl","id","identifi","of","the","start","crawl."],["start","git","hub","app","setup","repli","app","setup","info","list","of","app","setup","inform","for","each","request","is","org","publicali","discover","organiz","organiz","indic","whether","the","github","organiz","is","discover","through","org","alreadi","add","organiz","organiz","indic","whether","the","organiz","is","alreadi","add","to"],["start","recoveri","repli","recoveri","id","identifi","of","the","recoveri","triggered."],["start","threat","hunt","repli","hunt","id","forev","id","of","the","hunt","that","can","be","hunt","status","status","of","the","threat","hunt.","is","sync","success","status","of","the","metadata","load","request."],["start","threat","hunt","2","repli","hunt","id","forev","id","of","the","hunt","that","can","be"],["start","turbo","threat","hunt","repli","hunt","id","forev","id","of","the","hunt","that","can","be"],["stop","job","instanc","repli","success","true","if","stop","process","is","initi","for","job"],["storag","account","access","tier","the","access","tier","of","the","storag","account,","e.g.,","id","the","storag","account","id.","is","version","enabl","specifi","if","version","is","enabl","for","the","storag","kind","the","kind","of","storag","account.","name","the","storag","account","name.","network","rule","set","network","rule","for","azur","storag","account.","region","name","the","region","that","the","storag","account","is","provis","resourc","group","the","resourc","group","that","the","storag","account","is","sku","the","sku","type","provid","the","redund","information,","e.g.,"],["storag","account","connect","count","total","number","of","storageaccount","object","match","the","request"],["subnet","id","the","full-path","id","for","the","subnet,","it","can","name","the","subnet","name.","secur","group","the","associ","secur","group","assign","to","this","subnet,"],["subnet","connect","count","total","number","of","subnet","object","match","the","request"],["subnet","group","arn","amazon","resourc","name","(arn)","of","the","subnet","group.","name","name","of","the","subnet","group.","subnet","subnet","associ","with","the","subnet","group.","vpc","id","virtual","privat","cloud","(vpc)","correspond","to","the","subnet"],["support","portal","login","repli","status","support","portal","login","status","object."],["support","portal","logout","repli","status","support","portal","logout","status","object."],["support","portal","status","repli","is","log","in","is","user","log","in","flag.","status","support","portal","user","session","status.","usernam","support","portal","username."],["support","tunnel","info","enabl","time","support","in","v5.0+","time","when","the","tunnel","was","error","messag","support","in","v5.3+","error","messag","when","unabl","to","inact","timeout","in","second","support","in","v5.0+","inact","timeout","in","second","or","is","tunnel","enabl","required.","support","in","v5.0+","true","if","the","support","last","activ","time","support","in","v5.0+","time","when","the","tunnel","was","port","support","in","v5.0+","the","port","use","to","tunnel"],["support","user","access","access","provid","user","user","provid","support","user","access.","access","status","support","user","access","status.","actual","end","time","actual","time","when","the","support","access","session","ended.","durat","in","hour","support","user","access","duration,","in","hours.","end","time","support","user","access","end","time.","id","support","user","access","id.","imperson","user","imperson","user.","start","time","support","user","access","start","time.","ticket","number","ticket","number","associ","to","the","support","user","access"],["support","user","access","connect","count","total","number","of","supportuseraccess","object","match","the","request"],["support","azur","ad","region","region","a","list","of","support","regions."],["syslog","export","rule","summari","list","respons","data","support","in","v5.1+","list","of","match","objects.","has","more","support","in","v5.1+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.1+","total","list","responses."],["tabl","filter","protect","task","detail","tabl","recoveri","task","detail","tabl"],["take","on","demand","snapshot","repli","error","the","error","in","respons","to","take","the","on-demand","taskchain","uuid","the","uuid","of","the","on-demand","snapshot","taskchains."],["take","on","demand","snapshot","sync","repli","workload","detail","the","list","of","on-demand","snapshot","detail","for","each"],["target","cluster","the","cluster","to","which","this","target","belongs.","cluster","name","name","of","the","rubrik","cluster","that","archiv","to","consum","byte","number","of","byte","store","on","the","target.","fail","task","number","of","archiv","task","fail","on","this","target.","id","the","id","of","the","target.","is","activ","specifi","whether","the","status","of","the","target","is","is","archiv","specifi","whether","the","target","is","archived.","is","complianc","immut","support","specifi","whether","the","archiv","locat","support","complianc","immut","locat","connect","status","status","of","the","target.","locat","scope","the","scope","of","the","locat","of","the","target.","name","the","name","of","the","target.","reader","retriev","method","the","retriev","method","of","the","reader","target.","run","task","number","of","archiv","task","run","on","this","target.","status","status","of","the","target.","target","map","archiv","locat","to","which","the","map","target","belongs.","target","map","basic","list","of","archiv","group","the","archiv","target","belong","target","type","the","type","of","the","target.","upgrad","status","upgrad","status","of","the","target."],["target","connect","count","total","number","of","target","object","match","the","request"],["target","map","connect","status","connect","status","for","the","target","mapping.","group","type","the","type","of","the","target","map","(manual","or","id","the","id","of","the","target","mapping.","name","the","name","of","the","target","mapping.","target","templat","the","target","templat","for","this","target","map","(if","target","type","the","type","of","target","in","this","target","mapping.","target","the","target","in","this","target","mapping.","tier","status","tier","status","for","the","target","mapping."],["task","detail","archiv","target","the","archiv","target","of","an","archiv","task.","cluster","locat","the","cluster","locat","of","the","task.","cluster","name","the","cluster","name","of","the","task.","cluster","type","the","cluster","type","of","the","task.","cluster","uuid","the","cluster","uuid","of","the","task.","data","reduct","data","reduct","of","the","task.","data","transfer","total","number","of","byte","transfer","for","the","task.","dedup","ratio","dedupl","ratio","of","the","task.","direct","archiv","specifi","whether","an","archiv","task","has","direct","archiv","durat","the","time","taken","to","run","the","task.","end","time","the","time","when","the","task","ended.","failur","reason","the","reason","for","failur","if","the","task","fail","id","the","invis","column.","locat","the","locat","of","the","task.","logic","byte","logic","byte","of","the","task.","logic","data","reduct","logic","data","reduct","of","the","task.","logic","dedup","ratio","logic","dedupl","ratio","of","the","task.","object","fid","the","fid","of","the","object","relat","to","the","object","name","the","name","of","the","object","relat","to","the","object","type","the","type","of","the","object","relat","to","the","org","id","organiz","organiz","the","organiz","id","relat","to","the","task.","org","name","organiz","organiz","the","organiz","name","relat","to","the","task.","this","physic","byte","physic","byte","of","the","task.","protect","volum","protect","volum","of","the","task.","recoveri","point","the","recoveri","point","of","a","recoveri","task.","recoveri","point","type","the","recoveri","point","type","of","a","recoveri","task.","replic","sourc","the","replic","sourc","of","a","replic","task.","replic","target","the","replic","target","of","a","replic","task.","report","job","instanc","id","the","invis","column.","sla","domain","id","the","sla","domain","id","of","the","task.","sla","domain","name","the","sla","domain","name","of","the","task.","snapshot","consist","snapshot","consist","of","the","task.","start","time","the","time","when","the","task","started.","status","the","status","of","the","task.","task","categori","the","categori","type","of","the","task.","task","org","organiz","organiz","specifi","the","owner","organiz","of","the","workload","task","task","type","the","type","of","the","task.","total","file","transfer","total","number","of","file","transfer","for","the","task.","user","name","the","user","who","start","the","task."],["task","detail","connect","count","total","number","of","taskdetail","object","match","the","request"],["task","detail","group","by","group","by","info","the","data","groupbi","info.","task","detail","connect","pagin","task","detail","data.","archiv","target","cluster","locat","cluster","name","cluster","type","cluster","uuid","data","reduct","data","transfer","dedup","ratio","direct","archiv","durat","end","time","failur","reason","id","locat","logic","byte","logic","data","reduct","logic","dedup","ratio","object","fid","object","name","object","type","org","id","organiz","organiz","org","name","organiz","organiz","physic","byte","protect","volum","recoveri","point","recoveri","point","type","replic","sourc","replic","target","report","job","instanc","id","sla","domain","id","sla","domain","name","snapshot","consist","start","time","status","task","categori","task","org","organiz","organiz","task","type","total","file","transfer","user","name","task","detail","group","by"],["task","detail","group","by","connect","count","total","number","of","taskdetailgroupbi","object","match","the","request"],["taskchain","account","the","account.","compon","the","component.","config","the","taskchain","configuration.","current","task","execut","attempt","the","current","task","execut","attempts.","current","task","index","the","current","task","index.","end","time","the","end","time","of","the","taskchain.","error","the","error","message.","id","the","id","of","the","taskchain.","job","id","the","job","id","of","the","taskchain.","job","type","the","job","type.","name","the","name","of","the","taskchain.","parent","taskchain","id","the","parent","taskchain","id.","pod","name","the","pod","name.","prioriti","the","priority.","progress","the","progress","of","the","taskchain.","progress","at","the","time","of","last","progress.","start","time","the","start","time","of","the","taskchain.","state","the","taskchain","state.","taskchain","uuid","the","uuid","of","the","taskchain.","workflow","name","the","workflow","name."],["termin","archiv","migrat","repli","is","success","indic","whether","the","migrat","was","termin","successfully."],["test","exist","webhook","repli","error","info","the","inform","describ","the","error","from","the","webhook","is","success","describ","whether","the","test","was","success","or","not.","webhook","status","describ","the","webhook","status","after","the","test."],["test","syslog","export","rule","repli","output"],["test","webhook","repli","error","info","the","inform","describ","the","error","from","the","webhook","is","success","describ","whether","the","test","was","success","or","not."],["threat","analyt","enabl","all","enabl","item","get","enabl","item","by","type.","aw","account","list","the","aw","account","and","their","threat","analyt","azur","subscript","list","the","azur","subscript","and","their","threat","analyt","cloud","direct","cluster","list","the","cloud","direct","cluster","and","their","threat","gcp","project","list","the","gcp","project","and","their","threat","analyt","m","365","subscript","list","the","m365","subscript","and","their","threat","analyt"],["threat","hunt","creat","by","user","who","creat","the","threat","hunt.","hunt","detail","the","details/configur","of","the","threat","hunt.","hunt","id","id","of","the","threat","hunt.","hunt","type","type","of","threat","hunt.","name","name","of","the","threat","hunt.","start","time","start","time","of","the","threat","hunt.","stat","the","stat","base","on","result","of","the","threat","status","status","of","the","threat","hunt."],["threat","hunt","cloud","direct","cluster","connect","status","the","cluster","connect","status.","id","the","cluster","uuid.","lambda","config","lambda","configur","for","threat","monitoring.","name","the","cluster","name.","product","type","the","cluster","product","type.","status","the","cluster","status.","version","the","softwar","version","of","the","cluster."],["threat","hunt","cloud","direct","cluster","connect","count","total","number","of","threathuntclouddirectclust","object","match","the","request"],["threat","hunt","connect","count","total","number","of","threathunt","object","match","the","request"],["threat","hunt","detail","2","base","config","the","configur","of","the","threat","hunt.","cluster","the","rubrik","cluster","associ","with","the","threat","hunt.","end","time","end","time","of","the","threat","hunt.","has","file","version","info","specifi","whether","the","hunt","has","file","version","information.","hash","catalog","limit","exceed","flag","indic","if","the","hash","catalog","hit","limit","start","time","start","time","of","the","threat","hunt.","status","status","of","the","threat","hunt.","total","match","snapshot","total","number","of","snapshot","for","which","malwar","was","total","object","fid","total","number","of","object","fids.","total","scan","snapshot","total","number","of","snapshot","across","all","object","select","total","uniqu","file","match","total","number","of","uniqu","path","for","which","malwar"],["threat","hunt","match","snapshot","repli","file","match","list","of","match","file","with","match","snapshot","info."],["threat","hunt","object","metric","repli","clean","recover","object","limit","maximum","number","of","clean","object","elig","for","cyber","total","affect","object","total","number","of","object","in","which","malwar","was","total","object","scan","total","number","of","object","select","for","scan.","total","object","unscann","total","number","of","object","where","hunt","failed,","or","total","unaffect","object","total","number","of","object","in","which","malwar","was","unaffect","object","from","db","number","of","object","from","the","databas","in","which"],["threat","hunt","result","config","the","configur","of","the","threat","hunt.","hunt","id","id","of","the","threat","hunt.","result","result","of","the","scan","on","each","object.","stat","the","statist","base","on","result","of","the","threat","status","status","of","the","threat","hunt."],["threat","hunt","result","object","summari","cluster","info","cluster","information.","earliest","match","snapshot","date","earliest","snapshot","date","contain","a","match.","has","quarantin","match","specifi","whether","the","object","has","quarantin","matches.","latest","match","snapshot","date","latest","snapshot","date","contain","a","match.","latest","snapshot","without","match","date","latest","snapshot","date","not","contain","a","match.","locat","the","object","location.","match","type","list","of","indic","of","compromis","(iocs)","found","in","object","the","scan","object,","if","it","is","a","cdm","object","scan","status","scan","status","of","the","object.","object","2","the","scan","object.","snapshot","stat","threat","hunt","summari","for","each","snapshot.","total","match","path","total","path","for","which","malwar","was","found.","total","match","snapshot","total","snapshot","where","a","match","was","found.","total","uniqu","match","path","total","uniqu","path","for","which","malwar","was","found."],["threat","hunt","result","object","summari","connect","count","total","number","of","threathuntresultobjectssummari","object","match","the","request"],["threat","hunt","summari","repli","config","the","threat","hunt","configuration.","hunt","id","the","id","of","the","threat","hunt.","object","summari","threat","hunt","summari","for","each","object.","stat","the","stat","base","on","result","of","the","threat","status","status","of","the","threat","hunt."],["threat","hunt","object","file","match","creat","time","time","at","which","the","file","was","creat","in","earliest","match","snapshot","date","earliest","snapshot","date","contain","a","match.","file","version","match","detail","file","version","match","detail","contain","time-rel","metadata.","there","filenam","match","file","name.","filepath","match","filepath.","ioc","detail","ioc","match","the","file.","is","quarantin","in","first","observ","snapshot","specifi","if","the","file","is","quarantined.","latest","match","snapshot","date","latest","snapshot","date","contain","a","match.","latest","snapshot","without","match","date","latest","snapshot","date","not","contain","a","match.","match","id","id","of","the","match","file","be","returned.","match","file","md","5","md5","hash","of","the","match","file.","match","file","sha","1","sha1","hash","of","the","match","file.","match","file","sha","256","sha256","hash","of","the","match","file.","match","snapshot","inform","about","the","snapshot","where","the","file","was","modifi","time","time","at","which","the","file","was","last","modifi","total","snapshot","match","total","number","of","snapshot","that","includ","the","match","total","snapshot","scan","total","snapshot","where","the","file","was","scanned."],["threat","hunt","object","file","match","connect","count","total","number","of","threathuntingobjectfilematch","object","match","the","request"],["threat","monitor","file","match","detail","repli","cluster","the","rubrik","cluster","associ","with","the","workload.","detect","snapshot","date","snapshot","date","where","the","match","was","first","detected.","file","name","name","of","the","file","that","was","matched.","file","path","filepath","that","was","matched.","first","detect","snapshot","fid","fid","of","the","snapshot","where","the","match","was","intel","sourc","sourc","of","the","rule","that","matched.","ioc","rule","author","author","of","the","rule","that","matched.","ioc","rule","descript","descript","of","the","rule","that","matched.","ioc","rule","name","name","of","the","rule","that","matched.","is","quarantin","in","first","observ","snapshot","specifi","if","the","file","is","quarantined.","match","type","type","of","threat","match.","match","file","md","5","md5","hash","of","the","match","file.","match","file","sha","1","sha1","hash","of","the","match","file.","match","file","sha","256","sha256","hash","of","the","match","file.","object","fid","fid","of","the","object."],["threat","monitor","file","match","detail","2","contain","archiv","detail","detail","of","the","archiv","contain","when","the","match","detect","snapshot","date","snapshot","date","where","the","match","was","first","detected.","file","name","name","of","the","file","that","was","matched.","file","path","filepath","that","was","matched.","first","detect","snapshot","fid","fid","of","the","snapshot","where","the","match","was","ioc","detail","ioc","match","the","file.","is","file","version","quarantin","indic","whether","the","workload","file","version","is","quarantined.","is","quarantin","in","first","observ","snapshot","indic","whether","the","file","is","quarantin","in","the","match","file","md","5","md5","hash","of","the","match","file.","match","file","sha","1","sha1","hash","of","the","match","file.","match","file","sha","256","sha256","hash","of","the","match","file.","mtime","modifi","time","of","the","match","file."],["threat","monitor","match","object","cluster","the","cluster","of","the","scan.","file","match","number","of","file","match","to","threat","in","object.","last","detect","date","of","the","last","snapshot","with","a","match.","match","type","type","of","threat","match.","object","fid","fid","of","the","object.","object","name","the","scan","object","name.","object","type","object","type.","sever","the","aggreg","sever","of","the","match","found."],["threat","monitor","match","object","connect","count","total","number","of","threatmonitoringmatchedobject","object","match","the","request","stat","aggreg","stat","for","threat","monitoring."],["threat","monitor","object","object","with","threat","count","of","object","with","threats.","object","without","threat","count","of","object","without","threats.","unscan","object","count","of","object","not","scan","by","threat","monitoring."],["toggl","object","paus","res","success","specifi","if","the","assign","was","schedul","successfully."],["top","risk","princip","repli","latest","timelin","date","timelin","date","associ","with","the","latest","snapshot.","top","risk","princip","summari","risk","summari","of","top","risk","principals."],["total","snapshot","for","cloud","direct","object","repli","on","demand","snapshot","number","of","on-demand","snapshot","for","the","nas","cloud","total","snapshot","total","number","of","snapshot","for","the","nas","cloud"],["tpr","configur","execut","max","timeout","hour","maximum","timeout","for","on-demand","execut","of","tpr","requests,","is","tpr","enabl","specifi","whether","tpr","is","current","enabled.","remind","hour","number","of","hour","befor","tpr","request","expir","to","request","timeout","hour","number","of","hour","befor","inact","tpr","request","expire.","static","quorum","requir","number","of","approv","need","for","static","quorum","author"],["tpr","polici","detail","creat","at","the","time","at","which","the","tpr","polici","was","creat","by","the","user","who","creat","the","tpr","policy.","descript","descript","of","the","tpr","policy.","exempt","servic","account","servic","account","exempt","from","the","tpr","policy.","is","cdm","enforc","disabl","whether","enforc","on","the","correspond","cdm","rest","api","name","name","of","the","tpr","policy.","org","id","organiz","organiz","organiz","the","tpr","polici","is","in.","polici","id","id","of","the","tpr","policy.","polici","rule","rule","of","the","tpr","policy.","polici","scope","the","scope","of","the","tpr","policy.","quorum","requir","quorum","requir","for","the","tpr","policy."],["tpr","public","configur","execut","max","timeout","hour","maximum","timeout","for","on-demand","execut","of","tpr","requests,","is","tpr","enabl","specifi","whether","tpr","is","current","enabled."],["tpr","request","detail","repli","creat","at","time","the","request","was","created.","detail","detail","of","the","request.","execut","expir","at","time","the","request","execut","window","expires.","execut","type","execut","type","for","the","request.","expir","at","time","the","request","expires.","id","id","of","the","tpr","request.","is","potenti","last","approv","potentially,","the","last","approv","need","for","the","request.","oper","author","operations.","org","id","organiz","organiz","id","of","the","organization.","org","name","organiz","organiz","name","of","the","organization.","request","user","make","the","tpr","request.","status","status","of","the","request.","status","log","log","of","the","chang","to","the","request.","trigger","tpr","polici","polici","trigger","by","the","request.","trigger","tpr","rule","highest","prioriti","rule","trigger","by","the","request.","trigger","tpr","rule","all","rule","trigger","by","the","request.","updat","at","time","the","request","was","last","updated."],["tpr","request","summari","oper","author","operations.","org","id","organiz","organiz","id","of","the","organization.","org","name","organiz","organiz","name","of","the","organization.","request","id","tpr","request","id.","request","user","make","the","tpr","request.","status","status","of","the","request.","trigger","tpr","rule","highest","prioriti","rule","trigger","by","the","request.","updat","at","time","the","request","was","last","updated."],["tpr","request","summari","connect","count","total","number","of","tprrequestsummari","object","match","the","request"],["tpr","role","elig","type","is","tpr","role","elig","result","if","the","user","is","eligible.","reason","reason","of","the","elig","status."],["tpr","rule","map","data","manag","by","cluster","rule","applic","when","creat","a","data","manag","tpr","data","manag","by","object","rule","applic","when","creat","a","data","manag","tpr","data","manag","by","object","workload","workload","allow","when","creat","a","data","manag","tpr","data","manag","by","sla","domain","rule","applic","when","creat","a","data","manag","tpr","system","configur","cluster","cluster-level","rule","applic","when","creat","a","system","configur","system","configur","global","global","rule","applic","when","creat","a","system","configur","tpr","rule","by","object","type","tpr","rule","for","object","type."],["tpr","status","for","node","remov","status","the","status","of","a","tpr","request.","tpr","request","id","tpr","request","id.","tpr","rule","the","rule","of","a","tpr","request."],["trigger","bli","migrat","repli","success","indic","whether","the","migrat","was","trigger","successfully."],["trigger","exocomput","health","check","repli","health","check","job","id","id","for","the","exocomput","health","check","job."],["trigger","ransomwar","detect","repli","cluster","uuid","id","of","the","rubrik","cluster","run","the","ransomwar","job","id","id","of","the","ransomwar","detect","job."],["unmanag","object","detail","archiv","storag","storag","on","the","archiv","location.","backup","copi","type","backup","copi","type","of","the","object","(primary,","replica,","cloud","account","id","cloud","account","id","of","the","aw","account","associ","cloud","account","name","cloud","account","name","of","the","aw","account","associ","cluster","rubrik","cluster","where","this","object","originated.","cluster","uuid","cluster","uuid","of","the","object.","download","snapshot","byte","total","size","in","byte","of","download","snapshot","for","download","snapshot","count","total","number","of","download","snapshot","for","this","unmanag","effect","sla","domain","the","effect","sla","domain","of","the","unmanag","object.","has","snapshot","with","polici","ani","of","the","snapshot","are","retain","by","a","id","object","id.","is","remot","whether","the","object","is","remot","or","local.","local","snapshot","count","total","number","of","snapshot","whose","locat","is","the","local","storag","storag","on","the","local","location.","name","unmanag","object","name.","non","polici","snapshot","count","number","of","non-polici","snapshot","(on-demand,","customized,","and","rehydrated).","num","snapshot","with","polici","number","of","polici","snapshots.","object","type","type","of","the","unmanag","object.","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","locat","physic","path","to","this","object.","recoveri","info","recoveri","inform","for","the","reader","archiv","locations.","region","region","where","the","object","is","present.","retent","sla","domain","id","sla","domain","retent","polici","id.","retent","sla","domain","name","sla","domain","retent","polici","name.","retent","sla","domain","rsc","manag","id","rsc","sla","domain","id.","snapshot","count","snapshot","count.","unmanag","status","unmanag","status","of","this","object.","workload","id","workload","id."],["unmanag","object","detail","connect","count","total","number","of","unmanagedobjectdetail","object","match","the","request"],["unmap","azur","cloud","account","exocomput","subscript","repli","is","success","whether","the","unmap","was","successful."],["unmap","cloud","account","exocomput","account","repli","is","success","whether","the","unmap","was","successful."],["unregist","domain","control","with","domain","domain","control","guid","guid","of","the","domain","control","(stabl","ident","across","domain","control","site","ad","site","the","domain","control","belong","to.","optional.","domain","name","name","of","the","parent","ad","domain","(fqdn).","domain","sid","sid","of","the","parent","ad","domain.","fsmo","role","fsmo","role","held","by","this","domain","control","(e.g.,","hostnam","hostnam","of","the","domain","control","as","discovered.","invoc","id","ad","invocation-id","for","this","domain","controller,","when","report","is","global","catalog","true","if","this","domain","control","is","a","global","is","read","onli","true","if","this","domain","control","is","a","read-on","last","discov","timestamp","most","recent","discoveri","timestamp","across","all","cluster","observ"],["unregist","domain","control","with","domain","connect","count","total","number","of","unregistereddomaincontrollerwithdomain","object","match","the","request"],["updat","agent","deploy","set","in","batch","new","repli","set","list","of","rubrik","backup","servic","deploy","settings."],["updat","agent","deploy","set","in","batch","repli","set","list","of","rubrik","backup","servic","deploy","settings."],["updat","auto","enabl","polici","cluster","config","repli","datagov","auto","enabl","polici","config","auto","enabl","sensit","data","discoveri","polici","configuration.","id","the","cluster","uuid.","name","the","cluster","name.","type","the","cluster","type.","version","the","softwar","version."],["updat","aw","cloud","account","featur","repli","messag","contain","success","respons","message."],["updat","aw","exocomput","config","repli","config","list","of","exocomput","configur","added.","delet","status","delet","status","for","exocomput","configur","be","removed.","exocomput","config","list","of","exocomput","configurations."],["updat","azur","cloud","account","repli","status","status","of","the","oper","to","updat","azur","cloud"],["updat","azur","cluster","storag","account","redund","repli","current","redund","current","redund","of","the","storag","account","befor","conversion.","resourc","group","resourc","group","of","the","storag","account.","storag","account","name","name","of","the","storag","account","be","migrated.","target","redund","target","redund","requested."],["updat","backup","throttl","set","repli","backup","throttl","set","list","of","backup","throttl","settings."],["updat","bad","disk","led","status","repli","output","support","in","v7.0+","find_bad_disk","script","output.","result","required.","support","in","v5.1+","respons","of","the","find_bad_disk"],["updat","cdm","user","repli","output","support","in","v5.0+"],["updat","certif","host","repli","output"],["updat","cloud","direct","kerbero","credenti","repli","credenti","id","id","of","the","updat","kerbero","credential."],["updat","cloud","nativ","aw","storag","set","repli","target","map"],["updat","cloud","nativ","azur","storag","set","repli","target","map"],["updat","cloud","nativ","custom","set","repli","is","3","glacier","ir","tier","enabl","whether","s3","object","in","the","glacier","instant","retriev"],["updat","cloud","nativ","index","status","repli","error","the","list","of","error","from","index","status","request"],["updat","cloud","nativ","rcv","azur","storag","set","repli","target","map","rcv","azur","storag","setting."],["updat","cluster","default","address","repli","cluster","the","rubrik","cluster","whose","default","address","is","updated."],["updat","cluster","paus","status","repli","paus","status","list","of","object","with","the","paus","or","resum"],["updat","cluster","set","repli","accept","eula","version","version","of","the","eula","accept","by","admin.","api","version","rest","api","version.","cluster","uuid","id","of","the","rubrik","cluster.","geoloc","cluster","geolocation.","latest","eula","version","latest","version","of","the","eula","that","must","be","name","name","of","the","cluster.","regist","mode","mode","of","registration.","rubrik","url","global","manag","url.","timezon","cluster","time","zone.","version","rubrik","cluster","softwar","version."],["updat","custom","data","type","repli","data","type","detail","of","the","updat","data","type."],["updat","custom","app","permiss","repli","success","whether","the","updat","was","successful."],["updat","destin","role","for","rcv","migrat","repli","status","status","of","the","updat","oper","for","rcv","migration."],["updat","distribut","list","digest","repli","event","digest","a","list","of","save","event","digests."],["updat","document","type","repli","detail","repres","the","updat","document-typ","details."],["updat","encrypt","key","for","rcv","migrat","repli","status","status","of","the","encrypt","key","updat","for","rcv"],["updat","event","digest","repli","event","digest","a","list","of","save","event","digests."],["updat","failov","cluster","app","repli","output"],["updat","failov","cluster","repli","output"],["updat","float","ip","repli","id","required.","support","in","v5.0+","status","required.","support","in","v5.0+"],["updat","fusion","comput","mount","repli","output","detail","inform","for","a","fusioncomput","live","mount."],["updat","fusion","comput","vrm","repli","output","summari","inform","for","a","fusioncomput","virtual","resourc","manag"],["updat","global","certif","repli","cluster","error","the","error","origin","from","updat","certif","on","the","cluster","uuid","the","rubrik","cluster","on","which","the","certif","was"],["updat","guest","credenti","repli","output","guest","credenti","details."],["updat","health","monitor","polici","status","repli","item"],["updat","hyperv","virtual","machin","repli","guest","os","type","hyperv","virtual","machin","summari","hyperv","virtual","machin","updat","is","agent","regist","support","in","v5.0+","return","whether","the","rubrik","connector","natur","id","oper","system","type","virtual","disk","info","support","in","v5.2+","brief","inform","about","all","virtual"],["updat","hyperv","virtual","machin","snapshot","mount","repli","hyperv","virtual","machin","mount","summari"],["updat","insight","state","repli","is","insight","dismiss","whether","the","insight","is","dismissed."],["updat","lockout","config","repli","account","auto","unlock","durat","in","min","specifi","the","time","after","which","the","account","is","inact","lockout","config","specifi","inform","about","inact","lockout","configuration.","is","auto","unlock","featur","enabl","specifi","whether","the","auto","unlock","featur","is","enabl","is","brute","forc","lockout","enabl","specifi","whether","the","account","lockout","featur","is","enabl","is","self","servic","enabl","specifi","whether","self","servic","is","enabl","for","all","login","attempt","limit","specifi","the","number","of","fail","login","attempt","allow","self","servic","attempt","limit","specifi","the","number","of","time","self-servic","is","allow","self","servic","token","valid","in","min","specifi","the","valid","of","the","current","self","servic"],["updat","manag","ident","repli","error","detail","error","message.","is","success","boolean","state","if","successful."],["updat","manag","volum","repli","applic","tag","applic","whose","data","this","manag","volum","will","store.","host","pattern","required.","support","in","v5.0+","v5.0-v5.3:","list","of","host","is","delet","required.","support","in","v5.0+","v5.0-v5.3:","indic","whether","the","is","relic","required.","support","in","v5.0+","v5.0-v6.0:","is","manag","volum","is","writabl","required.","support","in","v5.0+","v5.0-v5.3:","indic","whether","manag","link","support","in","v5.0+","v5.0-v6.0:","list","of","link","for","main","export","support","in","v5.0+","v5.0-v8.0:","v8.1+:","the","main","export","mv","type","type","of","the","manag","volum","(slabas","/","alwaysmounted).","num","channel","required.","support","in","v5.0+","v5.0-v6.0:","number","of","channel","pend","sla","domain","support","in","v5.3+","describ","ani","pend","sla","domain","pend","snapshot","count","required.","support","in","v5.0+","v5.0-v6.0:","combin","total","of","share","type","required.","specifi","if","the","manag","volum","is","export","sla","manag","volum","detail","support","in","v5.3+","the","addit","detail","specif","to","smb","domain","name","support","in","v5.0+","v5.0-v5.3:","valid","activ","directori","domain","smb","valid","ip","support","in","v5.0+","v5.0-v5.3:","list","of","valid","smb","smb","valid","user","support","in","v5.0+","v5.0-v5.3:","list","of","valid","usersnam","snappabl","the","base","workload","object.","snapshot","count","required.","support","in","v5.0+","number","of","snapshots.","state","required.","support","in","v5.0+","v5.0-v5.3:","manag","volum","state","subnet","support","in","v5.0+","v5.0-v6.0:","specifi","the","subnet","associ","use","size","required.","support","in","v5.0+","v5.0-v6.0:","use","capac","for","volum","size","required.","support","in","v5.0+","v5.0-v6.0:","maximum","capac","for"],["updat","mssql","default","properti","repli","cbt","status","required.","support","in","v5.0+","v5.0-v5.2:","true","to","enabl","log","backup","frequenc","in","second","required.","support","in","v5.0+","log","retent","time","in","hour","support","in","v5.3+","should","use","default","backup","locat","support","in","v7.0+","use","the","default","backup","locat"],["updat","mssql","log","ship","configur","repli","link","required.","support","in","v5.3+","mssql","log","ship","summari","2","updat","detail","of","the","log","ship","configur","object.","should","disconnect","standbi","user","support","in","v5.3+","specifi","whether","to","automat","disconnect"],["updat","nas","system","repli","connect","status","connect","status","of","the","nas","system.","hostnam","required.","support","in","v7.0+","the","hostnam","of","the","id","required.","support","in","v7.0+","id","assign","to","the","is","replic","support","in","v9.4+","vendor","type","required.","vendor","type","of","the","updat","nas","system."],["updat","network","throttl","repli","archiv","throttl","port","support","in","v8.0+","network","port","for","archiv","throttling.","default","throttl","limit","support","in","v5.0+","default","throttl","limit","for","a","is","enabl","required.","support","in","v5.0+","boolean","valu","that","determin","network","interfac","support","in","v5.2+","the","network","interfac","where","outgo","resourc","id","required.","throttl","resource:","replicationegress","or","archivalegress.","schedul","throttl","required.","support","in","v5.0+","an","array","contain","all"],["updat","nutanix","cluster","repli","ca","cert","required.","support","in","v5.0+","concaten","x.509","certif","in","connect","status","required.","support","in","v5.0+","connect","status","of","a","nutanix","cluster","summari"],["updat","nutanix","prism","central","repli","connect","status","support","in","v9.0+","connect","status","of","the","nutanix","hostnam","required.","support","in","v9.0+","hostnam","for","the","nutanix","is","dr","enabl","support","in","v9.2+","specifi","whether","nutanix","dr","support","pend","sla","domain","support","in","v9.0+","describ","ani","pend","sla","domain","refresh","job","async","req","status","support","in","v9.1+","display","the","status","of","the","should","use","4","support","in","v9.6+","specifi","whether","the","prism","central","sla","assign","detail","of","the","sla","domain","assign","to","nutanix","usernam","required.","support","in","v9.0+","usernam","for","the","nutanix"],["updat","365","app","auth","status","repli","success","respons","of","updateo365appauthstatus","operation,","indic","if","the","oper"],["updat","365","org","custom","name","repli","organiz","organiz","custom","name","custom","name","to","use","for","the","o365","organization.","org","uuid","organiz","organiz","polari","id","for","an","o365","organization."],["updat","org","repli","organiz","organiz","organiz","id","uuid","of","updat","organization."],["updat","predefin","data","type","repli","id","uniqu","identifi","of","the","updat","predefin","data","type."],["updat","proxmox","environ","repli","output","summari","of","a","proxmox","environ","object."],["updat","proxi","config","repli","host","required.","support","in","v5.0+","port","support","in","v5.0+","protocol","required.","support","in","v5.0+","usernam","support","in","v5.0+"],["updat","pure","storag","protect","group","quiesc","target","repli","output","summari","of","a","pure","storag","protect","group."],["updat","pure","storag","protect","group","repli","output","summari","of","a","pure","storag","protect","group."],["updat","pure","storag","protect","group","volum","exclus","repli","output","updat","volum","exclus","status","for","a","pure","storag"],["updat","rcv","privat","endpoint","repli","descript","descript","of","the","privat","endpoint.","name","name","of","the","privat","endpoint.","privat","endpoint","connect","detail","of","the","privat","endpoint","connect","relat","to","storag","account","id","the","id","of","the","storag","account","associ","with"],["updat","recoveri","plan","2","repli","recoveri","plan","updat","recoveri","plan."],["updat","schedul","report","repli","schedul","report","descript","of","the","edit","schedule."],["updat","servic","account","repli","client","id","client","id","of","the","servic","account.","descript","descript","of","the","servic","account.","last","login","last","login","timestamp","of","the","servic","account.","name","name","of","the","servic","account."],["updat","slas","for","migrat","to","rcv","target","repli","updat","sla","id","list","of","id","of","sla","updated."],["updat","smb","domain","repli","output","detail","of","the","updat","smb","domain."],["updat","snmp","config","repli","output"],["updat","storag","array","1","repli","output","support","in","v5.0+"],["updat","storag","array","repli","respons","updat","storag","array","responses."],["updat","syslog","export","rule","repli","output"],["updat","tunnel","status","repli","output","status","of","the","ssh","tunnel","for","support","access."],["updat","vcenter","repli","output","updat","vcenter","summary."],["updat","vcenter","2","repli","output","summari","inform","about","the","updat","vsphere","vcenter."],["updat","volum","group","repli","blackout","window","respons","info","blackout","window","information.","configur","sla","domain","id","required.","support","in","v5.0+","v5.0-v5.2:","assign","this","volum","exclud","volum","support","in","v9.2+","configur","detail","for","the","volum","is","paus","required.","support","in","v5.0+","v5.0-v5.2:","whether","backup/archival/repl","is","pend","sla","domain","support","in","v5.3+","describ","ani","pend","sla","domain","volum","group","summari","summari","inform","about","a","volum","group.","volum","required.","support","in","v5.0+","v5.0-v5.2:","v5.3+:","configur","detail"],["updat","vsphere","advanc","tag","repli","output"],["updat","webhook","repli","test","error","this","field","is","empti","if","the","webhook","test","webhook","the","webhook","that","was","updated."],["updat","webhook","status","repli","error","info","captur","detail","of","error","encount","within","the","system.","is","success","true","if","the","webhook","status","was","success","updated."],["updat","webhook","2","repli","error","info","captur","detail","of","error","encount","within","the","system.","webhook","webhook","configuration."],["upgrad","azur","cloud","account","permiss","without","oauth","repli","status","status","of","the","request."],["upgrad","azur","cloud","account","repli","entra","id","group","status","status","of","the","entra","id","group","for","the","status","status","of","the","oper","to","upgrad","azur","cloud"],["upgrad","azur","dev","op","cloud","account","repli","error","messag","error","messag","if","upgrad","oper","failed."],["upgrad","gcp","cloud","account","permiss","without","oauth","repli","status","status","of","the","upgrade."],["upgrad","job","repli","with","uuid","upgrad","job","repli","upgrad","job","repli","object.","uuid","cluster","uuid."],["upgrad","path","elig","repli","blocker","list","of","all","check","that","block","the","upgrad","is","elig","whether","the","upgrad","path","is","eligible.","fals","if"],["upgrad","slas","repli","slas","taskchain","info","list","of","object","contain","sla","domain","taskchain","information."],["upgrad","status","repli","current","state","current","state.","current","state","name","current","state","name.","current","state","progress","progress","percentag","of","current","state.","finish","state","upgrad","state","success","complet","running.","mode","upgrad","mode.","node","name","upgrad","driver","node","name.","pend","state","upgrad","state","to","be","attempt","to","run.","progress","progress","percentag","of","current","state.","ru","info","roll","upgrad","information.","tarbal","name","upgrad","tarbal","packag","name.","upgrad","progress","percentag","overal","upgrad","progress","percentage.","upgrad","status","upgrad","status","object.","upgrad","time","left","sec","time","remain","for","upgrad","to","complete.","upgrad","timestamp","upgrad","start","timestamp.","user","surfac","task","name","current","upgrad","task","name."],["upload","snapshot","on","demand","repli","messag","status","messag","for","the","upload","operation.","request","id","uniqu","request","identifi","for","track","the","upload."],["user","all","org","the","suborgan","in","which","the","user","has","roles.","assign","role","role","assign","to","the","user.","direct","assign","role","role","direct","assign","to","the","user.","domain","the","domain","the","user","belong","to.","domain","name","name","of","the","domain","to","which","the","sso","email","the","user","email","address.","email","config","email","notif","configurations.","eula","state","the","user","eula","accept","state.","group","the","group","that","the","user","belong","to.","id","the","user","id.","inherit","role","role","inherit","by","the","user.","is","account","owner","specifi","whether","user","is","an","account","owner.","is","email","enabl","specifi","whether","the","user","has","email","notif","enabled.","is","hidden","specifi","whether","auth","domain","user","is","hidden.","last","login","the","last","time","the","user","log","in.","lockout","histori","the","user","account","lockout","history.","lockout","state","the","user","account","lockout","information.","passkey","metadata","the","passkey","metadata","of","the","user.","pat","id","the","user","activ","person","access","token","id.","role","role","assign","to","the","user.","status","the","status","of","the","user","account.","totp","status","the","totp","status","of","user.","unread","count","the","number","of","unread","notif","for","the","current","usernam","the","user","username."],["user","access","metric","activ","directori","snapshot","exist","activ","directori","data","exists.","content","analysi","result","exist","content","analysi","result","exists."],["user","activ","result","num","activ","the","total","number","of","activ","this","user","had.","num","activ","breakdown","the","total","number","of","activities,","group","by","activ","pagin","id","id","use","for","pagination.","user","the","user","that","this","result","correspond","to."],["user","activ","result","connect","count","total","number","of","useractivityresult","object","match","the","request"],["user","alreadi","exist","repli","doe","exist","determin","if","the","user","alreadi","exist","in","the"],["user","audit","actor","type","the","kind","of","user","that","trigger","this","audit.","audit","type","the","type","of","the","user","audit.","cluster","the","id","of","the","rubrik","cluster","to","which","id","the","id","of","the","user","audit.","ip","address","the","ip","address","of","the","user","who","trigger","messag","the","associ","messag","with","the","user","audit.","object","id","the","id","of","the","object","associ","with","the","object","name","the","name","of","the","object","associ","with","the","object","type","the","type","of","the","object","associ","with","the","org","id","organiz","organiz","the","organiz","id","of","this","user","audit.","org","name","organiz","organiz","the","organiz","name","of","this","user","audit.","sever","the","sever","of","the","user","audit.","status","the","status","of","the","user","audit.","time","the","time","the","user","audit","occurred.","user","name","the","usernam","of","the","user","who","trigger","the","user","note","option","user","note."],["user","audit","connect","count","total","number","of","useraudit","object","match","the","request"],["user","connect","count","total","number","of","user","object","match","the","request"],["user","download","complet","time","the","time","at","which","the","download","completed.","creat","time","the","time","at","which","the","download","was","created.","id","the","id","of","the","download.","identifi","the","identifi","of","the","download.","name","the","name","of","the","download.","progress","the","progress","of","the","download,","where","0","<=","status","the","status","of","the","download."],["user","download","url","url","url","to","download","the","file."],["user","login","context","account","name","current","account","name.","org","full","name","organiz","organiz","current","organiz","full","name.","org","id","organiz","organiz","current","organiz","id.","org","name","organiz","organiz","current","organiz","name.","user","current","logged-in","user."],["user","notif","id","the","id","for","the","current","user.","unread","count","the","amount","of","unread","notif","for","the","current"],["user","set","set","user","set","valu","of","user","setting."],["1","bulk","updat","exchang","dag","respons","item"],["1","mssql","get","restor","file","1","respons","item"],["valid","replic","sourc","account","name","the","account","name","that","the","rubrik","cluster","is","api","version","api","version","of","the","rubrik","cluster.","name","name","of","the","rubrik","cluster.","uuid","uuid","of","the","rubrik","cluster.","version","version","of","the","rubrik","cluster."],["valid","replic","sourc","connect","count","total","number","of","validreplicationsourc","object","match","the","request"],["valid","replic","target","account","name","the","account","name","that","the","rubrik","cluster","is","api","version","api","version","of","the","rubrik","cluster.","is","air","gap","air-gap","status","of","the","rubrik","cluster.","is","connect","rubrik","cluster","connect","with","rsc.","is","cross","account","specifi","whether","the","rubrik","cluster","is","cross-account.","name","name","of","the","rubrik","cluster.","uuid","uuid","of","the","rubrik","cluster.","version","version","of","the","rubrik","cluster."],["valid","replic","target","connect","count","total","number","of","validreplicationtarget","object","match","the","request"],["valid","ad","forest","transit","status","activ","directori","forest","inventori","page","transit","status."],["valid","and","creat","aw","cloud","account","repli","initi","respons","aw","cloud","account","initi","respons","if","the","request","valid","respons","error","messag","relat","to","the","failur","of","the"],["valid","and","initi","aw","outpost","account","repli","initi","respons","aw","outpost","account","initi","respons","if","the","request","valid","respons","error","messag","relat","to","the","failur","of","the"],["valid","and","save","custom","kms","info","repli","error","messag","messag","describ","the","error","in","the","kms","details.","input","field","name","the","input","field","use","to","display","the","error"],["valid","aw","nativ","dynamo","db","tabl","name","for","recoveri","repli","error","an","error,","in","case","the","valid","fails.","is","valid","specifi","whether","the","dynamodb","tabl","name","is","valid"],["valid","aw","nativ","rds","cluster","name","for","export","repli","error","an","error,","in","case","valid","failed.","is","valid","specifi","whether","the","rds","cluster","name","is","valid"],["valid","aw","nativ","rds","instanc","name","for","export","repli","error","refer","to","the","reason","for","the","rds","name","is","valid","specifi","whether","the","rds","name","is","valid","or"],["valid","azur","nativ","sql","databas","db","name","for","export","repli","error","refer","to","the","reason","for","the","databas","name","is","valid","specifi","whether","the","databas","name","is","valid","or"],["valid","azur","nativ","sql","manag","instanc","db","name","for","export","repli","error","refer","to","the","reason","for","the","databas","name","is","valid","specifi","whether","the","databas","name","is","valid","or"],["valid","azur","subnet","for","cloud","account","exocomput","repli","valid","info","list","of","valid","inform","on","azur","exocomput","configur"],["valid","bulk","threat","hunt","respons","hunt","contain","configur","specif","to","each","hunt","that","will","valid","status","valid","status","of","the","bulk","threat","hunt","request."],["valid","cloud","nativ","file","recoveri","feasibl","repli","snapshot","file","recoveri","feasibl","repres","the","possibl","of","file","recoveri","from","a"],["valid","entri","repli","valid","valid","entry."],["valid","oracl","aco","file","repli","aco","map","support","in","v6.0+","list","of","advanc","clone","option","aco","paramet","error","support","in","v6.0+","other","generic","error","with","the","aco","valu","valid","error","support","in","v6.0+","list","of","advanc","clone","option"],["valid","org","name","repli","organiz","organiz","name","name","of","the","organization.","name","valid","valid","of","the","organiz","name.","url","url","of","the","organization."],["valid","outpost","account","network","repli","error","error","messag","when","the","network","is","invalid.","empti","valid","whether","the","outpost","network","configur","is","valid."],["valid","rds","export","exocomput","port","repli","is","allow","whether","the","port","is","allow","in","the","exocomput","worker","node","secur","group","id","secur","group","id","of","the","exocomput","worker","nodes."],["valid","role","name","repli","role","name","valid","role","name","valid","status."],["valid","script","output","for","manual","permiss","valid","repli","is","valid","this","field","indic","whether","the","script","output","is"],["valid","recoveri","repli","can","be","recov","boolean","messag","generat","by","validation.","messag","detail","messag","generat","by","validation."],["valid","repli","is","success","boolean","state","if","successful.","messag","detail","messag","generat","by","validation."],["vapp","instant","recoveri","option","avail","vapp","network","required.","support","in","v5.0+","an","array","of","network","restor","vms","required.","support","in","v5.0+","an","array","of","virtual"],["vapp","templat","export","option","union","advanc","export","option","support","in","v5.1+","organiz","vdc","and","storag","profil","default","catalog","export","option","support","in","v5.1+","organiz","vdc","and","storag","profil","origin","vdc","export","option","support","in","v5.1+","organiz","vdc","and","storag","profil"],["vcd","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","all","vcenter","connect","status","the","connect","status","of","the","vcenter.","all","vcenter","connect","info","the","connect","status","of","the","vcenter","that","belong","author","oper","the","author","oper","on","the","object.","ca","cert","the","ca","certif","use","to","connect","to","the","cdm","id","the","cdm","id","of","vcd","instance.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","hostnam","the","hostnam","of","vcd","instance.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recoveri","logic","child","connect","list","of","recoverylog","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","usernam","the","usernam","use","to","connect","to","the","vcd","vcd","connect","status","the","connect","status","of","the","vcd","instance.","version","the","version","of","vcd","instance."],["vcd","org","organiz","organiz","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","the","cdm","id","of","vcd","org.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recoveri","logic","child","connect","list","of","recoverylog","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["vcd","org","connect","organiz","organiz","count","total","number","of","vcdorg","object","match","the","request"],["vcd","org","vdc","organiz","organiz","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","the","cdm","id","of","vcd","org","vdc.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recoveri","logic","child","connect","list","of","recoverylog","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["vcd","top","level","descend","type","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["vcd","top","level","descend","type","connect","count","total","number","of","vcdtopleveldescendanttyp","object","match","the","request"],["vcd","vapp","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","the","cdm","id","of","vcd","vapp.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","duplic","vapp","list","of","duplic","vapps.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","best","effort","synchron","enabl","specifi","whether","the","vapp","is","best","effort","synchron","is","relic","is","replica","true","if","this","object","is","a","replica,","it","is","templat","specifi","whether","this","is","a","vapp","template.","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","protect","date","the","date","when","the","sla","domain","was","assign","recoveri","logic","child","connect","list","of","recoverylog","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","contain","statist","for","the","protect","objects,","for","example,","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","vcd","vms","inform","about","vcd-manag","vapp","child","virtual","machines."],["vcd","vapp","connect","count","total","number","of","vcdvapp","object","match","the","request"],["vcd","vim","server","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["vcenter","advanc","tag","preview","repli","output","filter","preview","results."],["vcenter","hot","add","proxi","vm","info","virtual","machin","cluster","detail","of","a","cluster.","proxi","vm","info","virtual","machin","detail","of","all","proxi","vms","in","cluster."],["vcenter","pre","add","info","cluster","host","group","info","required.","support","in","v6.0+","list","of","comput","cluster"],["verifi","sla","with","replic","to","cluster","respons","is","activ","sla","specifi","whether","sla","domain","is","activ","or","not."],["verifi","totp","repli","valid","given","otp","is","valid","or","not."],["version","file","absolut","path","display","path","file","version","filenam","path"],["version","file","connect","count","total","number","of","versionedfil","object","match","the","request"],["violat","histori","entri","actor","name","user","who","perform","the","action.","detail","per-event-typ","details.","unset","for","history_event_created.","event","type","type","of","event","this","entri","represents.","timestamp","timestamp","at","which","the","event","occurred."],["violat","categori","summari","categori","summari","summari","of","violat","in","each","categori","base","on","overal","summari","overal","summari","of","the","violat","base","on","severity."],["violat","environ","summari","violat","env","summari","summari","of","violat","in","each","environment.","violat","overal","summari","overal","summari","of","the","violat","across","all","the"],["virtual","machin","file","repli","data","support","in","v9.0+","list","of","match","objects.","has","more","support","in","v9.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v9.0+","total","list","responses."],["vlan","config","list","respons","data","support","in","v5.0+","list","of","match","objects.","has","more","support","in","v5.0+","if","there","is","more.","next","cursor","support","in","v9.0+","v9.0:","cursor","to","fetch","the","total","support","in","v5.0+","total","list","responses."],["vm","recoveri","job","info","virtual","machin","cdm","recoveri","job","id","the","id","of","recoveri","job.","hierarchi","object","hierarchi","object","of","virtual","machine.","job","status","the","status","of","recoveri","job.","vm","id","virtual","machin","id","of","virtual","machine.","vm","name","virtual","machin","name","of","virtual","machine.","vm","size","in","kbs","virtual","machin","size","of","virtual","machin","in","kbs."],["vmware","cdp","state","info","health","percentag","support","in","v5.3+","the","percentag","of","healthi","time","local","status","support","in","v5.3+","the","local","status","of","cdp","replic","status","support","in","v5.3+","the","replic","status","of","cdp","vm","id","virtual","machin","required.","support","in","v5.3+","the","id","of","the"],["vmware","host","detail","comput","cluster","id","support","in","v5.0+","datacent","support","in","v5.0+","datastor","support","in","v5.0+","moid","support","in","v5.0+","virtual","machin","support","in","v5.0+","vmware","host","summari","vmware","host","updat"],["vmware","recover","rang","list","respons","data","support","in","v5.1+","list","of","match","objects.","has","more","support","in","v5.1+","if","there","is","more.","next","cursor","support","in","rubrik","cdm","version","9.0","and","later.","total","support","in","v5.1+","total","list","responses."],["vnet","id","the","full-path","id","for","the","vnet,","it","can","name","the","vnet","name.","region","name","the","region","the","vnet","is","provis","in.","resourc","group","the","resourc","group","that","this","vnet","is","alloc"],["vnet","connect","count","total","number","of","vnet","object","match","the","request"],["volum","group","live","mount","author","oper","oper","that","the","user","is","author","to","perform.","cluster","cluster","of","the","live","mount.","id","fid","of","the","live","mount.","is","readi","describ","if","the","live","mount","is","ready.","mount","path","path","where","the","live","mount","is","mounted.","mount","request","id","id","of","the","mount","request.","mount","timestamp","timestamp","when","the","mount","was","created.","mount","volum","mount","volum","in","the","live","mount.","name","name","of","the","live","mount.","node","composit","id","composit","id","of","the","node","in","the","live","node","ip","ip","of","the","node","in","the","live","mount.","restor","script","path","path","of","the","bare-met","restor","script.","smb","share","name","name","of","smb","share.","sourc","host","sourc","host","of","the","live","mount.","sourc","snapshot","sourc","snapshot","of","the","live","mount.","sourc","volum","group","id","id","of","the","sourc","volum","group","in","the","target","host","id","id","of","the","target","host.","target","host","name","name","of","the","target","host.","unmount","request","id","id","of","the","unmount","request."],["volum","group","live","mount","connect","count","total","number","of","volumegrouplivemount","object","match","the","request"],["vsphere","async","request","status","end","time","error","id","link","node","id","progress","start","time","status"],["vsphere","comput","cluster","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","drs","status","current","drs","status","of","the","cluster.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","has","datastor","for","recoveri","this","field","is","true","if","this","object","has","id","id","of","the","hierarchi","object.","io","filter","status","this","vsphere","comput","cluster","iofilt","status","can","be","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recoveri","target","child","connect","list","of","recoverytarget","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","recoveri","target","descend","connect","pagin","list","of","recoveri","target","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","consist","mandat","snapshot","consist","mandate.","snapshot","consist","sourc","fid","of","the","object","from","where","the","snapshot","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["vsphere","comput","cluster","connect","count","total","number","of","vspherecomputeclust","object","match","the","request"],["vsphere","datacent","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","vsphere","datacent","cdm","id.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recoveri","logic","child","connect","list","of","recoverylog","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","recoveri","target","child","connect","list","of","recoverytarget","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","consist","mandat","snapshot","consist","mandate.","snapshot","consist","sourc","fid","of","the","object","from","where","the","snapshot","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["vsphere","datastor","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","back","devic","name","specifi","the","devic","back","the","datastore.","capac","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","datastor","type","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","free","space","id","object","id.","is","archiv","indic","whether","the","datastor","is","archiv","or","not.","is","local","is","replica","true","if","this","object","is","a","replica,","it","is","standalon","datastor","indic","whether","the","datastor","is","standalon","or","not.","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["vsphere","datastor","cluster","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","capac","datastor","cluster","resourc","-","total","capacity,","in","terrabytes.","cdm","id","cdm","id","of","the","vsphere","datastor","cluster.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","free","space","datastor","cluster","resourc","-","total","avail","free","space,","id","datastor","cluster","id.","is","replica","true","if","this","object","is","a","replica,","it","is","sdrs","enabl","indic","whether","the","storag","drs","autom","is","enabled.","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","vcenter","id","vcenter","id."],["vsphere","datastor","cluster","connect","count","total","number","of","vspheredatastoreclust","object","match","the","request"],["vsphere","datastor","connect","count","total","number","of","vspheredatastor","object","match","the","request"],["vsphere","folder","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","vsphere","folder","cdm","id.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","datacent","id","datacent","id","of","the","vsphere","folder.","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","folder","type","vsphere","folder","type.","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recoveri","logic","child","connect","list","of","recoverylog","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","consist","mandat","snapshot","consist","mandate.","snapshot","consist","sourc","fid","of","the","object","from","where","the","snapshot","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","v","center","id","vcenter","id","of","the","vsphere","folder."],["vsphere","folder","connect","count","total","number","of","vspherefold","object","match","the","request"],["vsphere","host","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","vsphere","esxi","host","cdm","id.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","has","datastor","for","recoveri","this","field","is","true","if","this","object","has","id","id","of","the","hierarchi","object.","io","filter","status","this","vsphere","host","iofilt","status","can","be","uninstal","is","replica","true","if","this","object","is","a","replica,","it","is","standalon","host","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recoveri","target","child","connect","list","of","recoverytarget","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","recoveri","target","descend","connect","pagin","list","of","recoveri","target","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","consist","mandat","snapshot","consist","mandate.","snapshot","consist","sourc","fid","of","the","object","from","where","the","snapshot","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","ssh","enabl","indic","whether","ssh","is","enabl","on","this","esxi"],["vsphere","host","connect","count","total","number","of","vspherehost","object","match","the","request"],["vsphere","live","mount","attach","disk","count","attach","disk","count","of","the","live","mount.","cdm","id","cdm","id","of","the","vsphere","live","mount.","cluster","cluster","id","of","the","vsphere","live","mount.","has","attach","disk","whether","or","not","the","mount","has","an","attach","host","host","of","the","vsphere","live","mount.","id","id","of","the","vsphere","live","mount.","is","readi","readi","status","of","the","vsphere","live","mount.","migrat","datastor","request","id","migrat","datastor","request","id","of","the","vsphere","live","mount","timestamp","mount","timestamp","of","the","vsphere","live","mount.","mount","vm","virtual","machin","new","virtual","machin","of","the","vsphere","live","mount.","new","vm","name","virtual","machin","name","of","the","vsphere","live","mount.","sourc","snapshot","sourc","snapshot","of","the","vsphere","live","mount.","sourc","vm","virtual","machin","sourc","virtual","machin","of","the","vsphere","live","mount.","unmount","timestamp","timestamp","for","schedul","unmount","job","if","there","is","v","center","vcenter","of","the","live","mount.","vcenter","id","vcenter","id","of","the","live","mount.","vm","status","virtual","machin","status","of","the","vsphere","live","mount."],["vsphere","live","mount","connect","count","total","number","of","vspherelivemount","object","match","the","request"],["vsphere","mount","attach","disk","count","author","oper","cdm","id","cluster","cluster","name","has","attach","disk","host","id","is","readi","migrat","datastor","request","id","mount","request","id","mount","timestamp","new","vm","virtual","machin","new","vm","name","virtual","machin","sourc","snapshot","sourc","vm","virtual","machin","status","unmount","request","id"],["vsphere","mount","connect","count","total","number","of","vspheremount","object","match","the","request"],["vsphere","network","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","moid","moid","of","the","vsphere","network.","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["vsphere","proxi","vm","info","virtual","machin","cluster","cluster","for","the","hotadd","proxi","virtual","machine.","cluster","uuid","cluster","uuid","of","the","hotadd","proxi","virtual","machine.","comput","cluster","name","name","of","the","comput","cluster.","id","id","of","the","hotadd","proxi","virtual","machine.","name","name","of","the","hotadd","proxi","virtual","machine.","network","info","the","network","configur","of","the","hotadd","proxi","virtual","status","status","of","the","hotadd","proxi","virtual","machine.","use","port","count","port","number","in","use","for","the","hotadd","proxi","vcenter","name","name","of","the","vcenter."],["vsphere","proxi","vm","info","connect","virtual","machin","count","total","number","of","vsphereproxyvminfo","object","match","the","request"],["vsphere","resourc","pool","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","cdm","id","of","the","vsphere","resourc","pool.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","filter","descript","descript","of","the","resourc","pool.","has","datastor","for","recoveri","this","field","is","true","if","this","object","has","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recoveri","target","child","connect","list","of","recoverytarget","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","recoveri","target","descend","connect","pagin","list","of","recoveri","target","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","consist","mandat","snapshot","consist","mandate.","snapshot","consist","sourc","fid","of","the","object","from","where","the","snapshot","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["vsphere","tag","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","condit","condit","logic","for","the","multi-tag","filter.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","filter","descript","descript","of","the","multi-tag","filter.","id","object","id.","is","filter","specifi","whether","this","tag","is","a","multi-tag","filter","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","id","the","list","of","moid","of","child","vms.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","domain","id","the","cdm","id","of","the","configur","sla","domain.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","consist","mandat","snapshot","consist","mandate.","snapshot","consist","sourc","fid","of","the","object","from","where","the","snapshot","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","tag","child","connect","list","of","tag","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","vcenter","id","vsphere","tag","path"],["vsphere","tag","categori","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","object","id.","is","filter","categori","specifi","whether","the","child","tag","are","multi-tag","filter","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","consist","mandat","snapshot","consist","mandate.","snapshot","consist","sourc","fid","of","the","object","from","where","the","snapshot","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","tag","child","connect","list","of","tag","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","vcenter","id","vsphere","tag","path"],["vsphere","vcenter","about","info","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","ca","cert","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","comput","visibl","filter","the","comput","cluster","visibl","rules.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","conflict","resolut","authz","connect","status","connect","status","for","this","vcenter","server.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","id","id","of","the","hierarchi","object.","is","comput","visibl","filter","disabl","whether","comput","cluster","visibl","is","turn","off","for","is","hot","add","enabl","for","on","prem","vcenter","is","hotadd","enabl","for","this","on-prem","vcenter.","is","replica","true","if","this","object","is","a","replica,","it","is","standalon","host","specifi","whether","this","entiti","is","a","standalon","host.","is","vmc","flag","to","determin","whether","this","vcenter","is","from","last","refresh","time","latest","user","note","latest","user","note","information.","librari","child","connect","list","of","librari","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","child","connect","list","of","physic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","recoveri","logic","child","connect","list","of","recoverylog","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","consist","mandat","snapshot","consist","mandate.","snapshot","consist","sourc","fid","of","the","object","from","where","the","snapshot","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","tag","child","connect","list","of","tag","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","usernam","vcenter","id","vmc","provid","the","provid","of","vmc.","vsphere","tag","path"],["vsphere","vcenter","connect","count","total","number","of","vspherevcent","object","match","the","request"],["vsphere","vm","virtual","machin","agent","status","rubrik","backup","servic","(rbs)","agent","status","on","this","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","array","integr","enabl","whether","array","integr","for","this","virtual","machin","is","author","oper","the","author","oper","on","the","object.","blueprint","id","id","of","the","recoveri","plan","when","the","virtual","blueprint","name","name","of","the","recoveri","plan","when","the","virtual","cdm","id","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","duplic","vms","list","of","duplic","virtual","machines.","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","guest","credenti","author","status","guest","os","credenti","author","status.","guest","credenti","id","id","of","guest","credenti","assign","to","the","virtual","guest","os","name","guest","os","type","the","guest","os","type","of","this","virtual","machine.","id","object","id.","is","activ","specifi","whether","the","virtual","machin","is","activ","or","is","array","integr","possibl","if","virtual","machin","integr","with","storag","array","is","is","blueprint","child","specifi","whether","the","virtual","machin","is","a","child","is","relic","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","link","activ","vm","virtual","machin","the","activ","virtual","machin","in","a","link","group","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","parent","resourc","pool","id","id","of","the","parent","resourc","pool.","parent","workload","id","opt","parent","id","of","this","workload.","parent","workload","type","opt","parent","workload","type","of","this","workload.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","post","backup","script","post-backup","script.","post","snap","script","post-snap","script.","power","status","pre","backup","script","pre-backup","script.","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","protect","date","date","at","which","the","sla","domain","was","assign","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","contain","statist","for","the","protect","objects,","for","example,","resourc","spec","resourc","specif","for","a","virtual","machine.","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","consist","mandat","snapshot","consist","mandate.","snapshot","consist","sourc","fid","of","the","object","from","where","the","snapshot","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","templat","type","vmware","virtual","machin","templat","type.","v","sphere","live","mount","list","of","live","mount","for","this","virtual","machine.","attach","disk","count","cdm","id","cluster","has","attach","disk","host","id","is","readi","migrat","datastor","request","id","mount","timestamp","mount","vm","virtual","machin","new","vm","name","virtual","machin","sourc","snapshot","sourc","vm","virtual","machin","unmount","timestamp","v","center","vcenter","id","vm","status","virtual","machin","v","sphere","mount","list","of","live","mount","for","this","virtual","machine.","attach","disk","count","author","oper","cdm","id","cluster","cluster","name","has","attach","disk","host","id","is","readi","migrat","datastor","request","id","mount","request","id","mount","timestamp","new","vm","virtual","machin","new","vm","name","virtual","machin","sourc","snapshot","sourc","vm","virtual","machin","status","unmount","request","id","vmware","tool","instal","vsphere","tag","path","vsphere","virtual","disk","list","of","virtual","disk","for","this","virtual","machine.","cdm","id","cdm","version","cluster","uuid","datastor","datastor","fid","devic","key","exclud","from","snapshot","fid","file","name","size","virtual","machin","id"],["vsphere","vm","connect","virtual","machin","count","total","number","of","vspherevm","object","match","the","request"],["vsphere","vm","power","on","off","live","mount","repli","virtual","machin","nas","ip","support","in","v7.0+","the","ip","address","of","the","power","status","support","in","v5.0+","the","power","status","of","the","vmware","vm","mount","summari","1","virtual","machin","summari","inform","about","vsphere","mount."],["vsphere","vm","recoveri","rang","status","resp","virtual","machin","snapshot","properti","list","of","snapshot","properties.","status","list","of","recoveri","rang","status."],["webhook","auth","type","the","authent","type","that","the","endpoint","uses.","creat","at","the","timestamp","that","this","webhook","was","creat","at.","creat","by","the","user","who","creat","the","webhook.","descript","a","descript","of","this","webhook.","id","the","webhook","uniqu","id.","last","fail","error","info","the","inform","describ","the","webhook","most","recent","error.","name","the","webhook","name.","provid","type","the","applic","that","will","receiv","the","webhook.","server","certif","the","webhook","server","certif","that","rubrik","use","to","servic","account","id","the","id","of","the","servic","account","attach","to","status","specifi","whether","the","webhook","is","enabl","or","not.","subscript","sever","the","event","and","audit","sever","that","the","webhook","subscript","type","the","event","and","audit","type","that","the","webhook","updat","at","the","timestamp","that","this","webhook","was","updat","at.","url","the","url","endpoint","that","will","receiv","the","webhook."],["webhook","connect","count","total","number","of","webhook","object","match","the","request"],["webhook","messag","templat","creat","at","the","timestamp","that","this","templat","was","creat","at.","creat","by","the","user","who","creat","the","template.","doc","format","the","document","format","of","messag","template.","doc","url","the","url","of","the","document.","id","the","templat","uniqu","id.","msg","type","the","messag","type","of","messag","template.","name","the","name","of","the","template.","record","type","the","record","type","of","the","messag","template.","templat","data","the","messag","template.","updat","at","the","timestamp","that","this","templat","was","updat","at.","updat","by","the","user","who","updat","the","template."],["webhook","2","auth","type","the","authent","type","that","the","endpoint","uses.","creat","at","the","timestamp","that","this","webhook","was","creat","at.","creat","by","the","user","who","creat","the","webhook.","descript","a","descript","of","the","webhook","to","be","created.","id","the","webhook","uniqu","id.","last","fail","error","info","the","inform","describ","the","webhook","most","recent","error.","name","the","name","of","the","webhook","to","be","created.","provid","type","the","applic","that","will","receiv","the","webhook.","read","onli","auth","info","read-on","authent","metadata","(username,","header","keys).","server","certif","the","webhook","server","certif","that","rubrik","use","to","servic","account","id","the","id","of","the","servic","account","attach","to","status","specifi","whether","the","webhook","is","enabled.","subscript","type","the","inform","about","subscription.","updat","at","the","timestamp","that","this","webhook","was","updat","at.","url","the","url","endpoint","that","will","receiv","the","webhook."],["window","cluster","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","descend","connect","list","of","descendants.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","host","the","list","of","host","associ","with","a","window","id","id","of","the","hierarchi","object.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","child","connect","list","of","logic","children.","all","org","all","tag","author","oper","cdm","pend","object","paus","assign","cluster","configur","sla","domain","cross","account","replic","object","info","effect","retent","sla","domain","effect","sla","domain","effect","sla","sourc","object","id","is","replica","latest","user","note","logic","path","name","num","workload","descend","object","backup","window","object","paus","status","object","type","pend","object","delet","status","pend","sla","physic","path","primari","cluster","locat","replic","object","count","replic","object","secur","metadata","sla","assign","sla","paus","status","snapshot","distribut","logic","path","sequenti","list","of","the","logic","ancestor","of","this","mssql","host","the","list","of","microsoft","sql","host","associ","with","name","name","of","the","hierarchi","object.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object."],["window","fileset","all","org","organiz","to","which","this","hierarchi","object","belongs.","all","tag","rsc","tag","to","which","this","hierarchi","object","is","author","oper","the","author","oper","on","the","object.","cdm","id","id","of","the","cdm","cluster.","cdm","link","a","link","to","view","the","workload","on","the","cdm","pend","object","paus","assign","object","paus","pend","assign","detail","for","cdm","objects.","cluster","rubrik","cluster","where","this","object","originated.","configur","sla","domain","sla","domain","configur","for","the","hierarchi","object.","cross","account","replic","object","info","cross-account","object","either","replic","by","this","object","or","effect","retent","sla","domain","effect","retent","of","the","sla","domain","of","the","effect","sla","domain","effect","sla","domain","of","the","hierarchi","object.","effect","sla","sourc","object","path","node","of","the","effect","sla","domain","source.","failov","cluster","app","failov","rubrik","cluster","app.","fileset","templat","fileset","templat","of","the","window","fileset.","hardlink","support","enabl","boolean","variabl","denot","if","hard","link","support","is","host","host","of","window","fileset.","id","id","of","the","hierarchi","object.","is","pass","through","boolean","variabl","denot","if","this","is","a","nas","is","relic","boolean","variabl","denot","if","fileset","is","relic.","is","replica","true","if","this","object","is","a","replica,","it","latest","user","note","latest","user","note","information.","logic","path","sequenti","list","of","the","logic","ancestor","of","this","miss","snapshot","connect","the","list","of","miss","snapshot","for","this","workload.","archiv","locat","type","date","miss","snapshot","group","by","connect","the","list","of","miss","snapshot","for","this","workload.","group","by","info","miss","snapshot","connect","miss","snapshot","group","by","name","name","of","the","hierarchi","object.","newest","archiv","snapshot","the","newest","snapshot","archiv","to","aws.","newest","index","snapshot","the","most","recent","index","snapshot","of","this","workload.","newest","replic","snapshot","the","newest","snapshot","replic","to","a","cluster.","newest","snapshot","the","most","recent","snapshot","of","this","workload.","num","workload","descend","number","of","descend","workload","of","this","object.","object","backup","window","object-level","backup","window","status","of","the","hierarchi","object.","object","paus","status","paus","status","of","the","hierarchi","object.","object","type","type","of","this","object.","oldest","snapshot","the","oldest","snapshot","of","this","workload.","on","demand","snapshot","count","the","number","of","on-demand","snapshots.","path","except","list","of","path","exclud","in","the","fileset.","path","exclud","list","of","path","exclud","from","fileset.","path","includ","list","of","path","includ","in","the","fileset.","pend","object","delet","status","map","from","object","id","to","pend","object","delet","pend","sla","sla","domain","assign","of","the","object","dure","the","physic","path","sequenti","list","of","the","physic","ancestor","of","this","primari","cluster","locat","the","sourc","cluster","of","this","object.","return","as","replic","object","count","the","number","of","object","either","replic","by","this","replic","object","object","either","replic","by","this","object","or","relat","report","workload","includ","statist","for","the","protect","objects,","for","example,","secur","metadata","secur","postur","metadata.","sla","assign","sla","domain","assign","type","for","this","object.","sla","paus","status","paus","status","of","the","effect","sla","domain","of","snapshot","connect","the","list","of","snapshot","taken","for","this","workload.","activ","directori","app","metadata","aggreg","snapshot","locat","detail","archiv","locat","cdm","id","cdm","version","cdm","workload","snapshot","child","snapshot","cloud","nativ","locat","cloud","state","cluster","consist","level","date","db","2","app","metadata","expir","date","expiri","hint","file","count","has","delta","hyperv","virtual","machin","app","metadata","id","index","attempt","is","anomali","is","corrupt","is","custom","retent","appli","is","download","snapshot","is","expir","is","index","is","on","demand","snapshot","is","quarantin","process","is","quarantin","is","retent","lock","is","sap","hana","increment","snapshot","is","threat","analysi","complet","is","threat","detect","is","unindex","k","8","s","app","metadata","k","8","s","resourc","summari","latest","user","note","legal","hold","info","local","locat","locat","manag","volum","app","metadata","mongo","sourc","app","metadata","mssql","app","metadata","mysqldb","instanc","app","metadata","mysqldb","instanc","app","metadata","2","parent","snapshot","id","pend","sla","pend","snapshot","delet","ping","feder","app","metadata","postgr","db","cluster","app","metadata","replic","locat","resourc","spec","retent","lock","mode","across","locat","sap","hana","app","metadata","sla","domain","snappabl","id","snappabl","new","snapshot","retent","info","sub","obj","vapp","app","metadata","vmware","app","metadata","snapshot","distribut","distribut","of","the","snapshot","of","the","hierarchi","object.","snapshot","group","by","connect","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","group","by","group","by","info","snapshot","connect","snapshot","group","by","summari","groupbi","connect","for","the","snapshot","of","this","workload.","cdm","snapshot","count","group","by","info","symlink","resolut","enabl","boolean","variabl","denot","if","symlink","resolut","is","enabled."],["window","rbs","bulk","instal","repli","output","output","of","the","window","rubrik","backup","servic","bulk"],["workload","anomali","anomal","children","a","list","of","children","belong","to","the","workload.","anomal","snapshot","date","the","creation","date","of","the","snapshot","determin","to","anomal","snapshot","fid","the","fid","of","the","snapshot","which","was","determin","anomal","snapshot","id","the","rubrik","cluster","id","of","the","snapshot","determin","anomali","analysi","locat","id","the","id","of","the","archiv","locat","where","anomali","anomali","analysi","locat","name","the","name","of","the","archiv","locat","where","anomali","anomali","id","identifi","the","anomali","for","a","given","workload.","anomali","info","repres","the","inform","about","strain","that","caus","anomalies.","anomali","type","type","of","the","anomali","detected.","cluster","the","rubrik","cluster","associ","with","the","workload.","creat","file","count","the","number","of","file","creat","within","the","snapshot.","delet","file","count","the","number","of","file","delet","within","the","snapshot.","detect","time","time","when","the","anomali","was","detected.","encrypt","the","level","of","encrypt","detect","within","the","snapshot.","is","sensit","data","discoveri","support","flag","to","indic","if","sensit","data","discoveri","is","locat","the","locat","of","the","workload.","modifi","file","count","the","number","of","file","modifi","within","the","snapshot.","object","type","the","object","type","of","the","workload.","previous","polici","obj","the","data","discoveri","result","of","the","snapshot","befor","previous","snapshot","fid","the","fid","of","the","snapshot","taken","befor","the","resolut","status","the","resolut","status","of","the","anomaly.","sever","sever","of","the","anomali","event.","suspici","file","count","the","number","of","suspici","file","within","the","snapshot.","total","children","the","total","number","of","children","belong","to","the","workload","fid","the","fid","of","the","workload.","workload","id","the","rubrik","cdm","id","of","the","workload.","workload","name","the","name","of","the","workload."],["workload","anomali","connect","aggreg","aggreg","valu","calcul","across","all","results.","count","total","number","of","workloadanomali","object","match","the","request"],["workload","resourc","spec","is","archiv","whether","the","workload","is","archived.","snapshot","id","snapshot","id","of","the","workload.","spec","the","workload-specif","resourc","specification.","workload","id","workload","id.","workload","name","name","of","the","workload."],["zrs","avail","repli","is","avail","the","valu","repres","the","availability."],["pend","action","action","type","the","type","of","the","pend","action.","action","type","str","the","string","represent","of","the","action","type.","cluster","uuid","the","uuid","of","the","cluster.","creat","at","the","time","when","the","pend","action","was","created.","descript","the","descript","of","the","pend","action.","info","addit","inform","about","the","pend","action.","pend","action","id","the","id","of","the","pend","action.","status","the","status","of","the","pend","action.","updat","at","the","time","when","the","pend","action","was","last"]]} \ No newline at end of file diff --git a/tests/test_search_types.py b/tests/test_search_types.py new file mode 100644 index 0000000..bc55f9f --- /dev/null +++ b/tests/test_search_types.py @@ -0,0 +1,68 @@ +"""Tests for search_types() — type-level BM25 search.""" + +from rsc import search_types + + +def test_search_types_returns_list(): + results = search_types("cluster") + assert isinstance(results, list) + + +def test_results_have_name_and_ops_keys(): + results = search_types("cluster") + assert len(results) > 0 + for r in results: + assert "name" in r + assert "ops" in r + assert "score" in r + + +def test_cluster_search_returns_cluster_type(): + results = search_types("cluster") + names = [r["name"] for r in results] + assert any("Cluster" in n for n in names), f"Expected a Cluster type in results, got: {names}" + + +def test_cluster_ops_contain_cluster_operations(): + results = search_types("cluster") + # ClusterConnection is the canonical connection type returned by cluster queries. + cluster_result = next((r for r in results if r["name"] == "ClusterConnection"), None) + assert cluster_result is not None, ( + f"ClusterConnection not found in search_types('cluster') top-10; got: " + f"{[r['name'] for r in results]}" + ) + assert isinstance(cluster_result["ops"], list) + assert len(cluster_result["ops"]) > 0 + # At least one op should reference cluster semantics + ops_lower = [op.lower() for op in cluster_result["ops"]] + assert any("cluster" in op for op in ops_lower), ( + f"Expected at least one cluster-related op, got: {cluster_result['ops'][:10]}" + ) + + +def test_scores_positive_for_relevant_results(): + results = search_types("cluster") + assert len(results) > 0 + for r in results: + assert r["score"] > 0, f"Expected positive score, got {r['score']} for {r['name']}" + + +def test_results_capped_at_ten(): + results = search_types("cluster") + assert len(results) <= 10 + + +def test_ops_is_list_of_strings(): + results = search_types("sla domain policy") + assert len(results) > 0 + for r in results: + assert isinstance(r["ops"], list) + for op in r["ops"]: + assert isinstance(op, str) + + +def test_empty_query_returns_list(): + # Even a poor query must return a list (possibly empty), not raise. + results = search_types("zzzzzunlikelytermzzzzz") + assert isinstance(results, list) + assert len(results) == 0 diff --git a/uv.lock b/uv.lock index acb4513..13188bf 100644 --- a/uv.lock +++ b/uv.lock @@ -545,7 +545,7 @@ wheels = [ [[package]] name = "rsc-client" -version = "1.6.20260720" +version = "1.6.20260727" source = { editable = "." } dependencies = [ { name = "rank-bm25" },