├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── admin ├── definitions.json ├── definitions │ ├── domains.json │ ├── externaldatasharing.json │ ├── sharinglinks.json │ └── tags.json ├── examples │ ├── AdminListTags.json │ ├── AdminListTagsWithContinuation.json │ ├── GetItemById.json │ ├── GetItemByIdNoType.json │ ├── GetWorkspaceById.json │ ├── ListGitConnectionsDetails.json │ ├── ListItemUsers.json │ ├── ListItemUsersByIdType.json │ ├── ListItems.json │ ├── ListItemsAccessByUpn.json │ ├── ListItemsAccessByUserId.json │ ├── ListItemsAccessByUserIdAndType.json │ ├── ListItemsByDatamartType.json │ ├── ListItemsByType.json │ ├── ListWorkspaceUsers.json │ ├── ListWorkspaces.json │ ├── ListWorkspacesByState.json │ ├── RestoreWorkspace.json │ ├── domains │ │ ├── AssignDomainAdmins.json │ │ ├── AssignDomainContributors.json │ │ ├── AssignDomainWorkspacesByCapacity.json │ │ ├── AssignDomainWorkspacesByIds.json │ │ ├── AssignDomainWorkspacesByPrincipals.json │ │ ├── AssignUnassignDomainAdmins.json │ │ ├── AssignUnassignDomainContributors.json │ │ ├── AssignUnassignDomainWorkspacesByIds.json │ │ ├── CreateDomain.json │ │ ├── CreateDomainPreview.json │ │ ├── DeleteDomain.json │ │ ├── GetDomainById.json │ │ ├── GetDomainByIdPreview.json │ │ ├── ListDomainRoleAssignments.json │ │ ├── ListDomainWorkspaces.json │ │ ├── ListDomains.json │ │ ├── ListDomainsPreview.json │ │ ├── ListNonEmptyDomains.json │ │ ├── ListNonEmptyDomainsPreview.json │ │ ├── SyncRoleAssignmentsToSubdomains.json │ │ ├── UnassignAllDomainWorkspaces.json │ │ ├── UnassignDomainAdmins.json │ │ ├── UnassignDomainContributors.json │ │ ├── UnassignDomainWorkspacesByIds.json │ │ ├── UpdateDomain.json │ │ └── UpdateDomainPreview.json │ ├── externaldatasharing │ │ ├── ListExternalDataShares.json │ │ └── RevokeExternalDataShare.json │ ├── informationProtection │ │ ├── removeLabels.json │ │ └── setLabels.json │ ├── sharinglinks │ │ ├── BulkRemoveSharingLinksForItems.json │ │ └── RemoveAllSharingLinks.json │ ├── tags │ │ ├── CreateDomainTags.json │ │ ├── CreateTags.json │ │ ├── CreateTenantTags.json │ │ ├── CreateTenantTagsExplicit.json │ │ ├── DeleteTag.json │ │ └── UpdateTag.json │ └── tenantSettings │ │ ├── DeleteCapacityTenantSettingOverride.json │ │ ├── ListCapacityTenantSettingsOverrides.json │ │ ├── ListCapacityTenantSettingsOverridesByCapacityId.json │ │ ├── ListDomainTenantSettingsOverrides.json │ │ ├── ListTenantSettings.json │ │ ├── ListWorkspaceTenantSettingsOverrides.json │ │ ├── UpdateCapacityTenantSettingOverride.json │ │ └── UpdateTenantSetting.json └── swagger.json ├── anomalyDetector ├── definitions.json ├── examples │ ├── CreateAnomalyDetector.json │ ├── CreateAnomalyDetectorWithoutDefinition.json │ ├── DeleteAnomalyDetector.json │ ├── GetAnomalyDetector.json │ ├── GetAnomalyDetectorDefinition.json │ ├── ListAnomalyDetectorsInWorkspace.json │ ├── UpdateAnomalyDetector.json │ └── UpdateAnomalyDetectorDefinition.json └── swagger.json ├── apacheAirflowJob ├── definitions.json ├── examples │ ├── CreateApacheAirflowJob.json │ ├── CreateApacheAirflowJobWithoutDefinition.json │ ├── CreateOrUpdateApacheAirflowJobFileBinary.json │ ├── CreateOrUpdateApacheAirflowJobFilePlainText.json │ ├── DeleteApacheAirflowJob.json │ ├── DeleteApacheAirflowJobFile.json │ ├── GetApacheAirflowJob.json │ ├── GetApacheAirflowJobDefinition.json │ ├── GetApacheAirflowJobFile.json │ ├── ListApacheAirflowJobFiles.json │ ├── ListApacheAirflowJobsInWorkspace.json │ ├── UpdateApacheAirflowJob.json │ └── UpdateApacheAirflowJobDefinition.json └── swagger.json ├── common ├── definitions.json └── spark_definitions.json ├── copyJob ├── definitions.json ├── examples │ ├── CreateCopyJob.json │ ├── CreateCopyJobWithoutDefinition.json │ ├── DeleteCopyJob.json │ ├── GetCopyJob.json │ ├── GetCopyJobDefinition.json │ ├── ListCopyJobsInWorkspace.json │ ├── UpdateCopyJob.json │ └── UpdateCopyJobDefinition.json └── swagger.json ├── cosmosDbDatabase ├── definitions.json ├── examples │ ├── CreateCosmosDBDatabase.json │ ├── CreateCosmosDBDatabaseWithDefinition.json │ ├── DeleteCosmosDBDatabase.json │ ├── GetCosmosDBDatabase.json │ ├── GetCosmosDBDatabaseDefinition.json │ ├── ListCosmosDBDatabasesInWorkspace.json │ ├── UpdateCosmosDBDatabase.json │ └── UpdateCosmosDBDatabaseDefinition.json └── swagger.json ├── dashboard ├── definitions.json ├── examples │ └── ListDashboardsInWorkspace.json └── swagger.json ├── dataPipeline ├── definitions.json ├── examples │ ├── CreateDataPipeline.json │ ├── CreateDataPipelineWithoutDefinition.json │ ├── DeleteDataPipeline.json │ ├── GetDataPipeline.json │ ├── GetDataPipelineDefinition.json │ ├── ListDataPipelinesInWorkspace.json │ ├── UpdateDataPipeline.json │ └── UpdateDataPipelineDefinition.json └── swagger.json ├── dataflow ├── definitions.json ├── examples │ ├── CreateDataflow.json │ ├── CreateDataflowApplyChangesSchedule.json │ ├── CreateDataflowExecuteSchedule.json │ ├── CreateDataflowWithoutDefinition.json │ ├── DeleteDataflow.json │ ├── DiscoverDataflowParameters.json │ ├── GetDataflow.json │ ├── GetDataflowDefinition.json │ ├── ListDataflowsInWorkspace.json │ ├── RunOnDemandDataflowApplyChangesJob.json │ ├── RunOnDemandDataflowExecuteJob.json │ ├── RunOnDemandDataflowExecuteJobWithParameters.json │ ├── UpdateDataflow.json │ └── UpdateDataflowDefinition.json └── swagger.json ├── datamart ├── definitions.json ├── examples │ └── ListDatamartsInWorkspace.json └── swagger.json ├── digitalTwinBuilder ├── definitions.json ├── examples │ ├── CreateDigitalTwinBuilder.json │ ├── CreateDigitalTwinBuilderWithDefinition.json │ ├── DeleteDigitalTwinBuilder.json │ ├── GetDigitalTwinBuilder.json │ ├── GetDigitalTwinBuilderDefinition.json │ ├── ListDigitalTwinBuildersInWorkspace.json │ ├── UpdateDigitalTwinBuilder.json │ └── UpdateDigitalTwinBuilderDefinition.json └── swagger.json ├── digitalTwinBuilderFlow ├── definitions.json ├── examples │ ├── CreateDigitalTwinBuilderFlow.json │ ├── CreateDigitalTwinBuilderFlowWithoutDefinition.json │ ├── DeleteDigitalTwinBuilderFlow.json │ ├── GetDigitalTwinBuilderFlow.json │ ├── GetDigitalTwinBuilderFlowDefinition.json │ ├── ListDigitalTwinBuilderFlowsInWorkspace.json │ ├── UpdateDigitalTwinBuilderFlow.json │ └── UpdateDigitalTwinBuilderFlowDefinition.json └── swagger.json ├── environment ├── definitions.json ├── examples │ ├── CreateEnvironment.json │ ├── CreateEnvironmentWithoutDefinition.json │ ├── DeleteCustomLibrary.json │ ├── DeleteCustomLibraryPreview.json │ ├── DeleteEnvironment.json │ ├── DeleteStagingLibraries.json │ ├── ExportPublishedExternalLibraries.json │ ├── ExportStagingExternalLibraries.json │ ├── GetEnvironment.json │ ├── GetEnvironmentDefinition.json │ ├── GetEnvironmentPreview.json │ ├── GetEnvironmentSparkCompute.json │ ├── GetEnvironmentSparkComputePreview.json │ ├── GetPublishedLibraries.json │ ├── GetPublishedLibrariesPreview.json │ ├── GetStagingLibraries.json │ ├── GetStagingLibrariesPreview.json │ ├── ImportExternalLibraries.json │ ├── ListEnvironmentsInWorkspace.json │ ├── PublishCancellation.json │ ├── PublishEnvironment.json │ ├── PublishEnvironmentPreview.json │ ├── RemoveExternalLibraries.json │ ├── UpdateEnvironment.json │ ├── UpdateEnvironmentDefinition.json │ ├── UpdateEnvironmentSparkCompute.json │ ├── UpdateEnvironmentSparkComputeInstancePoolWithId.json │ ├── UpdateEnvironmentSparkComputePreview.json │ ├── UploadCustomLibrary.json │ ├── UploadCustomLibraryPreview.json │ └── UploadStagingLibraries.json └── swagger.json ├── eventhouse ├── definitions.json ├── examples │ ├── CreateEventhouse.json │ ├── CreateEventhouseWithCreationPayload.json │ ├── CreateEventhouseWithDefinition.json │ ├── DeleteEventhouse.json │ ├── GetEventhouse.json │ ├── GetEventhouseDefinition.json │ ├── ListEventhousesInWorkspace.json │ ├── UpdateEventhouse.json │ └── UpdateEventhouseDefinition.json └── swagger.json ├── eventstream ├── definitions.json ├── definitions │ ├── common.json │ ├── destination.json │ ├── operator.json │ ├── operatorCommon.json │ ├── serialization.json │ ├── source.json │ ├── stream.json │ └── topology.json ├── examples │ ├── CreateEventstream.json │ ├── CreateEventstreamWithDefinition.json │ ├── DeleteEventstream.json │ ├── GetEventstream.json │ ├── GetEventstreamDefinition.json │ ├── GetEventstreamDestination.json │ ├── GetEventstreamDestinationConnection.json │ ├── GetEventstreamSource.json │ ├── GetEventstreamSourceConnection.json │ ├── GetEventstreamTopology.json │ ├── ListEventstreamsInWorkspace.json │ ├── PauseEventstream.json │ ├── PauseEventstreamDestination.json │ ├── PauseEventstreamSource.json │ ├── ResumeEventstream.json │ ├── ResumeEventstreamDestination.json │ ├── ResumeEventstreamSource.json │ ├── UpdateEventstream.json │ └── UpdateEventstreamDefinition.json └── swagger.json ├── graphModel ├── definitions.json ├── examples │ ├── CreateGraphModel.json │ ├── CreateGraphModelWithoutDefinition.json │ ├── DeleteGraphModel.json │ ├── ExecuteQuery.json │ ├── GetGraphModel.json │ ├── GetGraphModelDefinition.json │ ├── GetQueryableGraphType.json │ ├── ListGraphModelsInWorkspace.json │ ├── RunOnDemandRefreshGraph.json │ ├── UpdateGraphModel.json │ └── UpdateGraphModelDefinition.json └── swagger.json ├── graphQLApi ├── definitions.json ├── examples │ ├── CreateGraphQLApi.json │ ├── CreateGraphQLApiWithoutDefinition.json │ ├── DeleteGraphQLApi.json │ ├── GetGraphQLApi.json │ ├── GetGraphQLApiDefinition.json │ ├── ListGraphQLApisInWorkspace.json │ ├── UpdateGraphQLApi.json │ └── UpdateGraphQLApiDefinition.json └── swagger.json ├── graphQuerySet ├── definitions.json ├── examples │ ├── CreateGraphQuerySet.json │ ├── CreateGraphQuerySetWithoutDefinition.json │ ├── DeleteGraphQuerySet.json │ ├── GetGraphQuerySet.json │ ├── GetGraphQuerySetDefinition.json │ ├── ListGraphQuerySetsInWorkspace.json │ ├── UpdateGraphQuerySet.json │ └── UpdateGraphQuerySetDefinition.json └── swagger.json ├── kqlDashboard ├── definitions.json ├── examples │ ├── CreateKQLDashboard.json │ ├── CreateKQLDashboardWithDefinition.json │ ├── DeleteKQLDashboard.json │ ├── GetKQLDashboard.json │ ├── GetKQLDashboardDefinition.json │ ├── ListKQLDashboardsInWorkspace.json │ ├── UpdateKQLDashboard.json │ └── UpdateKQLDashboardDefinition.json └── swagger.json ├── kqlDatabase ├── definitions.json ├── examples │ ├── CreateReadWriteKQLDatabase.json │ ├── CreateReadWriteKQLDatabaseWithDefinition.json │ ├── CreateShortcutKQLDatabase.json │ ├── CreateShortcutKQLDatabaseToAdx.json │ ├── CreateShortcutKQLDatabaseToAdxWithInvitationToken.json │ ├── DeleteKQLDatabase.json │ ├── GetKQLDatabase.json │ ├── GetReadWriteKQLDatabaseDefinition.json │ ├── ListKQLDatabasesInWorkspace.json │ ├── UpdateKQLDatabase.json │ └── UpdateReadWriteKQLDatabaseDefinition.json ├── owners.txt └── swagger.json ├── kqlQueryset ├── definitions.json ├── examples │ ├── CreateKQLQueryset.json │ ├── CreateKQLQuerysetWithDefinition.json │ ├── DeleteKQLQueryset.json │ ├── GetKQLQueryset.json │ ├── GetKQLQuerysetDefinition.json │ ├── ListKQLQuerysetsInWorkspace.json │ ├── UpdateKQLQueryset.json │ └── UpdateKQLQuerysetDefinition.json └── swagger.json ├── lakehouse ├── definitions.json ├── examples │ ├── CreateLakehouse.json │ ├── CreateLakehouseRefreshMaterializedLakeViewsSchedule.json │ ├── CreateLakehouseWithPayload.json │ ├── DeleteLakehouse.json │ ├── DeleteLakehouseRefreshMaterializedLakeViewsSchedule.json │ ├── GetLakehouse.json │ ├── GetLakehouseWithSchema.json │ ├── GetSessionInItemId.json │ ├── ListLakehousesInWorkspace.json │ ├── ListSessionsInItemId.json │ ├── ListSessionsInItemId_preview.json │ ├── ListTables.json │ ├── LoadTableOperation.json │ ├── RunOnDemandRefreshMaterializedLakeViewsNoBody.json │ ├── RunOnDemandTableMaintenance1.json │ ├── RunOnDemandTableMaintenance2.json │ ├── RunOnDemandTableMaintenanceForSchemaEnabledLakehouse.json │ ├── UpdateLakehouse.json │ └── UpdateLakehouseRefreshMaterializedLakeViewsSchedule.json └── swagger.json ├── map ├── definitions.json ├── examples │ ├── CreateMap.json │ ├── CreateMapWithoutDefinition.json │ ├── DeleteMap.json │ ├── GetMap.json │ ├── GetMapDefinition.json │ ├── ListMapsInWorkspace.json │ ├── UpdateMap.json │ └── UpdateMapDefinition.json └── swagger.json ├── mirroredAzureDatabricksCatalog ├── definitions.json ├── examples │ ├── CreateMirroredAzureDatabricksCatalogWithDefinition.json │ ├── CreateMirroredAzureDatabricksCatalogWithPayload.json │ ├── DeleteMirroredAzureDatabricksCatalog.json │ ├── GetDatabricksCatalogs.json │ ├── GetDatabricksSchemas.json │ ├── GetDatabricksTables.json │ ├── GetMirroredAzureDatabricksCatalog.json │ ├── GetMirroredAzureDatabricksCatalogDefinition.json │ ├── ListMirroredAzureDatabricksCatalogsInWorkspace.json │ ├── RefreshCatalogMetadata.json │ ├── UpdateMirroredAzureDatabricksCatalog.json │ ├── UpdateMirroredAzureDatabricksCatalogDefinition.json │ └── UpdateMirroredAzureDatabricksCatalogWithUpdateableProperties.json └── swagger.json ├── mirroredDatabase ├── definitions.json ├── examples │ ├── CreateMirroredDatabase.json │ ├── DeleteMirroredDatabase.json │ ├── GetMirroredDatabase.json │ ├── GetMirroredDatabaseDefinition.json │ ├── GetMirroringStatus.json │ ├── GetTablesMirroringStatus.json │ ├── ListMirroredDatabasesInWorkspace.json │ ├── StartMirroring.json │ ├── StopMirroring.json │ ├── UpdateMirroredDatabase.json │ └── UpdateMirroredDatabaseDefinition.json └── swagger.json ├── mirroredWarehouse ├── definitions.json ├── examples │ └── ListMirroredWarehousesInWorkspace.json └── swagger.json ├── mlExperiment ├── definitions.json ├── examples │ ├── CreateMLExperiment.json │ ├── DeleteMLExperiment.json │ ├── GetMLExperiment.json │ ├── ListMLExperimentsInWorkspace.json │ └── UpdateMLExperiment.json └── swagger.json ├── mlModel ├── definitions.json ├── examples │ ├── ActivateMLModelEndpointVersion.json │ ├── CreateMLModel.json │ ├── DeactivateMLModelEndpoint.json │ ├── DeactivateMLModelEndpointVersion.json │ ├── DeleteMLModel.json │ ├── GetMLModel.json │ ├── GetMLModelEndpoint.json │ ├── GetMLModelEndpointVersion.json │ ├── GetMLModelEndpointVersionWithFailureDetails.json │ ├── GetMLModelEndpointWithFailureDetails.json │ ├── ListMLModelEndpointVersions.json │ ├── ListMLModelsInWorkspace.json │ ├── ScoreMLModelEndpoint.json │ ├── ScoreMLModelEndpointVersion.json │ ├── UpdateMLModel.json │ ├── UpdateMLModelEndpoint.json │ ├── UpdateMLModelEndpointVersion.json │ ├── UpdateMLModelEndpointVersionWithFailureDetails.json │ └── UpdateMLModelEndpointWithFailureDetails.json └── swagger.json ├── mountedDataFactory ├── definitions.json ├── examples │ ├── CreateMountedDataFactory.json │ ├── DeleteMountedDataFactory.json │ ├── GetMountedDataFactory.json │ ├── GetMountedDataFactoryDefinition.json │ ├── ListMountedDataFactoriesInWorkspace.json │ ├── UpdateMountedDataFactory.json │ └── UpdateMountedDataFactoryDefinition.json └── swagger.json ├── notebook ├── definitions.json ├── examples │ ├── CreateNotebook.json │ ├── CreateNotebookWithFabricGitSource.json │ ├── CreateNotebookWithIpynb.json │ ├── CreateNotebookWithoutDefinition.json │ ├── DeleteNotebook.json │ ├── GetNotebook.json │ ├── GetNotebookDefinition.json │ ├── GetNotebookDefinitionWithFabricGitSource.json │ ├── GetNotebookDefinitionWithIpynb.json │ ├── GetSessionInItemId.json │ ├── ListNotebooksInWorkspace.json │ ├── ListSessionsInItemId.json │ ├── ListSessionsInItemId_preview.json │ ├── UpdateNotebook.json │ ├── UpdateNotebookDefinition.json │ ├── UpdateNotebookDefinitionWithFabricGitSource.json │ └── UpdateNotebookDefinitionWithIpynb.json └── swagger.json ├── operationsAgent ├── definitions.json ├── examples │ ├── CreateOperationsAgent.json │ ├── CreateOperationsAgentWithoutDefinition.json │ ├── DeleteOperationsAgent.json │ ├── GetOperationsAgent.json │ ├── GetOperationsAgentDefinition.json │ ├── ListOperationsAgentsInWorkspace.json │ ├── UpdateOperationsAgent.json │ └── UpdateOperationsAgentDefinition.json └── swagger.json ├── paginatedReport ├── definitions.json ├── examples │ ├── ListPaginatedReportsInWorkspace.json │ └── UpdatePaginatedReport.json └── swagger.json ├── platform ├── definitions │ ├── connections.json │ ├── deploymentPipelines.json │ ├── externaldatasharing.json │ ├── gateways.json │ ├── gitIntegration.json │ ├── managedPrivateEndpoint.json │ ├── platform.json │ ├── tags.json │ └── workspaceNetworkingPolicy.json ├── examples │ ├── connections │ │ ├── AddConnectionRoleAssignment.json │ │ ├── CreateCloudConnection.json │ │ ├── CreateOnPremisesGatewayConnection.json │ │ ├── CreateVirtualNetworkGatewayConnection.json │ │ ├── DeleteConnection.json │ │ ├── DeleteConnectionRoleAssignment.json │ │ ├── GetConnection.json │ │ ├── GetConnectionRoleAssignment.json │ │ ├── ListConnectionRoleAssignments.json │ │ ├── ListConnectionRoleAssignmentsWithContinuation.json │ │ ├── ListConnections.json │ │ ├── ListSupportedConnectionTypes.json │ │ ├── UpdateConnectionRoleAssignment.json │ │ ├── UpdateOnPremisesGatewayConnection.json │ │ ├── UpdateOnPremisesGatewayPersonalConnection.json │ │ ├── UpdatePersonalCloudConnection.json │ │ ├── UpdateShareableCloudConnection.json │ │ └── UpdateVirtualNetworkGatewayConnection.json │ ├── deploymentPipelines │ │ ├── AddDeploymentPipelineGroupRoleAssignment.json │ │ ├── AddDeploymentPipelineServicePrincipalRoleAssignment.json │ │ ├── AddDeploymentPipelineUserRoleAssignment.json │ │ ├── AddGroupRoleAssignment.json │ │ ├── AddServicePrincipalRoleAssignment.json │ │ ├── AddUserRoleAssignment.json │ │ ├── AssignWorkspace.json │ │ ├── AssignWorkspaceToStage.json │ │ ├── CreateDeploymentPipeline.json │ │ ├── CreatePipeline.json │ │ ├── DeleteDeploymentPipeline.json │ │ ├── DeleteDeploymentPipelineUserGroupRoleAssignment.json │ │ ├── DeleteDeploymentPipelineUserPrincipalRoleAssignment.json │ │ ├── DeletePipeline.json │ │ ├── DeletePipelineUserGroupAccess.json │ │ ├── DeletePipelineUserPrincipalAccess.json │ │ ├── DeployAll.json │ │ ├── GetDeploymentPipeline.json │ │ ├── GetDeploymentPipelineOperation.json │ │ ├── GetDeploymentPipelineStage.json │ │ ├── GetPipeline.json │ │ ├── GetPipelineOperation.json │ │ ├── GetPipelineOperations.json │ │ ├── GetPipelineUsers.json │ │ ├── ListDeploymentPipelineOperations.json │ │ ├── ListDeploymentPipelineOperationsWithContinuation.json │ │ ├── ListDeploymentPipelineRoleAssignments.json │ │ ├── ListDeploymentPipelineRoleAssignmentsWithContinuation.json │ │ ├── ListDeploymentPipelineStageItems.json │ │ ├── ListDeploymentPipelineStageItemsWithContinuation.json │ │ ├── ListDeploymentPipelineStages.json │ │ ├── ListDeploymentPipelineStagesWithContinuation.json │ │ ├── ListDeploymentPipelines.json │ │ ├── ListDeploymentPipelinesWithContinuation.json │ │ ├── ListPipelineStageItems.json │ │ ├── ListPipelineStageItemsWithContinuation.json │ │ ├── ListPipelineStages.json │ │ ├── ListPipelineStagesWithContinuation.json │ │ ├── ListPipelines.json │ │ ├── ListPipelinesWithContinuation.json │ │ ├── SelectiveDeploy.json │ │ ├── UnassignWorkspace.json │ │ ├── UnassignWorkspaceFromStage.json │ │ ├── UpdateDeploymentPipeline.json │ │ ├── UpdateDeploymentPipelineStage.json │ │ └── UpdatePipeline.json │ ├── domains │ │ ├── GetDomain.json │ │ ├── ListDomains.json │ │ └── ListDomainsWithContinuation.json │ ├── externaldatasharing │ │ ├── AcceptExternalDataShareInvitation.json │ │ ├── CreateExternalDataShare.json │ │ ├── CreateExternalDataShareWithMultiplePaths.json │ │ ├── CreateExternalDataShareWithRecipientTenantId.json │ │ ├── DeleteExternalDataShare.json │ │ ├── GetExternalDataShare.json │ │ ├── GetExternalDataShareInvitationDetails.json │ │ ├── ListExternalDataSharesInItem.json │ │ └── RevokeExternalDataShare.json │ ├── gateways │ │ ├── AddGatewayRoleAssignment.json │ │ ├── CreateVirtualNetworkGateway.json │ │ ├── DeleteGateway.json │ │ ├── DeleteGatewayMember.json │ │ ├── DeleteGatewayRoleAssignment.json │ │ ├── GetGateway.json │ │ ├── GetGatewayRoleAssignment.json │ │ ├── ListGatewayMembers.json │ │ ├── ListGatewayRoleAssignments.json │ │ ├── ListGatewayRoleAssignmentsWithContinuation.json │ │ ├── ListGateways.json │ │ ├── UpdateGatewayMember.json │ │ ├── UpdateGatewayRoleAssignment.json │ │ ├── UpdateOnPremisesGateway.json │ │ └── UpdateVirtualNetworkGateway.json │ ├── gitIntegration │ │ ├── CommitToGit_All.json │ │ ├── CommitToGit_Selective.json │ │ ├── ConnectToAzureDevOps.json │ │ ├── ConnectToAzureDevOpsUsingConfiguredConnection.json │ │ ├── ConnectToGitHub.json │ │ ├── Disconnect.json │ │ ├── GetConnection.json │ │ ├── GetConnection_NotConnected.json │ │ ├── GetMyGitCredentials_Automatic.json │ │ ├── GetMyGitCredentials_ConfiguredConnection.json │ │ ├── GetMyGitCredentials_None.json │ │ ├── GetStatus.json │ │ ├── GetStatus_Conflict.json │ │ ├── GetStatus_NoChanges.json │ │ ├── InitializeConnection.json │ │ ├── UpdateFromGit.json │ │ ├── UpdateMyGitCredentials_ToAutomatic.json │ │ ├── UpdateMyGitCredentials_ToConfiguredConnection.json │ │ └── UpdateMyGitCredentials_ToNone.json │ ├── managedPrivateEndpoint │ │ ├── CreateManagedPrivateEndpoint.json │ │ ├── CreateManagedPrivateEndpointWithFQDNs.json │ │ ├── DeleteManagedPrivateEndpoint.json │ │ ├── GetManagedPrivateEndpoint.json │ │ ├── ListFQDNsInManagedPrivateEndpoint.json │ │ ├── ListManagedPrivateEndpointsInWorkspace.json │ │ └── ListManagedPrivateEndpointsInWorkspaceWithContinuation.json │ ├── platform │ │ ├── AddWorkspaceRoleAssignment.json │ │ ├── ApplyTags.json │ │ ├── AssignWorkspaceToCapacity.json │ │ ├── AssignWorkspaceToDomain.json │ │ ├── BulkMoveItemsIntoFolder.json │ │ ├── BulkMoveItemsWithWorkspaceAsDestination.json │ │ ├── CancelItemJobInstance.json │ │ ├── CreateBulkShortcutOneLakeTargetCsvToDeltaTransform.json │ │ ├── CreateFolderUnderAnotherFolder.json │ │ ├── CreateFolderWithWorkspaceAsParentFolder.json │ │ ├── CreateItemInFolder.json │ │ ├── CreateItemRequiredOnly.json │ │ ├── CreateItemSchedule.json │ │ ├── CreateOrOverwriteShortcutOneLakeTarget.json │ │ ├── CreateOrUpdateDataAccessRolesExample.json │ │ ├── CreateOrUpdateDataAccessRolesWithConstraints.json │ │ ├── CreateOrUpdateDataAccessRolesWithTablesPathExample.json │ │ ├── CreateShortcutAdlsGen2Target.json │ │ ├── CreateShortcutAmazonS3Target.json │ │ ├── CreateShortcutAzureBlobStorageTarget.json │ │ ├── CreateShortcutGoogleCloudStorageTarget.json │ │ ├── CreateShortcutOneDriveSharePointTarget.json │ │ ├── CreateShortcutOneLakeTarget.json │ │ ├── CreateShortcutS3CompatibleTarget.json │ │ ├── CreateWorkspaceRequiredOnly.json │ │ ├── DeleteFolder.json │ │ ├── DeleteItem.json │ │ ├── DeleteItemSchedule.json │ │ ├── DeleteShortcutOneLakeTarget.json │ │ ├── DeleteWorkspace.json │ │ ├── DeleteWorkspaceRoleAssignment.json │ │ ├── DeprovisionWorkspaceIdentity.json │ │ ├── GetFolder.json │ │ ├── GetItem.json │ │ ├── GetItemDefinition.json │ │ ├── GetItemJobInstance.json │ │ ├── GetItemSchedule.json │ │ ├── GetLongRunningOperationResult.json │ │ ├── GetLongRunningOperationStateCompleted.json │ │ ├── GetLongRunningOperationStateRunning.json │ │ ├── GetOneLakeDiagnosticSettingWithDiagnosticSetting.json │ │ ├── GetOneLakeDiagnosticSettingWithoutDiagnosticSetting.json │ │ ├── GetShortcutAzureBlobStorageTarget.json │ │ ├── GetShortcutExternalDataShareTarget.json │ │ ├── GetShortcutGoogleCloudStorageTarget.json │ │ ├── GetShortcutOneDriveSharePointTarget.json │ │ ├── GetShortcutOneLakeTarget.json │ │ ├── GetShortcutS3CompatibleTarget.json │ │ ├── GetShortcutTransformOneLakeTarget.json │ │ ├── GetWorkspace.json │ │ ├── GetWorkspaceGitNetworkingCommunicationPolicy.json │ │ ├── GetWorkspaceNetworkingCommunicationPolicy.json │ │ ├── GetWorkspaceOutboundConnections.json │ │ ├── GetWorkspaceOutboundGateways.json │ │ ├── GetWorkspaceRoleAssignment.json │ │ ├── GetWorkspaceRoleAssignments.json │ │ ├── GetWorkspaceRoleAssignmentsWithContinuation.json │ │ ├── GetWorkspaceWithPreferWorkspaceSpecificEndpoints.json │ │ ├── ListAllFoldersInWorkspace.json │ │ ├── ListAllItemsInFolder.json │ │ ├── ListCapacities.json │ │ ├── ListCapacitiesWithContinuation.json │ │ ├── ListDataAccessRolesSinglePageExample.json │ │ ├── ListDataAccessRolesWithContinuationExample.json │ │ ├── ListDefaultDataAccessRolesExample.json │ │ ├── ListDefaultDataAccessRolesWithConstraints.json │ │ ├── ListDirectChildrenFoldersUnderParentFolder.json │ │ ├── ListDirectItemsInFolder.json │ │ ├── ListDirectItemsInWorkspace.json │ │ ├── ListFoldersInWorkspaceWithContinuation.json │ │ ├── ListFoldersUnderParentFolderRecursively.json │ │ ├── ListItemConnections.json │ │ ├── ListItemConnectionsVirtualConnection.json │ │ ├── ListItemConnectionsWithContinuation.json │ │ ├── ListItemJobInstances.json │ │ ├── ListItemJobInstancesWithContinuation.json │ │ ├── ListItemSchedules.json │ │ ├── ListItemsInWorkspace.json │ │ ├── ListItemsInWorkspaceByType.json │ │ ├── ListItemsInWorkspaceWithContinuation.json │ │ ├── ListShortcuts.json │ │ ├── ListShortcutsWithContinuation.json │ │ ├── ListShortcutsWithShortcutTransforms.json │ │ ├── ListWorkspaces.json │ │ ├── ListWorkspacesWithContinuation.json │ │ ├── ListWorkspacesWithPreferWorkspaceSpecificEndpoints.json │ │ ├── ListWorkspacesWithWorkspaceRoleFilter.json │ │ ├── ModifyOneLakeDiagnosticSettingCreate.json │ │ ├── ModifyOneLakeDiagnosticSettingDisable.json │ │ ├── ModifyOneLakeDiagnosticSettingRemove.json │ │ ├── ModifyOneLakeDiagnosticSettingReplace.json │ │ ├── MoveFolderIntoAnotherFolder.json │ │ ├── MoveFolderWithWorkspaceAsDestination.json │ │ ├── MoveItemIntoFolder.json │ │ ├── MoveItemWithWorkspaceAsDestination.json │ │ ├── OverwriteShortcutOneLakeTarget.json │ │ ├── ProvisionWorkspaceIdentity.json │ │ ├── ResetShortcutCache.json │ │ ├── RunOnDemandItemJob.json │ │ ├── RunOnDemandItemJob2.json │ │ ├── SetWorkspaceGitNetworkingCommunicationPolicy.json │ │ ├── SetWorkspaceNetworkingCommunicationPolicy.json │ │ ├── SetWorkspaceOutboundConnections.json │ │ ├── SetWorkspaceOutboundGateways.json │ │ ├── UnapplyTags.json │ │ ├── UnassignWorkspaceFromCapacity.json │ │ ├── UnassignWorkspaceFromDomain.json │ │ ├── UpdateFolder.json │ │ ├── UpdateItem.json │ │ ├── UpdateItemDefinition.json │ │ ├── UpdateItemSchedule.json │ │ ├── UpdateWorkspace.json │ │ └── UpdateWorkspaceRoleAssignment.json │ └── tags │ │ ├── ListTags.json │ │ └── ListTagsWithContinuation.json └── swagger.json ├── reflex ├── definitions.json ├── examples │ ├── CreateReflex.json │ ├── CreateReflexWithoutDefinition.json │ ├── DeleteReflex.json │ ├── GetReflex.json │ ├── GetReflexDefinition.json │ ├── ListReflexesInWorkspace.json │ ├── UpdateReflex.json │ └── UpdateReflexDefinition.json └── swagger.json ├── report ├── definitions.json ├── examples │ ├── CreateReport.json │ ├── DeleteReport.json │ ├── GetReport.json │ ├── GetReportDefinition.json │ ├── ListReportsInWorkspace.json │ ├── UpdateReport.json │ └── UpdateReportDefinition.json └── swagger.json ├── semanticModel ├── definitions.json ├── examples │ ├── BindSemanticModelConnection.json │ ├── CreateSemanticModel.json │ ├── DeleteSemanticModel.json │ ├── GetSemanticModel.json │ ├── GetSemanticModelDefinition.json │ ├── GetSemanticModelDefinitionDefault.json │ ├── ListSemanticModelsInWorkspace.json │ ├── UnbindSemanticModelConnection.json │ ├── UpdateSemanticModel.json │ └── UpdateSemanticModelDefinition.json └── swagger.json ├── snowflakeDatabase ├── definitions.json ├── examples │ ├── CreateSnowflakeDatabaseWithDefinition.json │ ├── CreateSnowflakeDatabaseWithPayload.json │ ├── CreateSnowflakeDatabaseWithoutPayload.json │ ├── DeleteSnowflakeDatabase.json │ ├── GetSnowflakeDatabase.json │ ├── GetSnowflakeDatabaseDefinition.json │ ├── ListSnowflakeDatabasesInWorkspace.json │ ├── SnowflakeDatabase_LRO_Complete.json │ ├── SnowflakeDatabase_LRO_Example.json │ ├── SnowflakeDatabase_LRO_Poll.json │ ├── UpdateSnowflakeDatabase.json │ └── UpdateSnowflakeDatabaseDefinition.json └── swagger.json ├── spark ├── definitions.json ├── examples │ ├── CreateCustomPool.json │ ├── DeleteCustomPool.json │ ├── GetCustomPool.json │ ├── GetWorkspaceSparkSettings.json │ ├── ListCustomPools.json │ ├── ListCustomPoolsWithContinuation.json │ ├── ListSessionsInItemId_preview.json │ ├── ListSessionsInWorkspace.json │ ├── UpdateCustomPool.json │ ├── UpdateWorkspaceSparkSettings.json │ └── UpdateWorkspaceSparkSettingsDefaultPoolWithId.json └── swagger.json ├── sparkjobdefinition ├── definitions.json ├── examples │ ├── CreateSparkJobDefinition.json │ ├── CreateSparkJobDefinitionWithInlineFiles.json │ ├── CreateSparkJobDefinitionWithoutDefinition.json │ ├── DeleteSparkJobDefinition.json │ ├── GetSessionInItemId.json │ ├── GetSparkJobDefinition.json │ ├── GetSparkJobDefinitionDefinition.json │ ├── GetSparkJobDefinitionDefinitionV2.json │ ├── ListSessionsInItemId.json │ ├── ListSessionsInItemId_preview.json │ ├── ListSparkJobDefinitionsInWorkspace.json │ ├── RunOnDemandSparkJobDefinitionNoBody.json │ ├── RunOnDemandSparkJobDefinitionWithBody.json │ ├── UpdateSparkJobDefinition.json │ ├── UpdateSparkJobDefinitionDefinition.json │ └── UpdateSparkJobDefinitionWithInlineFiles.json └── swagger.json ├── sqlDatabase ├── definitions.json ├── examples │ ├── CreateSQLDatabase.json │ ├── CreateSQLDatabaseWithDefinition.json │ ├── CreateSQLDatabaseWithPayload.json │ ├── DeleteSQLDatabase.json │ ├── GetSQLDatabase.json │ ├── GetSQLDatabaseDefinition.json │ ├── ListSQLDatabasesInWorkspace.json │ ├── StartMirroring.json │ ├── StopMirroring.json │ ├── UpdateSQLDatabase.json │ └── UpdateSQLDatabaseDefinition.json └── swagger.json ├── sqlEndpoint ├── definitions.json ├── examples │ ├── GetConnectionString.json │ ├── GetSqlAuditSettings.json │ ├── ListSQLEndpointsInWorkspace.json │ ├── RefreshAllTablesInSqlEndpoint.json │ ├── SetAuditActionsAndGroups.json │ └── UpdateSqlAuditSettings.json ├── swagger.json └── swagger_refreshMetadata.json ├── userDataFunction ├── definitions.json ├── examples │ ├── CreateUserDataFunction.json │ ├── CreateUserDataFunctionWithoutDefinition.json │ ├── DeleteUserDataFunction.json │ ├── GetUserDataFunction.json │ ├── GetUserDataFunctionDefinition.json │ ├── ListUserDataFunctionsInWorkspace.json │ ├── UpdateUserDataFunction.json │ └── UpdateUserDataFunctionDefinition.json └── swagger.json ├── variableLibrary ├── definitions.json ├── examples │ ├── CreateVariableLibrary.json │ ├── CreateVariableLibraryWithoutDefinition.json │ ├── DeleteVariableLibrary.json │ ├── GetVariableLibrary.json │ ├── GetVariableLibraryDefinition.json │ ├── ListVariableLibrariesInWorkspace.json │ ├── UpdateVariableLibrary.json │ └── UpdateVariableLibraryDefinition.json └── swagger.json ├── warehouse ├── definitions.json ├── examples │ ├── CreateRestorePoint.json │ ├── CreateWarehouse.json │ ├── CreateWarehouseWithCreationPayload.json │ ├── DeleteRestorePoint.json │ ├── DeleteWarehouse.json │ ├── GetConnectionString.json │ ├── GetRestorePoint.json │ ├── GetSqlAuditSettings.json │ ├── GetWarehouse.json │ ├── ListRestorePoints.json │ ├── ListWarehousesInWorkspace.json │ ├── RestoreToRestorePoint.json │ ├── SetAuditActionsAndGroups.json │ ├── UpdateRestorePoint.json │ ├── UpdateSqlAuditSettings.json │ └── UpdateWarehouse.json └── swagger.json └── warehouseSnapshot ├── definitions.json ├── examples ├── CreateWarehouseSnapshotWithoutDefinition.json ├── DeleteWarehouseSnapshot.json ├── GetWarehouseSnapshot.json ├── ListWarehouseSnapshotsInWorkspace.json └── UpdateWarehouseSnapshot.json └── swagger.json /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /admin/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/definitions.json -------------------------------------------------------------------------------- /admin/definitions/domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/definitions/domains.json -------------------------------------------------------------------------------- /admin/definitions/externaldatasharing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/definitions/externaldatasharing.json -------------------------------------------------------------------------------- /admin/definitions/sharinglinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/definitions/sharinglinks.json -------------------------------------------------------------------------------- /admin/definitions/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/definitions/tags.json -------------------------------------------------------------------------------- /admin/examples/AdminListTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/AdminListTags.json -------------------------------------------------------------------------------- /admin/examples/AdminListTagsWithContinuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/AdminListTagsWithContinuation.json -------------------------------------------------------------------------------- /admin/examples/GetItemById.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/GetItemById.json -------------------------------------------------------------------------------- /admin/examples/GetItemByIdNoType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/GetItemByIdNoType.json -------------------------------------------------------------------------------- /admin/examples/GetWorkspaceById.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/GetWorkspaceById.json -------------------------------------------------------------------------------- /admin/examples/ListGitConnectionsDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListGitConnectionsDetails.json -------------------------------------------------------------------------------- /admin/examples/ListItemUsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListItemUsers.json -------------------------------------------------------------------------------- /admin/examples/ListItemUsersByIdType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListItemUsersByIdType.json -------------------------------------------------------------------------------- /admin/examples/ListItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListItems.json -------------------------------------------------------------------------------- /admin/examples/ListItemsAccessByUpn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListItemsAccessByUpn.json -------------------------------------------------------------------------------- /admin/examples/ListItemsAccessByUserId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListItemsAccessByUserId.json -------------------------------------------------------------------------------- /admin/examples/ListItemsAccessByUserIdAndType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListItemsAccessByUserIdAndType.json -------------------------------------------------------------------------------- /admin/examples/ListItemsByDatamartType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListItemsByDatamartType.json -------------------------------------------------------------------------------- /admin/examples/ListItemsByType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListItemsByType.json -------------------------------------------------------------------------------- /admin/examples/ListWorkspaceUsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListWorkspaceUsers.json -------------------------------------------------------------------------------- /admin/examples/ListWorkspaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListWorkspaces.json -------------------------------------------------------------------------------- /admin/examples/ListWorkspacesByState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/ListWorkspacesByState.json -------------------------------------------------------------------------------- /admin/examples/RestoreWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/RestoreWorkspace.json -------------------------------------------------------------------------------- /admin/examples/domains/AssignDomainAdmins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/AssignDomainAdmins.json -------------------------------------------------------------------------------- /admin/examples/domains/AssignDomainContributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/AssignDomainContributors.json -------------------------------------------------------------------------------- /admin/examples/domains/AssignDomainWorkspacesByCapacity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/AssignDomainWorkspacesByCapacity.json -------------------------------------------------------------------------------- /admin/examples/domains/AssignDomainWorkspacesByIds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/AssignDomainWorkspacesByIds.json -------------------------------------------------------------------------------- /admin/examples/domains/AssignDomainWorkspacesByPrincipals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/AssignDomainWorkspacesByPrincipals.json -------------------------------------------------------------------------------- /admin/examples/domains/AssignUnassignDomainAdmins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/AssignUnassignDomainAdmins.json -------------------------------------------------------------------------------- /admin/examples/domains/AssignUnassignDomainContributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/AssignUnassignDomainContributors.json -------------------------------------------------------------------------------- /admin/examples/domains/AssignUnassignDomainWorkspacesByIds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/AssignUnassignDomainWorkspacesByIds.json -------------------------------------------------------------------------------- /admin/examples/domains/CreateDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/CreateDomain.json -------------------------------------------------------------------------------- /admin/examples/domains/CreateDomainPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/CreateDomainPreview.json -------------------------------------------------------------------------------- /admin/examples/domains/DeleteDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/DeleteDomain.json -------------------------------------------------------------------------------- /admin/examples/domains/GetDomainById.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/GetDomainById.json -------------------------------------------------------------------------------- /admin/examples/domains/GetDomainByIdPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/GetDomainByIdPreview.json -------------------------------------------------------------------------------- /admin/examples/domains/ListDomainRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/ListDomainRoleAssignments.json -------------------------------------------------------------------------------- /admin/examples/domains/ListDomainWorkspaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/ListDomainWorkspaces.json -------------------------------------------------------------------------------- /admin/examples/domains/ListDomains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/ListDomains.json -------------------------------------------------------------------------------- /admin/examples/domains/ListDomainsPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/ListDomainsPreview.json -------------------------------------------------------------------------------- /admin/examples/domains/ListNonEmptyDomains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/ListNonEmptyDomains.json -------------------------------------------------------------------------------- /admin/examples/domains/ListNonEmptyDomainsPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/ListNonEmptyDomainsPreview.json -------------------------------------------------------------------------------- /admin/examples/domains/SyncRoleAssignmentsToSubdomains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/SyncRoleAssignmentsToSubdomains.json -------------------------------------------------------------------------------- /admin/examples/domains/UnassignAllDomainWorkspaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/UnassignAllDomainWorkspaces.json -------------------------------------------------------------------------------- /admin/examples/domains/UnassignDomainAdmins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/UnassignDomainAdmins.json -------------------------------------------------------------------------------- /admin/examples/domains/UnassignDomainContributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/UnassignDomainContributors.json -------------------------------------------------------------------------------- /admin/examples/domains/UnassignDomainWorkspacesByIds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/UnassignDomainWorkspacesByIds.json -------------------------------------------------------------------------------- /admin/examples/domains/UpdateDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/UpdateDomain.json -------------------------------------------------------------------------------- /admin/examples/domains/UpdateDomainPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/domains/UpdateDomainPreview.json -------------------------------------------------------------------------------- /admin/examples/externaldatasharing/ListExternalDataShares.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/externaldatasharing/ListExternalDataShares.json -------------------------------------------------------------------------------- /admin/examples/externaldatasharing/RevokeExternalDataShare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/externaldatasharing/RevokeExternalDataShare.json -------------------------------------------------------------------------------- /admin/examples/informationProtection/removeLabels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/informationProtection/removeLabels.json -------------------------------------------------------------------------------- /admin/examples/informationProtection/setLabels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/informationProtection/setLabels.json -------------------------------------------------------------------------------- /admin/examples/sharinglinks/BulkRemoveSharingLinksForItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/sharinglinks/BulkRemoveSharingLinksForItems.json -------------------------------------------------------------------------------- /admin/examples/sharinglinks/RemoveAllSharingLinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/sharinglinks/RemoveAllSharingLinks.json -------------------------------------------------------------------------------- /admin/examples/tags/CreateDomainTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tags/CreateDomainTags.json -------------------------------------------------------------------------------- /admin/examples/tags/CreateTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tags/CreateTags.json -------------------------------------------------------------------------------- /admin/examples/tags/CreateTenantTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tags/CreateTenantTags.json -------------------------------------------------------------------------------- /admin/examples/tags/CreateTenantTagsExplicit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tags/CreateTenantTagsExplicit.json -------------------------------------------------------------------------------- /admin/examples/tags/DeleteTag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tags/DeleteTag.json -------------------------------------------------------------------------------- /admin/examples/tags/UpdateTag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tags/UpdateTag.json -------------------------------------------------------------------------------- /admin/examples/tenantSettings/DeleteCapacityTenantSettingOverride.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tenantSettings/DeleteCapacityTenantSettingOverride.json -------------------------------------------------------------------------------- /admin/examples/tenantSettings/ListCapacityTenantSettingsOverrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tenantSettings/ListCapacityTenantSettingsOverrides.json -------------------------------------------------------------------------------- /admin/examples/tenantSettings/ListDomainTenantSettingsOverrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tenantSettings/ListDomainTenantSettingsOverrides.json -------------------------------------------------------------------------------- /admin/examples/tenantSettings/ListTenantSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tenantSettings/ListTenantSettings.json -------------------------------------------------------------------------------- /admin/examples/tenantSettings/UpdateCapacityTenantSettingOverride.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tenantSettings/UpdateCapacityTenantSettingOverride.json -------------------------------------------------------------------------------- /admin/examples/tenantSettings/UpdateTenantSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/examples/tenantSettings/UpdateTenantSetting.json -------------------------------------------------------------------------------- /admin/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/admin/swagger.json -------------------------------------------------------------------------------- /anomalyDetector/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/anomalyDetector/definitions.json -------------------------------------------------------------------------------- /anomalyDetector/examples/CreateAnomalyDetector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/anomalyDetector/examples/CreateAnomalyDetector.json -------------------------------------------------------------------------------- /anomalyDetector/examples/CreateAnomalyDetectorWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/anomalyDetector/examples/CreateAnomalyDetectorWithoutDefinition.json -------------------------------------------------------------------------------- /anomalyDetector/examples/DeleteAnomalyDetector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/anomalyDetector/examples/DeleteAnomalyDetector.json -------------------------------------------------------------------------------- /anomalyDetector/examples/GetAnomalyDetector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/anomalyDetector/examples/GetAnomalyDetector.json -------------------------------------------------------------------------------- /anomalyDetector/examples/GetAnomalyDetectorDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/anomalyDetector/examples/GetAnomalyDetectorDefinition.json -------------------------------------------------------------------------------- /anomalyDetector/examples/ListAnomalyDetectorsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/anomalyDetector/examples/ListAnomalyDetectorsInWorkspace.json -------------------------------------------------------------------------------- /anomalyDetector/examples/UpdateAnomalyDetector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/anomalyDetector/examples/UpdateAnomalyDetector.json -------------------------------------------------------------------------------- /anomalyDetector/examples/UpdateAnomalyDetectorDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/anomalyDetector/examples/UpdateAnomalyDetectorDefinition.json -------------------------------------------------------------------------------- /anomalyDetector/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/anomalyDetector/swagger.json -------------------------------------------------------------------------------- /apacheAirflowJob/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/definitions.json -------------------------------------------------------------------------------- /apacheAirflowJob/examples/CreateApacheAirflowJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/examples/CreateApacheAirflowJob.json -------------------------------------------------------------------------------- /apacheAirflowJob/examples/CreateApacheAirflowJobWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/examples/CreateApacheAirflowJobWithoutDefinition.json -------------------------------------------------------------------------------- /apacheAirflowJob/examples/DeleteApacheAirflowJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/examples/DeleteApacheAirflowJob.json -------------------------------------------------------------------------------- /apacheAirflowJob/examples/DeleteApacheAirflowJobFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/examples/DeleteApacheAirflowJobFile.json -------------------------------------------------------------------------------- /apacheAirflowJob/examples/GetApacheAirflowJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/examples/GetApacheAirflowJob.json -------------------------------------------------------------------------------- /apacheAirflowJob/examples/GetApacheAirflowJobDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/examples/GetApacheAirflowJobDefinition.json -------------------------------------------------------------------------------- /apacheAirflowJob/examples/GetApacheAirflowJobFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/examples/GetApacheAirflowJobFile.json -------------------------------------------------------------------------------- /apacheAirflowJob/examples/ListApacheAirflowJobFiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/examples/ListApacheAirflowJobFiles.json -------------------------------------------------------------------------------- /apacheAirflowJob/examples/ListApacheAirflowJobsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/examples/ListApacheAirflowJobsInWorkspace.json -------------------------------------------------------------------------------- /apacheAirflowJob/examples/UpdateApacheAirflowJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/examples/UpdateApacheAirflowJob.json -------------------------------------------------------------------------------- /apacheAirflowJob/examples/UpdateApacheAirflowJobDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/examples/UpdateApacheAirflowJobDefinition.json -------------------------------------------------------------------------------- /apacheAirflowJob/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/apacheAirflowJob/swagger.json -------------------------------------------------------------------------------- /common/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/common/definitions.json -------------------------------------------------------------------------------- /common/spark_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/common/spark_definitions.json -------------------------------------------------------------------------------- /copyJob/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/copyJob/definitions.json -------------------------------------------------------------------------------- /copyJob/examples/CreateCopyJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/copyJob/examples/CreateCopyJob.json -------------------------------------------------------------------------------- /copyJob/examples/CreateCopyJobWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/copyJob/examples/CreateCopyJobWithoutDefinition.json -------------------------------------------------------------------------------- /copyJob/examples/DeleteCopyJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/copyJob/examples/DeleteCopyJob.json -------------------------------------------------------------------------------- /copyJob/examples/GetCopyJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/copyJob/examples/GetCopyJob.json -------------------------------------------------------------------------------- /copyJob/examples/GetCopyJobDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/copyJob/examples/GetCopyJobDefinition.json -------------------------------------------------------------------------------- /copyJob/examples/ListCopyJobsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/copyJob/examples/ListCopyJobsInWorkspace.json -------------------------------------------------------------------------------- /copyJob/examples/UpdateCopyJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/copyJob/examples/UpdateCopyJob.json -------------------------------------------------------------------------------- /copyJob/examples/UpdateCopyJobDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/copyJob/examples/UpdateCopyJobDefinition.json -------------------------------------------------------------------------------- /copyJob/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/copyJob/swagger.json -------------------------------------------------------------------------------- /cosmosDbDatabase/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/cosmosDbDatabase/definitions.json -------------------------------------------------------------------------------- /cosmosDbDatabase/examples/CreateCosmosDBDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/cosmosDbDatabase/examples/CreateCosmosDBDatabase.json -------------------------------------------------------------------------------- /cosmosDbDatabase/examples/CreateCosmosDBDatabaseWithDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/cosmosDbDatabase/examples/CreateCosmosDBDatabaseWithDefinition.json -------------------------------------------------------------------------------- /cosmosDbDatabase/examples/DeleteCosmosDBDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/cosmosDbDatabase/examples/DeleteCosmosDBDatabase.json -------------------------------------------------------------------------------- /cosmosDbDatabase/examples/GetCosmosDBDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/cosmosDbDatabase/examples/GetCosmosDBDatabase.json -------------------------------------------------------------------------------- /cosmosDbDatabase/examples/GetCosmosDBDatabaseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/cosmosDbDatabase/examples/GetCosmosDBDatabaseDefinition.json -------------------------------------------------------------------------------- /cosmosDbDatabase/examples/ListCosmosDBDatabasesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/cosmosDbDatabase/examples/ListCosmosDBDatabasesInWorkspace.json -------------------------------------------------------------------------------- /cosmosDbDatabase/examples/UpdateCosmosDBDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/cosmosDbDatabase/examples/UpdateCosmosDBDatabase.json -------------------------------------------------------------------------------- /cosmosDbDatabase/examples/UpdateCosmosDBDatabaseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/cosmosDbDatabase/examples/UpdateCosmosDBDatabaseDefinition.json -------------------------------------------------------------------------------- /cosmosDbDatabase/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/cosmosDbDatabase/swagger.json -------------------------------------------------------------------------------- /dashboard/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dashboard/definitions.json -------------------------------------------------------------------------------- /dashboard/examples/ListDashboardsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dashboard/examples/ListDashboardsInWorkspace.json -------------------------------------------------------------------------------- /dashboard/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dashboard/swagger.json -------------------------------------------------------------------------------- /dataPipeline/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataPipeline/definitions.json -------------------------------------------------------------------------------- /dataPipeline/examples/CreateDataPipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataPipeline/examples/CreateDataPipeline.json -------------------------------------------------------------------------------- /dataPipeline/examples/CreateDataPipelineWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataPipeline/examples/CreateDataPipelineWithoutDefinition.json -------------------------------------------------------------------------------- /dataPipeline/examples/DeleteDataPipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataPipeline/examples/DeleteDataPipeline.json -------------------------------------------------------------------------------- /dataPipeline/examples/GetDataPipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataPipeline/examples/GetDataPipeline.json -------------------------------------------------------------------------------- /dataPipeline/examples/GetDataPipelineDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataPipeline/examples/GetDataPipelineDefinition.json -------------------------------------------------------------------------------- /dataPipeline/examples/ListDataPipelinesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataPipeline/examples/ListDataPipelinesInWorkspace.json -------------------------------------------------------------------------------- /dataPipeline/examples/UpdateDataPipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataPipeline/examples/UpdateDataPipeline.json -------------------------------------------------------------------------------- /dataPipeline/examples/UpdateDataPipelineDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataPipeline/examples/UpdateDataPipelineDefinition.json -------------------------------------------------------------------------------- /dataPipeline/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataPipeline/swagger.json -------------------------------------------------------------------------------- /dataflow/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/definitions.json -------------------------------------------------------------------------------- /dataflow/examples/CreateDataflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/CreateDataflow.json -------------------------------------------------------------------------------- /dataflow/examples/CreateDataflowApplyChangesSchedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/CreateDataflowApplyChangesSchedule.json -------------------------------------------------------------------------------- /dataflow/examples/CreateDataflowExecuteSchedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/CreateDataflowExecuteSchedule.json -------------------------------------------------------------------------------- /dataflow/examples/CreateDataflowWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/CreateDataflowWithoutDefinition.json -------------------------------------------------------------------------------- /dataflow/examples/DeleteDataflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/DeleteDataflow.json -------------------------------------------------------------------------------- /dataflow/examples/DiscoverDataflowParameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/DiscoverDataflowParameters.json -------------------------------------------------------------------------------- /dataflow/examples/GetDataflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/GetDataflow.json -------------------------------------------------------------------------------- /dataflow/examples/GetDataflowDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/GetDataflowDefinition.json -------------------------------------------------------------------------------- /dataflow/examples/ListDataflowsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/ListDataflowsInWorkspace.json -------------------------------------------------------------------------------- /dataflow/examples/RunOnDemandDataflowApplyChangesJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/RunOnDemandDataflowApplyChangesJob.json -------------------------------------------------------------------------------- /dataflow/examples/RunOnDemandDataflowExecuteJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/RunOnDemandDataflowExecuteJob.json -------------------------------------------------------------------------------- /dataflow/examples/RunOnDemandDataflowExecuteJobWithParameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/RunOnDemandDataflowExecuteJobWithParameters.json -------------------------------------------------------------------------------- /dataflow/examples/UpdateDataflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/UpdateDataflow.json -------------------------------------------------------------------------------- /dataflow/examples/UpdateDataflowDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/examples/UpdateDataflowDefinition.json -------------------------------------------------------------------------------- /dataflow/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/dataflow/swagger.json -------------------------------------------------------------------------------- /datamart/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/datamart/definitions.json -------------------------------------------------------------------------------- /datamart/examples/ListDatamartsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/datamart/examples/ListDatamartsInWorkspace.json -------------------------------------------------------------------------------- /datamart/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/datamart/swagger.json -------------------------------------------------------------------------------- /digitalTwinBuilder/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilder/definitions.json -------------------------------------------------------------------------------- /digitalTwinBuilder/examples/CreateDigitalTwinBuilder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilder/examples/CreateDigitalTwinBuilder.json -------------------------------------------------------------------------------- /digitalTwinBuilder/examples/DeleteDigitalTwinBuilder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilder/examples/DeleteDigitalTwinBuilder.json -------------------------------------------------------------------------------- /digitalTwinBuilder/examples/GetDigitalTwinBuilder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilder/examples/GetDigitalTwinBuilder.json -------------------------------------------------------------------------------- /digitalTwinBuilder/examples/GetDigitalTwinBuilderDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilder/examples/GetDigitalTwinBuilderDefinition.json -------------------------------------------------------------------------------- /digitalTwinBuilder/examples/ListDigitalTwinBuildersInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilder/examples/ListDigitalTwinBuildersInWorkspace.json -------------------------------------------------------------------------------- /digitalTwinBuilder/examples/UpdateDigitalTwinBuilder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilder/examples/UpdateDigitalTwinBuilder.json -------------------------------------------------------------------------------- /digitalTwinBuilder/examples/UpdateDigitalTwinBuilderDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilder/examples/UpdateDigitalTwinBuilderDefinition.json -------------------------------------------------------------------------------- /digitalTwinBuilder/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilder/swagger.json -------------------------------------------------------------------------------- /digitalTwinBuilderFlow/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilderFlow/definitions.json -------------------------------------------------------------------------------- /digitalTwinBuilderFlow/examples/CreateDigitalTwinBuilderFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilderFlow/examples/CreateDigitalTwinBuilderFlow.json -------------------------------------------------------------------------------- /digitalTwinBuilderFlow/examples/DeleteDigitalTwinBuilderFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilderFlow/examples/DeleteDigitalTwinBuilderFlow.json -------------------------------------------------------------------------------- /digitalTwinBuilderFlow/examples/GetDigitalTwinBuilderFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilderFlow/examples/GetDigitalTwinBuilderFlow.json -------------------------------------------------------------------------------- /digitalTwinBuilderFlow/examples/UpdateDigitalTwinBuilderFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilderFlow/examples/UpdateDigitalTwinBuilderFlow.json -------------------------------------------------------------------------------- /digitalTwinBuilderFlow/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/digitalTwinBuilderFlow/swagger.json -------------------------------------------------------------------------------- /environment/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/definitions.json -------------------------------------------------------------------------------- /environment/examples/CreateEnvironment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/CreateEnvironment.json -------------------------------------------------------------------------------- /environment/examples/CreateEnvironmentWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/CreateEnvironmentWithoutDefinition.json -------------------------------------------------------------------------------- /environment/examples/DeleteCustomLibrary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/DeleteCustomLibrary.json -------------------------------------------------------------------------------- /environment/examples/DeleteCustomLibraryPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/DeleteCustomLibraryPreview.json -------------------------------------------------------------------------------- /environment/examples/DeleteEnvironment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/DeleteEnvironment.json -------------------------------------------------------------------------------- /environment/examples/DeleteStagingLibraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/DeleteStagingLibraries.json -------------------------------------------------------------------------------- /environment/examples/ExportPublishedExternalLibraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/ExportPublishedExternalLibraries.json -------------------------------------------------------------------------------- /environment/examples/ExportStagingExternalLibraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/ExportStagingExternalLibraries.json -------------------------------------------------------------------------------- /environment/examples/GetEnvironment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/GetEnvironment.json -------------------------------------------------------------------------------- /environment/examples/GetEnvironmentDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/GetEnvironmentDefinition.json -------------------------------------------------------------------------------- /environment/examples/GetEnvironmentPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/GetEnvironmentPreview.json -------------------------------------------------------------------------------- /environment/examples/GetEnvironmentSparkCompute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/GetEnvironmentSparkCompute.json -------------------------------------------------------------------------------- /environment/examples/GetEnvironmentSparkComputePreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/GetEnvironmentSparkComputePreview.json -------------------------------------------------------------------------------- /environment/examples/GetPublishedLibraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/GetPublishedLibraries.json -------------------------------------------------------------------------------- /environment/examples/GetPublishedLibrariesPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/GetPublishedLibrariesPreview.json -------------------------------------------------------------------------------- /environment/examples/GetStagingLibraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/GetStagingLibraries.json -------------------------------------------------------------------------------- /environment/examples/GetStagingLibrariesPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/GetStagingLibrariesPreview.json -------------------------------------------------------------------------------- /environment/examples/ImportExternalLibraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/ImportExternalLibraries.json -------------------------------------------------------------------------------- /environment/examples/ListEnvironmentsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/ListEnvironmentsInWorkspace.json -------------------------------------------------------------------------------- /environment/examples/PublishCancellation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/PublishCancellation.json -------------------------------------------------------------------------------- /environment/examples/PublishEnvironment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/PublishEnvironment.json -------------------------------------------------------------------------------- /environment/examples/PublishEnvironmentPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/PublishEnvironmentPreview.json -------------------------------------------------------------------------------- /environment/examples/RemoveExternalLibraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/RemoveExternalLibraries.json -------------------------------------------------------------------------------- /environment/examples/UpdateEnvironment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/UpdateEnvironment.json -------------------------------------------------------------------------------- /environment/examples/UpdateEnvironmentDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/UpdateEnvironmentDefinition.json -------------------------------------------------------------------------------- /environment/examples/UpdateEnvironmentSparkCompute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/UpdateEnvironmentSparkCompute.json -------------------------------------------------------------------------------- /environment/examples/UpdateEnvironmentSparkComputePreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/UpdateEnvironmentSparkComputePreview.json -------------------------------------------------------------------------------- /environment/examples/UploadCustomLibrary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/UploadCustomLibrary.json -------------------------------------------------------------------------------- /environment/examples/UploadCustomLibraryPreview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/UploadCustomLibraryPreview.json -------------------------------------------------------------------------------- /environment/examples/UploadStagingLibraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/examples/UploadStagingLibraries.json -------------------------------------------------------------------------------- /environment/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/environment/swagger.json -------------------------------------------------------------------------------- /eventhouse/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventhouse/definitions.json -------------------------------------------------------------------------------- /eventhouse/examples/CreateEventhouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventhouse/examples/CreateEventhouse.json -------------------------------------------------------------------------------- /eventhouse/examples/CreateEventhouseWithCreationPayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventhouse/examples/CreateEventhouseWithCreationPayload.json -------------------------------------------------------------------------------- /eventhouse/examples/CreateEventhouseWithDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventhouse/examples/CreateEventhouseWithDefinition.json -------------------------------------------------------------------------------- /eventhouse/examples/DeleteEventhouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventhouse/examples/DeleteEventhouse.json -------------------------------------------------------------------------------- /eventhouse/examples/GetEventhouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventhouse/examples/GetEventhouse.json -------------------------------------------------------------------------------- /eventhouse/examples/GetEventhouseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventhouse/examples/GetEventhouseDefinition.json -------------------------------------------------------------------------------- /eventhouse/examples/ListEventhousesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventhouse/examples/ListEventhousesInWorkspace.json -------------------------------------------------------------------------------- /eventhouse/examples/UpdateEventhouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventhouse/examples/UpdateEventhouse.json -------------------------------------------------------------------------------- /eventhouse/examples/UpdateEventhouseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventhouse/examples/UpdateEventhouseDefinition.json -------------------------------------------------------------------------------- /eventhouse/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventhouse/swagger.json -------------------------------------------------------------------------------- /eventstream/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/definitions.json -------------------------------------------------------------------------------- /eventstream/definitions/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/definitions/common.json -------------------------------------------------------------------------------- /eventstream/definitions/destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/definitions/destination.json -------------------------------------------------------------------------------- /eventstream/definitions/operator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/definitions/operator.json -------------------------------------------------------------------------------- /eventstream/definitions/operatorCommon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/definitions/operatorCommon.json -------------------------------------------------------------------------------- /eventstream/definitions/serialization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/definitions/serialization.json -------------------------------------------------------------------------------- /eventstream/definitions/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/definitions/source.json -------------------------------------------------------------------------------- /eventstream/definitions/stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/definitions/stream.json -------------------------------------------------------------------------------- /eventstream/definitions/topology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/definitions/topology.json -------------------------------------------------------------------------------- /eventstream/examples/CreateEventstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/CreateEventstream.json -------------------------------------------------------------------------------- /eventstream/examples/CreateEventstreamWithDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/CreateEventstreamWithDefinition.json -------------------------------------------------------------------------------- /eventstream/examples/DeleteEventstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/DeleteEventstream.json -------------------------------------------------------------------------------- /eventstream/examples/GetEventstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/GetEventstream.json -------------------------------------------------------------------------------- /eventstream/examples/GetEventstreamDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/GetEventstreamDefinition.json -------------------------------------------------------------------------------- /eventstream/examples/GetEventstreamDestination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/GetEventstreamDestination.json -------------------------------------------------------------------------------- /eventstream/examples/GetEventstreamDestinationConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/GetEventstreamDestinationConnection.json -------------------------------------------------------------------------------- /eventstream/examples/GetEventstreamSource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/GetEventstreamSource.json -------------------------------------------------------------------------------- /eventstream/examples/GetEventstreamSourceConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/GetEventstreamSourceConnection.json -------------------------------------------------------------------------------- /eventstream/examples/GetEventstreamTopology.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/GetEventstreamTopology.json -------------------------------------------------------------------------------- /eventstream/examples/ListEventstreamsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/ListEventstreamsInWorkspace.json -------------------------------------------------------------------------------- /eventstream/examples/PauseEventstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/PauseEventstream.json -------------------------------------------------------------------------------- /eventstream/examples/PauseEventstreamDestination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/PauseEventstreamDestination.json -------------------------------------------------------------------------------- /eventstream/examples/PauseEventstreamSource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/PauseEventstreamSource.json -------------------------------------------------------------------------------- /eventstream/examples/ResumeEventstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/ResumeEventstream.json -------------------------------------------------------------------------------- /eventstream/examples/ResumeEventstreamDestination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/ResumeEventstreamDestination.json -------------------------------------------------------------------------------- /eventstream/examples/ResumeEventstreamSource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/ResumeEventstreamSource.json -------------------------------------------------------------------------------- /eventstream/examples/UpdateEventstream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/UpdateEventstream.json -------------------------------------------------------------------------------- /eventstream/examples/UpdateEventstreamDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/examples/UpdateEventstreamDefinition.json -------------------------------------------------------------------------------- /eventstream/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/eventstream/swagger.json -------------------------------------------------------------------------------- /graphModel/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/definitions.json -------------------------------------------------------------------------------- /graphModel/examples/CreateGraphModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/examples/CreateGraphModel.json -------------------------------------------------------------------------------- /graphModel/examples/CreateGraphModelWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/examples/CreateGraphModelWithoutDefinition.json -------------------------------------------------------------------------------- /graphModel/examples/DeleteGraphModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/examples/DeleteGraphModel.json -------------------------------------------------------------------------------- /graphModel/examples/ExecuteQuery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/examples/ExecuteQuery.json -------------------------------------------------------------------------------- /graphModel/examples/GetGraphModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/examples/GetGraphModel.json -------------------------------------------------------------------------------- /graphModel/examples/GetGraphModelDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/examples/GetGraphModelDefinition.json -------------------------------------------------------------------------------- /graphModel/examples/GetQueryableGraphType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/examples/GetQueryableGraphType.json -------------------------------------------------------------------------------- /graphModel/examples/ListGraphModelsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/examples/ListGraphModelsInWorkspace.json -------------------------------------------------------------------------------- /graphModel/examples/RunOnDemandRefreshGraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/examples/RunOnDemandRefreshGraph.json -------------------------------------------------------------------------------- /graphModel/examples/UpdateGraphModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/examples/UpdateGraphModel.json -------------------------------------------------------------------------------- /graphModel/examples/UpdateGraphModelDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/examples/UpdateGraphModelDefinition.json -------------------------------------------------------------------------------- /graphModel/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphModel/swagger.json -------------------------------------------------------------------------------- /graphQLApi/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQLApi/definitions.json -------------------------------------------------------------------------------- /graphQLApi/examples/CreateGraphQLApi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQLApi/examples/CreateGraphQLApi.json -------------------------------------------------------------------------------- /graphQLApi/examples/CreateGraphQLApiWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQLApi/examples/CreateGraphQLApiWithoutDefinition.json -------------------------------------------------------------------------------- /graphQLApi/examples/DeleteGraphQLApi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQLApi/examples/DeleteGraphQLApi.json -------------------------------------------------------------------------------- /graphQLApi/examples/GetGraphQLApi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQLApi/examples/GetGraphQLApi.json -------------------------------------------------------------------------------- /graphQLApi/examples/GetGraphQLApiDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQLApi/examples/GetGraphQLApiDefinition.json -------------------------------------------------------------------------------- /graphQLApi/examples/ListGraphQLApisInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQLApi/examples/ListGraphQLApisInWorkspace.json -------------------------------------------------------------------------------- /graphQLApi/examples/UpdateGraphQLApi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQLApi/examples/UpdateGraphQLApi.json -------------------------------------------------------------------------------- /graphQLApi/examples/UpdateGraphQLApiDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQLApi/examples/UpdateGraphQLApiDefinition.json -------------------------------------------------------------------------------- /graphQLApi/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQLApi/swagger.json -------------------------------------------------------------------------------- /graphQuerySet/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQuerySet/definitions.json -------------------------------------------------------------------------------- /graphQuerySet/examples/CreateGraphQuerySet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQuerySet/examples/CreateGraphQuerySet.json -------------------------------------------------------------------------------- /graphQuerySet/examples/CreateGraphQuerySetWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQuerySet/examples/CreateGraphQuerySetWithoutDefinition.json -------------------------------------------------------------------------------- /graphQuerySet/examples/DeleteGraphQuerySet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQuerySet/examples/DeleteGraphQuerySet.json -------------------------------------------------------------------------------- /graphQuerySet/examples/GetGraphQuerySet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQuerySet/examples/GetGraphQuerySet.json -------------------------------------------------------------------------------- /graphQuerySet/examples/GetGraphQuerySetDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQuerySet/examples/GetGraphQuerySetDefinition.json -------------------------------------------------------------------------------- /graphQuerySet/examples/ListGraphQuerySetsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQuerySet/examples/ListGraphQuerySetsInWorkspace.json -------------------------------------------------------------------------------- /graphQuerySet/examples/UpdateGraphQuerySet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQuerySet/examples/UpdateGraphQuerySet.json -------------------------------------------------------------------------------- /graphQuerySet/examples/UpdateGraphQuerySetDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQuerySet/examples/UpdateGraphQuerySetDefinition.json -------------------------------------------------------------------------------- /graphQuerySet/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/graphQuerySet/swagger.json -------------------------------------------------------------------------------- /kqlDashboard/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDashboard/definitions.json -------------------------------------------------------------------------------- /kqlDashboard/examples/CreateKQLDashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDashboard/examples/CreateKQLDashboard.json -------------------------------------------------------------------------------- /kqlDashboard/examples/CreateKQLDashboardWithDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDashboard/examples/CreateKQLDashboardWithDefinition.json -------------------------------------------------------------------------------- /kqlDashboard/examples/DeleteKQLDashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDashboard/examples/DeleteKQLDashboard.json -------------------------------------------------------------------------------- /kqlDashboard/examples/GetKQLDashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDashboard/examples/GetKQLDashboard.json -------------------------------------------------------------------------------- /kqlDashboard/examples/GetKQLDashboardDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDashboard/examples/GetKQLDashboardDefinition.json -------------------------------------------------------------------------------- /kqlDashboard/examples/ListKQLDashboardsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDashboard/examples/ListKQLDashboardsInWorkspace.json -------------------------------------------------------------------------------- /kqlDashboard/examples/UpdateKQLDashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDashboard/examples/UpdateKQLDashboard.json -------------------------------------------------------------------------------- /kqlDashboard/examples/UpdateKQLDashboardDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDashboard/examples/UpdateKQLDashboardDefinition.json -------------------------------------------------------------------------------- /kqlDashboard/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDashboard/swagger.json -------------------------------------------------------------------------------- /kqlDatabase/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/definitions.json -------------------------------------------------------------------------------- /kqlDatabase/examples/CreateReadWriteKQLDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/examples/CreateReadWriteKQLDatabase.json -------------------------------------------------------------------------------- /kqlDatabase/examples/CreateReadWriteKQLDatabaseWithDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/examples/CreateReadWriteKQLDatabaseWithDefinition.json -------------------------------------------------------------------------------- /kqlDatabase/examples/CreateShortcutKQLDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/examples/CreateShortcutKQLDatabase.json -------------------------------------------------------------------------------- /kqlDatabase/examples/CreateShortcutKQLDatabaseToAdx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/examples/CreateShortcutKQLDatabaseToAdx.json -------------------------------------------------------------------------------- /kqlDatabase/examples/DeleteKQLDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/examples/DeleteKQLDatabase.json -------------------------------------------------------------------------------- /kqlDatabase/examples/GetKQLDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/examples/GetKQLDatabase.json -------------------------------------------------------------------------------- /kqlDatabase/examples/GetReadWriteKQLDatabaseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/examples/GetReadWriteKQLDatabaseDefinition.json -------------------------------------------------------------------------------- /kqlDatabase/examples/ListKQLDatabasesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/examples/ListKQLDatabasesInWorkspace.json -------------------------------------------------------------------------------- /kqlDatabase/examples/UpdateKQLDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/examples/UpdateKQLDatabase.json -------------------------------------------------------------------------------- /kqlDatabase/examples/UpdateReadWriteKQLDatabaseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/examples/UpdateReadWriteKQLDatabaseDefinition.json -------------------------------------------------------------------------------- /kqlDatabase/owners.txt: -------------------------------------------------------------------------------- 1 | michaelshikh 2 | oren.hasbani 3 | vberzin -------------------------------------------------------------------------------- /kqlDatabase/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlDatabase/swagger.json -------------------------------------------------------------------------------- /kqlQueryset/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlQueryset/definitions.json -------------------------------------------------------------------------------- /kqlQueryset/examples/CreateKQLQueryset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlQueryset/examples/CreateKQLQueryset.json -------------------------------------------------------------------------------- /kqlQueryset/examples/CreateKQLQuerysetWithDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlQueryset/examples/CreateKQLQuerysetWithDefinition.json -------------------------------------------------------------------------------- /kqlQueryset/examples/DeleteKQLQueryset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlQueryset/examples/DeleteKQLQueryset.json -------------------------------------------------------------------------------- /kqlQueryset/examples/GetKQLQueryset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlQueryset/examples/GetKQLQueryset.json -------------------------------------------------------------------------------- /kqlQueryset/examples/GetKQLQuerysetDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlQueryset/examples/GetKQLQuerysetDefinition.json -------------------------------------------------------------------------------- /kqlQueryset/examples/ListKQLQuerysetsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlQueryset/examples/ListKQLQuerysetsInWorkspace.json -------------------------------------------------------------------------------- /kqlQueryset/examples/UpdateKQLQueryset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlQueryset/examples/UpdateKQLQueryset.json -------------------------------------------------------------------------------- /kqlQueryset/examples/UpdateKQLQuerysetDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlQueryset/examples/UpdateKQLQuerysetDefinition.json -------------------------------------------------------------------------------- /kqlQueryset/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/kqlQueryset/swagger.json -------------------------------------------------------------------------------- /lakehouse/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/definitions.json -------------------------------------------------------------------------------- /lakehouse/examples/CreateLakehouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/CreateLakehouse.json -------------------------------------------------------------------------------- /lakehouse/examples/CreateLakehouseWithPayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/CreateLakehouseWithPayload.json -------------------------------------------------------------------------------- /lakehouse/examples/DeleteLakehouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/DeleteLakehouse.json -------------------------------------------------------------------------------- /lakehouse/examples/GetLakehouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/GetLakehouse.json -------------------------------------------------------------------------------- /lakehouse/examples/GetLakehouseWithSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/GetLakehouseWithSchema.json -------------------------------------------------------------------------------- /lakehouse/examples/GetSessionInItemId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/GetSessionInItemId.json -------------------------------------------------------------------------------- /lakehouse/examples/ListLakehousesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/ListLakehousesInWorkspace.json -------------------------------------------------------------------------------- /lakehouse/examples/ListSessionsInItemId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/ListSessionsInItemId.json -------------------------------------------------------------------------------- /lakehouse/examples/ListSessionsInItemId_preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/ListSessionsInItemId_preview.json -------------------------------------------------------------------------------- /lakehouse/examples/ListTables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/ListTables.json -------------------------------------------------------------------------------- /lakehouse/examples/LoadTableOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/LoadTableOperation.json -------------------------------------------------------------------------------- /lakehouse/examples/RunOnDemandRefreshMaterializedLakeViewsNoBody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/RunOnDemandRefreshMaterializedLakeViewsNoBody.json -------------------------------------------------------------------------------- /lakehouse/examples/RunOnDemandTableMaintenance1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/RunOnDemandTableMaintenance1.json -------------------------------------------------------------------------------- /lakehouse/examples/RunOnDemandTableMaintenance2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/RunOnDemandTableMaintenance2.json -------------------------------------------------------------------------------- /lakehouse/examples/UpdateLakehouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/examples/UpdateLakehouse.json -------------------------------------------------------------------------------- /lakehouse/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/lakehouse/swagger.json -------------------------------------------------------------------------------- /map/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/map/definitions.json -------------------------------------------------------------------------------- /map/examples/CreateMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/map/examples/CreateMap.json -------------------------------------------------------------------------------- /map/examples/CreateMapWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/map/examples/CreateMapWithoutDefinition.json -------------------------------------------------------------------------------- /map/examples/DeleteMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/map/examples/DeleteMap.json -------------------------------------------------------------------------------- /map/examples/GetMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/map/examples/GetMap.json -------------------------------------------------------------------------------- /map/examples/GetMapDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/map/examples/GetMapDefinition.json -------------------------------------------------------------------------------- /map/examples/ListMapsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/map/examples/ListMapsInWorkspace.json -------------------------------------------------------------------------------- /map/examples/UpdateMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/map/examples/UpdateMap.json -------------------------------------------------------------------------------- /map/examples/UpdateMapDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/map/examples/UpdateMapDefinition.json -------------------------------------------------------------------------------- /map/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/map/swagger.json -------------------------------------------------------------------------------- /mirroredAzureDatabricksCatalog/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredAzureDatabricksCatalog/definitions.json -------------------------------------------------------------------------------- /mirroredAzureDatabricksCatalog/examples/GetDatabricksCatalogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredAzureDatabricksCatalog/examples/GetDatabricksCatalogs.json -------------------------------------------------------------------------------- /mirroredAzureDatabricksCatalog/examples/GetDatabricksSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredAzureDatabricksCatalog/examples/GetDatabricksSchemas.json -------------------------------------------------------------------------------- /mirroredAzureDatabricksCatalog/examples/GetDatabricksTables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredAzureDatabricksCatalog/examples/GetDatabricksTables.json -------------------------------------------------------------------------------- /mirroredAzureDatabricksCatalog/examples/RefreshCatalogMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredAzureDatabricksCatalog/examples/RefreshCatalogMetadata.json -------------------------------------------------------------------------------- /mirroredAzureDatabricksCatalog/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredAzureDatabricksCatalog/swagger.json -------------------------------------------------------------------------------- /mirroredDatabase/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/definitions.json -------------------------------------------------------------------------------- /mirroredDatabase/examples/CreateMirroredDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/examples/CreateMirroredDatabase.json -------------------------------------------------------------------------------- /mirroredDatabase/examples/DeleteMirroredDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/examples/DeleteMirroredDatabase.json -------------------------------------------------------------------------------- /mirroredDatabase/examples/GetMirroredDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/examples/GetMirroredDatabase.json -------------------------------------------------------------------------------- /mirroredDatabase/examples/GetMirroredDatabaseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/examples/GetMirroredDatabaseDefinition.json -------------------------------------------------------------------------------- /mirroredDatabase/examples/GetMirroringStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/examples/GetMirroringStatus.json -------------------------------------------------------------------------------- /mirroredDatabase/examples/GetTablesMirroringStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/examples/GetTablesMirroringStatus.json -------------------------------------------------------------------------------- /mirroredDatabase/examples/ListMirroredDatabasesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/examples/ListMirroredDatabasesInWorkspace.json -------------------------------------------------------------------------------- /mirroredDatabase/examples/StartMirroring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/examples/StartMirroring.json -------------------------------------------------------------------------------- /mirroredDatabase/examples/StopMirroring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/examples/StopMirroring.json -------------------------------------------------------------------------------- /mirroredDatabase/examples/UpdateMirroredDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/examples/UpdateMirroredDatabase.json -------------------------------------------------------------------------------- /mirroredDatabase/examples/UpdateMirroredDatabaseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/examples/UpdateMirroredDatabaseDefinition.json -------------------------------------------------------------------------------- /mirroredDatabase/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredDatabase/swagger.json -------------------------------------------------------------------------------- /mirroredWarehouse/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredWarehouse/definitions.json -------------------------------------------------------------------------------- /mirroredWarehouse/examples/ListMirroredWarehousesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredWarehouse/examples/ListMirroredWarehousesInWorkspace.json -------------------------------------------------------------------------------- /mirroredWarehouse/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mirroredWarehouse/swagger.json -------------------------------------------------------------------------------- /mlExperiment/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlExperiment/definitions.json -------------------------------------------------------------------------------- /mlExperiment/examples/CreateMLExperiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlExperiment/examples/CreateMLExperiment.json -------------------------------------------------------------------------------- /mlExperiment/examples/DeleteMLExperiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlExperiment/examples/DeleteMLExperiment.json -------------------------------------------------------------------------------- /mlExperiment/examples/GetMLExperiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlExperiment/examples/GetMLExperiment.json -------------------------------------------------------------------------------- /mlExperiment/examples/ListMLExperimentsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlExperiment/examples/ListMLExperimentsInWorkspace.json -------------------------------------------------------------------------------- /mlExperiment/examples/UpdateMLExperiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlExperiment/examples/UpdateMLExperiment.json -------------------------------------------------------------------------------- /mlExperiment/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlExperiment/swagger.json -------------------------------------------------------------------------------- /mlModel/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/definitions.json -------------------------------------------------------------------------------- /mlModel/examples/ActivateMLModelEndpointVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/ActivateMLModelEndpointVersion.json -------------------------------------------------------------------------------- /mlModel/examples/CreateMLModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/CreateMLModel.json -------------------------------------------------------------------------------- /mlModel/examples/DeactivateMLModelEndpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/DeactivateMLModelEndpoint.json -------------------------------------------------------------------------------- /mlModel/examples/DeactivateMLModelEndpointVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/DeactivateMLModelEndpointVersion.json -------------------------------------------------------------------------------- /mlModel/examples/DeleteMLModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/DeleteMLModel.json -------------------------------------------------------------------------------- /mlModel/examples/GetMLModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/GetMLModel.json -------------------------------------------------------------------------------- /mlModel/examples/GetMLModelEndpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/GetMLModelEndpoint.json -------------------------------------------------------------------------------- /mlModel/examples/GetMLModelEndpointVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/GetMLModelEndpointVersion.json -------------------------------------------------------------------------------- /mlModel/examples/GetMLModelEndpointVersionWithFailureDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/GetMLModelEndpointVersionWithFailureDetails.json -------------------------------------------------------------------------------- /mlModel/examples/GetMLModelEndpointWithFailureDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/GetMLModelEndpointWithFailureDetails.json -------------------------------------------------------------------------------- /mlModel/examples/ListMLModelEndpointVersions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/ListMLModelEndpointVersions.json -------------------------------------------------------------------------------- /mlModel/examples/ListMLModelsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/ListMLModelsInWorkspace.json -------------------------------------------------------------------------------- /mlModel/examples/ScoreMLModelEndpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/ScoreMLModelEndpoint.json -------------------------------------------------------------------------------- /mlModel/examples/ScoreMLModelEndpointVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/ScoreMLModelEndpointVersion.json -------------------------------------------------------------------------------- /mlModel/examples/UpdateMLModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/UpdateMLModel.json -------------------------------------------------------------------------------- /mlModel/examples/UpdateMLModelEndpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/UpdateMLModelEndpoint.json -------------------------------------------------------------------------------- /mlModel/examples/UpdateMLModelEndpointVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/UpdateMLModelEndpointVersion.json -------------------------------------------------------------------------------- /mlModel/examples/UpdateMLModelEndpointVersionWithFailureDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/UpdateMLModelEndpointVersionWithFailureDetails.json -------------------------------------------------------------------------------- /mlModel/examples/UpdateMLModelEndpointWithFailureDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/examples/UpdateMLModelEndpointWithFailureDetails.json -------------------------------------------------------------------------------- /mlModel/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mlModel/swagger.json -------------------------------------------------------------------------------- /mountedDataFactory/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mountedDataFactory/definitions.json -------------------------------------------------------------------------------- /mountedDataFactory/examples/CreateMountedDataFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mountedDataFactory/examples/CreateMountedDataFactory.json -------------------------------------------------------------------------------- /mountedDataFactory/examples/DeleteMountedDataFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mountedDataFactory/examples/DeleteMountedDataFactory.json -------------------------------------------------------------------------------- /mountedDataFactory/examples/GetMountedDataFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mountedDataFactory/examples/GetMountedDataFactory.json -------------------------------------------------------------------------------- /mountedDataFactory/examples/GetMountedDataFactoryDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mountedDataFactory/examples/GetMountedDataFactoryDefinition.json -------------------------------------------------------------------------------- /mountedDataFactory/examples/ListMountedDataFactoriesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mountedDataFactory/examples/ListMountedDataFactoriesInWorkspace.json -------------------------------------------------------------------------------- /mountedDataFactory/examples/UpdateMountedDataFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mountedDataFactory/examples/UpdateMountedDataFactory.json -------------------------------------------------------------------------------- /mountedDataFactory/examples/UpdateMountedDataFactoryDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mountedDataFactory/examples/UpdateMountedDataFactoryDefinition.json -------------------------------------------------------------------------------- /mountedDataFactory/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/mountedDataFactory/swagger.json -------------------------------------------------------------------------------- /notebook/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/definitions.json -------------------------------------------------------------------------------- /notebook/examples/CreateNotebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/CreateNotebook.json -------------------------------------------------------------------------------- /notebook/examples/CreateNotebookWithFabricGitSource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/CreateNotebookWithFabricGitSource.json -------------------------------------------------------------------------------- /notebook/examples/CreateNotebookWithIpynb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/CreateNotebookWithIpynb.json -------------------------------------------------------------------------------- /notebook/examples/CreateNotebookWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/CreateNotebookWithoutDefinition.json -------------------------------------------------------------------------------- /notebook/examples/DeleteNotebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/DeleteNotebook.json -------------------------------------------------------------------------------- /notebook/examples/GetNotebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/GetNotebook.json -------------------------------------------------------------------------------- /notebook/examples/GetNotebookDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/GetNotebookDefinition.json -------------------------------------------------------------------------------- /notebook/examples/GetNotebookDefinitionWithFabricGitSource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/GetNotebookDefinitionWithFabricGitSource.json -------------------------------------------------------------------------------- /notebook/examples/GetNotebookDefinitionWithIpynb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/GetNotebookDefinitionWithIpynb.json -------------------------------------------------------------------------------- /notebook/examples/GetSessionInItemId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/GetSessionInItemId.json -------------------------------------------------------------------------------- /notebook/examples/ListNotebooksInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/ListNotebooksInWorkspace.json -------------------------------------------------------------------------------- /notebook/examples/ListSessionsInItemId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/ListSessionsInItemId.json -------------------------------------------------------------------------------- /notebook/examples/ListSessionsInItemId_preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/ListSessionsInItemId_preview.json -------------------------------------------------------------------------------- /notebook/examples/UpdateNotebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/UpdateNotebook.json -------------------------------------------------------------------------------- /notebook/examples/UpdateNotebookDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/UpdateNotebookDefinition.json -------------------------------------------------------------------------------- /notebook/examples/UpdateNotebookDefinitionWithFabricGitSource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/UpdateNotebookDefinitionWithFabricGitSource.json -------------------------------------------------------------------------------- /notebook/examples/UpdateNotebookDefinitionWithIpynb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/examples/UpdateNotebookDefinitionWithIpynb.json -------------------------------------------------------------------------------- /notebook/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/notebook/swagger.json -------------------------------------------------------------------------------- /operationsAgent/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/operationsAgent/definitions.json -------------------------------------------------------------------------------- /operationsAgent/examples/CreateOperationsAgent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/operationsAgent/examples/CreateOperationsAgent.json -------------------------------------------------------------------------------- /operationsAgent/examples/CreateOperationsAgentWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/operationsAgent/examples/CreateOperationsAgentWithoutDefinition.json -------------------------------------------------------------------------------- /operationsAgent/examples/DeleteOperationsAgent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/operationsAgent/examples/DeleteOperationsAgent.json -------------------------------------------------------------------------------- /operationsAgent/examples/GetOperationsAgent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/operationsAgent/examples/GetOperationsAgent.json -------------------------------------------------------------------------------- /operationsAgent/examples/GetOperationsAgentDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/operationsAgent/examples/GetOperationsAgentDefinition.json -------------------------------------------------------------------------------- /operationsAgent/examples/ListOperationsAgentsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/operationsAgent/examples/ListOperationsAgentsInWorkspace.json -------------------------------------------------------------------------------- /operationsAgent/examples/UpdateOperationsAgent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/operationsAgent/examples/UpdateOperationsAgent.json -------------------------------------------------------------------------------- /operationsAgent/examples/UpdateOperationsAgentDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/operationsAgent/examples/UpdateOperationsAgentDefinition.json -------------------------------------------------------------------------------- /operationsAgent/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/operationsAgent/swagger.json -------------------------------------------------------------------------------- /paginatedReport/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/paginatedReport/definitions.json -------------------------------------------------------------------------------- /paginatedReport/examples/ListPaginatedReportsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/paginatedReport/examples/ListPaginatedReportsInWorkspace.json -------------------------------------------------------------------------------- /paginatedReport/examples/UpdatePaginatedReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/paginatedReport/examples/UpdatePaginatedReport.json -------------------------------------------------------------------------------- /paginatedReport/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/paginatedReport/swagger.json -------------------------------------------------------------------------------- /platform/definitions/connections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/definitions/connections.json -------------------------------------------------------------------------------- /platform/definitions/deploymentPipelines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/definitions/deploymentPipelines.json -------------------------------------------------------------------------------- /platform/definitions/externaldatasharing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/definitions/externaldatasharing.json -------------------------------------------------------------------------------- /platform/definitions/gateways.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/definitions/gateways.json -------------------------------------------------------------------------------- /platform/definitions/gitIntegration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/definitions/gitIntegration.json -------------------------------------------------------------------------------- /platform/definitions/managedPrivateEndpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/definitions/managedPrivateEndpoint.json -------------------------------------------------------------------------------- /platform/definitions/platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/definitions/platform.json -------------------------------------------------------------------------------- /platform/definitions/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/definitions/tags.json -------------------------------------------------------------------------------- /platform/definitions/workspaceNetworkingPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/definitions/workspaceNetworkingPolicy.json -------------------------------------------------------------------------------- /platform/examples/connections/AddConnectionRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/AddConnectionRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/connections/CreateCloudConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/CreateCloudConnection.json -------------------------------------------------------------------------------- /platform/examples/connections/CreateOnPremisesGatewayConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/CreateOnPremisesGatewayConnection.json -------------------------------------------------------------------------------- /platform/examples/connections/DeleteConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/DeleteConnection.json -------------------------------------------------------------------------------- /platform/examples/connections/DeleteConnectionRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/DeleteConnectionRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/connections/GetConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/GetConnection.json -------------------------------------------------------------------------------- /platform/examples/connections/GetConnectionRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/GetConnectionRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/connections/ListConnectionRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/ListConnectionRoleAssignments.json -------------------------------------------------------------------------------- /platform/examples/connections/ListConnections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/ListConnections.json -------------------------------------------------------------------------------- /platform/examples/connections/ListSupportedConnectionTypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/ListSupportedConnectionTypes.json -------------------------------------------------------------------------------- /platform/examples/connections/UpdateConnectionRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/UpdateConnectionRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/connections/UpdateOnPremisesGatewayConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/UpdateOnPremisesGatewayConnection.json -------------------------------------------------------------------------------- /platform/examples/connections/UpdatePersonalCloudConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/UpdatePersonalCloudConnection.json -------------------------------------------------------------------------------- /platform/examples/connections/UpdateShareableCloudConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/connections/UpdateShareableCloudConnection.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/AddGroupRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/AddGroupRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/AddUserRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/AddUserRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/AssignWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/AssignWorkspace.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/AssignWorkspaceToStage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/AssignWorkspaceToStage.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/CreateDeploymentPipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/CreateDeploymentPipeline.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/CreatePipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/CreatePipeline.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/DeleteDeploymentPipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/DeleteDeploymentPipeline.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/DeletePipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/DeletePipeline.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/DeployAll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/DeployAll.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/GetDeploymentPipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/GetDeploymentPipeline.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/GetDeploymentPipelineStage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/GetDeploymentPipelineStage.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/GetPipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/GetPipeline.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/GetPipelineOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/GetPipelineOperation.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/GetPipelineOperations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/GetPipelineOperations.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/GetPipelineUsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/GetPipelineUsers.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/ListDeploymentPipelines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/ListDeploymentPipelines.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/ListPipelineStageItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/ListPipelineStageItems.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/ListPipelineStages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/ListPipelineStages.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/ListPipelines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/ListPipelines.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/SelectiveDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/SelectiveDeploy.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/UnassignWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/UnassignWorkspace.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/UnassignWorkspaceFromStage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/UnassignWorkspaceFromStage.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/UpdateDeploymentPipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/UpdateDeploymentPipeline.json -------------------------------------------------------------------------------- /platform/examples/deploymentPipelines/UpdatePipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/deploymentPipelines/UpdatePipeline.json -------------------------------------------------------------------------------- /platform/examples/domains/GetDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/domains/GetDomain.json -------------------------------------------------------------------------------- /platform/examples/domains/ListDomains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/domains/ListDomains.json -------------------------------------------------------------------------------- /platform/examples/domains/ListDomainsWithContinuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/domains/ListDomainsWithContinuation.json -------------------------------------------------------------------------------- /platform/examples/externaldatasharing/CreateExternalDataShare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/externaldatasharing/CreateExternalDataShare.json -------------------------------------------------------------------------------- /platform/examples/externaldatasharing/DeleteExternalDataShare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/externaldatasharing/DeleteExternalDataShare.json -------------------------------------------------------------------------------- /platform/examples/externaldatasharing/GetExternalDataShare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/externaldatasharing/GetExternalDataShare.json -------------------------------------------------------------------------------- /platform/examples/externaldatasharing/RevokeExternalDataShare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/externaldatasharing/RevokeExternalDataShare.json -------------------------------------------------------------------------------- /platform/examples/gateways/AddGatewayRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/AddGatewayRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/gateways/CreateVirtualNetworkGateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/CreateVirtualNetworkGateway.json -------------------------------------------------------------------------------- /platform/examples/gateways/DeleteGateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/DeleteGateway.json -------------------------------------------------------------------------------- /platform/examples/gateways/DeleteGatewayMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/DeleteGatewayMember.json -------------------------------------------------------------------------------- /platform/examples/gateways/DeleteGatewayRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/DeleteGatewayRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/gateways/GetGateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/GetGateway.json -------------------------------------------------------------------------------- /platform/examples/gateways/GetGatewayRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/GetGatewayRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/gateways/ListGatewayMembers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/ListGatewayMembers.json -------------------------------------------------------------------------------- /platform/examples/gateways/ListGatewayRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/ListGatewayRoleAssignments.json -------------------------------------------------------------------------------- /platform/examples/gateways/ListGateways.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/ListGateways.json -------------------------------------------------------------------------------- /platform/examples/gateways/UpdateGatewayMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/UpdateGatewayMember.json -------------------------------------------------------------------------------- /platform/examples/gateways/UpdateGatewayRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/UpdateGatewayRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/gateways/UpdateOnPremisesGateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/UpdateOnPremisesGateway.json -------------------------------------------------------------------------------- /platform/examples/gateways/UpdateVirtualNetworkGateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gateways/UpdateVirtualNetworkGateway.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/CommitToGit_All.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/CommitToGit_All.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/CommitToGit_Selective.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/CommitToGit_Selective.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/ConnectToAzureDevOps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/ConnectToAzureDevOps.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/ConnectToGitHub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/ConnectToGitHub.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/Disconnect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/Disconnect.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/GetConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/GetConnection.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/GetConnection_NotConnected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/GetConnection_NotConnected.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/GetMyGitCredentials_Automatic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/GetMyGitCredentials_Automatic.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/GetMyGitCredentials_None.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/GetMyGitCredentials_None.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/GetStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/GetStatus.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/GetStatus_Conflict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/GetStatus_Conflict.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/GetStatus_NoChanges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/GetStatus_NoChanges.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/InitializeConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/InitializeConnection.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/UpdateFromGit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/UpdateFromGit.json -------------------------------------------------------------------------------- /platform/examples/gitIntegration/UpdateMyGitCredentials_ToNone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/gitIntegration/UpdateMyGitCredentials_ToNone.json -------------------------------------------------------------------------------- /platform/examples/platform/AddWorkspaceRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/AddWorkspaceRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/platform/ApplyTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ApplyTags.json -------------------------------------------------------------------------------- /platform/examples/platform/AssignWorkspaceToCapacity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/AssignWorkspaceToCapacity.json -------------------------------------------------------------------------------- /platform/examples/platform/AssignWorkspaceToDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/AssignWorkspaceToDomain.json -------------------------------------------------------------------------------- /platform/examples/platform/BulkMoveItemsIntoFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/BulkMoveItemsIntoFolder.json -------------------------------------------------------------------------------- /platform/examples/platform/CancelItemJobInstance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CancelItemJobInstance.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateFolderUnderAnotherFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateFolderUnderAnotherFolder.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateItemInFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateItemInFolder.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateItemRequiredOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateItemRequiredOnly.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateItemSchedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateItemSchedule.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateOrOverwriteShortcutOneLakeTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateOrOverwriteShortcutOneLakeTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateOrUpdateDataAccessRolesExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateOrUpdateDataAccessRolesExample.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateShortcutAdlsGen2Target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateShortcutAdlsGen2Target.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateShortcutAmazonS3Target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateShortcutAmazonS3Target.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateShortcutAzureBlobStorageTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateShortcutAzureBlobStorageTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateShortcutGoogleCloudStorageTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateShortcutGoogleCloudStorageTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateShortcutOneDriveSharePointTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateShortcutOneDriveSharePointTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateShortcutOneLakeTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateShortcutOneLakeTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateShortcutS3CompatibleTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateShortcutS3CompatibleTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/CreateWorkspaceRequiredOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/CreateWorkspaceRequiredOnly.json -------------------------------------------------------------------------------- /platform/examples/platform/DeleteFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/DeleteFolder.json -------------------------------------------------------------------------------- /platform/examples/platform/DeleteItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/DeleteItem.json -------------------------------------------------------------------------------- /platform/examples/platform/DeleteItemSchedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/DeleteItemSchedule.json -------------------------------------------------------------------------------- /platform/examples/platform/DeleteShortcutOneLakeTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/DeleteShortcutOneLakeTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/DeleteWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/DeleteWorkspace.json -------------------------------------------------------------------------------- /platform/examples/platform/DeleteWorkspaceRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/DeleteWorkspaceRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/platform/DeprovisionWorkspaceIdentity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/DeprovisionWorkspaceIdentity.json -------------------------------------------------------------------------------- /platform/examples/platform/GetFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetFolder.json -------------------------------------------------------------------------------- /platform/examples/platform/GetItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetItem.json -------------------------------------------------------------------------------- /platform/examples/platform/GetItemDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetItemDefinition.json -------------------------------------------------------------------------------- /platform/examples/platform/GetItemJobInstance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetItemJobInstance.json -------------------------------------------------------------------------------- /platform/examples/platform/GetItemSchedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetItemSchedule.json -------------------------------------------------------------------------------- /platform/examples/platform/GetLongRunningOperationResult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetLongRunningOperationResult.json -------------------------------------------------------------------------------- /platform/examples/platform/GetLongRunningOperationStateCompleted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetLongRunningOperationStateCompleted.json -------------------------------------------------------------------------------- /platform/examples/platform/GetLongRunningOperationStateRunning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetLongRunningOperationStateRunning.json -------------------------------------------------------------------------------- /platform/examples/platform/GetShortcutAzureBlobStorageTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetShortcutAzureBlobStorageTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/GetShortcutExternalDataShareTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetShortcutExternalDataShareTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/GetShortcutGoogleCloudStorageTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetShortcutGoogleCloudStorageTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/GetShortcutOneDriveSharePointTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetShortcutOneDriveSharePointTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/GetShortcutOneLakeTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetShortcutOneLakeTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/GetShortcutS3CompatibleTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetShortcutS3CompatibleTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/GetShortcutTransformOneLakeTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetShortcutTransformOneLakeTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/GetWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetWorkspace.json -------------------------------------------------------------------------------- /platform/examples/platform/GetWorkspaceOutboundConnections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetWorkspaceOutboundConnections.json -------------------------------------------------------------------------------- /platform/examples/platform/GetWorkspaceOutboundGateways.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetWorkspaceOutboundGateways.json -------------------------------------------------------------------------------- /platform/examples/platform/GetWorkspaceRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetWorkspaceRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/platform/GetWorkspaceRoleAssignments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/GetWorkspaceRoleAssignments.json -------------------------------------------------------------------------------- /platform/examples/platform/ListAllFoldersInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListAllFoldersInWorkspace.json -------------------------------------------------------------------------------- /platform/examples/platform/ListAllItemsInFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListAllItemsInFolder.json -------------------------------------------------------------------------------- /platform/examples/platform/ListCapacities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListCapacities.json -------------------------------------------------------------------------------- /platform/examples/platform/ListCapacitiesWithContinuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListCapacitiesWithContinuation.json -------------------------------------------------------------------------------- /platform/examples/platform/ListDataAccessRolesSinglePageExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListDataAccessRolesSinglePageExample.json -------------------------------------------------------------------------------- /platform/examples/platform/ListDefaultDataAccessRolesExample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListDefaultDataAccessRolesExample.json -------------------------------------------------------------------------------- /platform/examples/platform/ListDirectItemsInFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListDirectItemsInFolder.json -------------------------------------------------------------------------------- /platform/examples/platform/ListDirectItemsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListDirectItemsInWorkspace.json -------------------------------------------------------------------------------- /platform/examples/platform/ListFoldersInWorkspaceWithContinuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListFoldersInWorkspaceWithContinuation.json -------------------------------------------------------------------------------- /platform/examples/platform/ListItemConnections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListItemConnections.json -------------------------------------------------------------------------------- /platform/examples/platform/ListItemConnectionsVirtualConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListItemConnectionsVirtualConnection.json -------------------------------------------------------------------------------- /platform/examples/platform/ListItemConnectionsWithContinuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListItemConnectionsWithContinuation.json -------------------------------------------------------------------------------- /platform/examples/platform/ListItemJobInstances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListItemJobInstances.json -------------------------------------------------------------------------------- /platform/examples/platform/ListItemJobInstancesWithContinuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListItemJobInstancesWithContinuation.json -------------------------------------------------------------------------------- /platform/examples/platform/ListItemSchedules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListItemSchedules.json -------------------------------------------------------------------------------- /platform/examples/platform/ListItemsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListItemsInWorkspace.json -------------------------------------------------------------------------------- /platform/examples/platform/ListItemsInWorkspaceByType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListItemsInWorkspaceByType.json -------------------------------------------------------------------------------- /platform/examples/platform/ListItemsInWorkspaceWithContinuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListItemsInWorkspaceWithContinuation.json -------------------------------------------------------------------------------- /platform/examples/platform/ListShortcuts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListShortcuts.json -------------------------------------------------------------------------------- /platform/examples/platform/ListShortcutsWithContinuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListShortcutsWithContinuation.json -------------------------------------------------------------------------------- /platform/examples/platform/ListShortcutsWithShortcutTransforms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListShortcutsWithShortcutTransforms.json -------------------------------------------------------------------------------- /platform/examples/platform/ListWorkspaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListWorkspaces.json -------------------------------------------------------------------------------- /platform/examples/platform/ListWorkspacesWithContinuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListWorkspacesWithContinuation.json -------------------------------------------------------------------------------- /platform/examples/platform/ListWorkspacesWithWorkspaceRoleFilter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ListWorkspacesWithWorkspaceRoleFilter.json -------------------------------------------------------------------------------- /platform/examples/platform/ModifyOneLakeDiagnosticSettingCreate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ModifyOneLakeDiagnosticSettingCreate.json -------------------------------------------------------------------------------- /platform/examples/platform/ModifyOneLakeDiagnosticSettingDisable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ModifyOneLakeDiagnosticSettingDisable.json -------------------------------------------------------------------------------- /platform/examples/platform/ModifyOneLakeDiagnosticSettingRemove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ModifyOneLakeDiagnosticSettingRemove.json -------------------------------------------------------------------------------- /platform/examples/platform/ModifyOneLakeDiagnosticSettingReplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ModifyOneLakeDiagnosticSettingReplace.json -------------------------------------------------------------------------------- /platform/examples/platform/MoveFolderIntoAnotherFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/MoveFolderIntoAnotherFolder.json -------------------------------------------------------------------------------- /platform/examples/platform/MoveFolderWithWorkspaceAsDestination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/MoveFolderWithWorkspaceAsDestination.json -------------------------------------------------------------------------------- /platform/examples/platform/MoveItemIntoFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/MoveItemIntoFolder.json -------------------------------------------------------------------------------- /platform/examples/platform/MoveItemWithWorkspaceAsDestination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/MoveItemWithWorkspaceAsDestination.json -------------------------------------------------------------------------------- /platform/examples/platform/OverwriteShortcutOneLakeTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/OverwriteShortcutOneLakeTarget.json -------------------------------------------------------------------------------- /platform/examples/platform/ProvisionWorkspaceIdentity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ProvisionWorkspaceIdentity.json -------------------------------------------------------------------------------- /platform/examples/platform/ResetShortcutCache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/ResetShortcutCache.json -------------------------------------------------------------------------------- /platform/examples/platform/RunOnDemandItemJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/RunOnDemandItemJob.json -------------------------------------------------------------------------------- /platform/examples/platform/RunOnDemandItemJob2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/RunOnDemandItemJob2.json -------------------------------------------------------------------------------- /platform/examples/platform/SetWorkspaceOutboundConnections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/SetWorkspaceOutboundConnections.json -------------------------------------------------------------------------------- /platform/examples/platform/SetWorkspaceOutboundGateways.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/SetWorkspaceOutboundGateways.json -------------------------------------------------------------------------------- /platform/examples/platform/UnapplyTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/UnapplyTags.json -------------------------------------------------------------------------------- /platform/examples/platform/UnassignWorkspaceFromCapacity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/UnassignWorkspaceFromCapacity.json -------------------------------------------------------------------------------- /platform/examples/platform/UnassignWorkspaceFromDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/UnassignWorkspaceFromDomain.json -------------------------------------------------------------------------------- /platform/examples/platform/UpdateFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/UpdateFolder.json -------------------------------------------------------------------------------- /platform/examples/platform/UpdateItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/UpdateItem.json -------------------------------------------------------------------------------- /platform/examples/platform/UpdateItemDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/UpdateItemDefinition.json -------------------------------------------------------------------------------- /platform/examples/platform/UpdateItemSchedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/UpdateItemSchedule.json -------------------------------------------------------------------------------- /platform/examples/platform/UpdateWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/UpdateWorkspace.json -------------------------------------------------------------------------------- /platform/examples/platform/UpdateWorkspaceRoleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/platform/UpdateWorkspaceRoleAssignment.json -------------------------------------------------------------------------------- /platform/examples/tags/ListTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/tags/ListTags.json -------------------------------------------------------------------------------- /platform/examples/tags/ListTagsWithContinuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/examples/tags/ListTagsWithContinuation.json -------------------------------------------------------------------------------- /platform/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/platform/swagger.json -------------------------------------------------------------------------------- /reflex/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/reflex/definitions.json -------------------------------------------------------------------------------- /reflex/examples/CreateReflex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/reflex/examples/CreateReflex.json -------------------------------------------------------------------------------- /reflex/examples/CreateReflexWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/reflex/examples/CreateReflexWithoutDefinition.json -------------------------------------------------------------------------------- /reflex/examples/DeleteReflex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/reflex/examples/DeleteReflex.json -------------------------------------------------------------------------------- /reflex/examples/GetReflex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/reflex/examples/GetReflex.json -------------------------------------------------------------------------------- /reflex/examples/GetReflexDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/reflex/examples/GetReflexDefinition.json -------------------------------------------------------------------------------- /reflex/examples/ListReflexesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/reflex/examples/ListReflexesInWorkspace.json -------------------------------------------------------------------------------- /reflex/examples/UpdateReflex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/reflex/examples/UpdateReflex.json -------------------------------------------------------------------------------- /reflex/examples/UpdateReflexDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/reflex/examples/UpdateReflexDefinition.json -------------------------------------------------------------------------------- /reflex/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/reflex/swagger.json -------------------------------------------------------------------------------- /report/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/report/definitions.json -------------------------------------------------------------------------------- /report/examples/CreateReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/report/examples/CreateReport.json -------------------------------------------------------------------------------- /report/examples/DeleteReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/report/examples/DeleteReport.json -------------------------------------------------------------------------------- /report/examples/GetReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/report/examples/GetReport.json -------------------------------------------------------------------------------- /report/examples/GetReportDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/report/examples/GetReportDefinition.json -------------------------------------------------------------------------------- /report/examples/ListReportsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/report/examples/ListReportsInWorkspace.json -------------------------------------------------------------------------------- /report/examples/UpdateReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/report/examples/UpdateReport.json -------------------------------------------------------------------------------- /report/examples/UpdateReportDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/report/examples/UpdateReportDefinition.json -------------------------------------------------------------------------------- /report/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/report/swagger.json -------------------------------------------------------------------------------- /semanticModel/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/definitions.json -------------------------------------------------------------------------------- /semanticModel/examples/BindSemanticModelConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/examples/BindSemanticModelConnection.json -------------------------------------------------------------------------------- /semanticModel/examples/CreateSemanticModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/examples/CreateSemanticModel.json -------------------------------------------------------------------------------- /semanticModel/examples/DeleteSemanticModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/examples/DeleteSemanticModel.json -------------------------------------------------------------------------------- /semanticModel/examples/GetSemanticModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/examples/GetSemanticModel.json -------------------------------------------------------------------------------- /semanticModel/examples/GetSemanticModelDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/examples/GetSemanticModelDefinition.json -------------------------------------------------------------------------------- /semanticModel/examples/GetSemanticModelDefinitionDefault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/examples/GetSemanticModelDefinitionDefault.json -------------------------------------------------------------------------------- /semanticModel/examples/ListSemanticModelsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/examples/ListSemanticModelsInWorkspace.json -------------------------------------------------------------------------------- /semanticModel/examples/UnbindSemanticModelConnection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/examples/UnbindSemanticModelConnection.json -------------------------------------------------------------------------------- /semanticModel/examples/UpdateSemanticModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/examples/UpdateSemanticModel.json -------------------------------------------------------------------------------- /semanticModel/examples/UpdateSemanticModelDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/examples/UpdateSemanticModelDefinition.json -------------------------------------------------------------------------------- /semanticModel/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/semanticModel/swagger.json -------------------------------------------------------------------------------- /snowflakeDatabase/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/definitions.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/CreateSnowflakeDatabaseWithDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/CreateSnowflakeDatabaseWithDefinition.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/CreateSnowflakeDatabaseWithPayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/CreateSnowflakeDatabaseWithPayload.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/CreateSnowflakeDatabaseWithoutPayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/CreateSnowflakeDatabaseWithoutPayload.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/DeleteSnowflakeDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/DeleteSnowflakeDatabase.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/GetSnowflakeDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/GetSnowflakeDatabase.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/GetSnowflakeDatabaseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/GetSnowflakeDatabaseDefinition.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/ListSnowflakeDatabasesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/ListSnowflakeDatabasesInWorkspace.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/SnowflakeDatabase_LRO_Complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/SnowflakeDatabase_LRO_Complete.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/SnowflakeDatabase_LRO_Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/SnowflakeDatabase_LRO_Example.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/SnowflakeDatabase_LRO_Poll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/SnowflakeDatabase_LRO_Poll.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/UpdateSnowflakeDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/UpdateSnowflakeDatabase.json -------------------------------------------------------------------------------- /snowflakeDatabase/examples/UpdateSnowflakeDatabaseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/examples/UpdateSnowflakeDatabaseDefinition.json -------------------------------------------------------------------------------- /snowflakeDatabase/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/snowflakeDatabase/swagger.json -------------------------------------------------------------------------------- /spark/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/definitions.json -------------------------------------------------------------------------------- /spark/examples/CreateCustomPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/examples/CreateCustomPool.json -------------------------------------------------------------------------------- /spark/examples/DeleteCustomPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/examples/DeleteCustomPool.json -------------------------------------------------------------------------------- /spark/examples/GetCustomPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/examples/GetCustomPool.json -------------------------------------------------------------------------------- /spark/examples/GetWorkspaceSparkSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/examples/GetWorkspaceSparkSettings.json -------------------------------------------------------------------------------- /spark/examples/ListCustomPools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/examples/ListCustomPools.json -------------------------------------------------------------------------------- /spark/examples/ListCustomPoolsWithContinuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/examples/ListCustomPoolsWithContinuation.json -------------------------------------------------------------------------------- /spark/examples/ListSessionsInItemId_preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/examples/ListSessionsInItemId_preview.json -------------------------------------------------------------------------------- /spark/examples/ListSessionsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/examples/ListSessionsInWorkspace.json -------------------------------------------------------------------------------- /spark/examples/UpdateCustomPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/examples/UpdateCustomPool.json -------------------------------------------------------------------------------- /spark/examples/UpdateWorkspaceSparkSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/examples/UpdateWorkspaceSparkSettings.json -------------------------------------------------------------------------------- /spark/examples/UpdateWorkspaceSparkSettingsDefaultPoolWithId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/examples/UpdateWorkspaceSparkSettingsDefaultPoolWithId.json -------------------------------------------------------------------------------- /spark/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/spark/swagger.json -------------------------------------------------------------------------------- /sparkjobdefinition/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/definitions.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/CreateSparkJobDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/CreateSparkJobDefinition.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/DeleteSparkJobDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/DeleteSparkJobDefinition.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/GetSessionInItemId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/GetSessionInItemId.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/GetSparkJobDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/GetSparkJobDefinition.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/GetSparkJobDefinitionDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/GetSparkJobDefinitionDefinition.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/GetSparkJobDefinitionDefinitionV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/GetSparkJobDefinitionDefinitionV2.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/ListSessionsInItemId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/ListSessionsInItemId.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/ListSessionsInItemId_preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/ListSessionsInItemId_preview.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/ListSparkJobDefinitionsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/ListSparkJobDefinitionsInWorkspace.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/RunOnDemandSparkJobDefinitionNoBody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/RunOnDemandSparkJobDefinitionNoBody.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/UpdateSparkJobDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/UpdateSparkJobDefinition.json -------------------------------------------------------------------------------- /sparkjobdefinition/examples/UpdateSparkJobDefinitionDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/examples/UpdateSparkJobDefinitionDefinition.json -------------------------------------------------------------------------------- /sparkjobdefinition/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sparkjobdefinition/swagger.json -------------------------------------------------------------------------------- /sqlDatabase/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/definitions.json -------------------------------------------------------------------------------- /sqlDatabase/examples/CreateSQLDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/examples/CreateSQLDatabase.json -------------------------------------------------------------------------------- /sqlDatabase/examples/CreateSQLDatabaseWithDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/examples/CreateSQLDatabaseWithDefinition.json -------------------------------------------------------------------------------- /sqlDatabase/examples/CreateSQLDatabaseWithPayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/examples/CreateSQLDatabaseWithPayload.json -------------------------------------------------------------------------------- /sqlDatabase/examples/DeleteSQLDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/examples/DeleteSQLDatabase.json -------------------------------------------------------------------------------- /sqlDatabase/examples/GetSQLDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/examples/GetSQLDatabase.json -------------------------------------------------------------------------------- /sqlDatabase/examples/GetSQLDatabaseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/examples/GetSQLDatabaseDefinition.json -------------------------------------------------------------------------------- /sqlDatabase/examples/ListSQLDatabasesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/examples/ListSQLDatabasesInWorkspace.json -------------------------------------------------------------------------------- /sqlDatabase/examples/StartMirroring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/examples/StartMirroring.json -------------------------------------------------------------------------------- /sqlDatabase/examples/StopMirroring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/examples/StopMirroring.json -------------------------------------------------------------------------------- /sqlDatabase/examples/UpdateSQLDatabase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/examples/UpdateSQLDatabase.json -------------------------------------------------------------------------------- /sqlDatabase/examples/UpdateSQLDatabaseDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/examples/UpdateSQLDatabaseDefinition.json -------------------------------------------------------------------------------- /sqlDatabase/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlDatabase/swagger.json -------------------------------------------------------------------------------- /sqlEndpoint/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlEndpoint/definitions.json -------------------------------------------------------------------------------- /sqlEndpoint/examples/GetConnectionString.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlEndpoint/examples/GetConnectionString.json -------------------------------------------------------------------------------- /sqlEndpoint/examples/GetSqlAuditSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlEndpoint/examples/GetSqlAuditSettings.json -------------------------------------------------------------------------------- /sqlEndpoint/examples/ListSQLEndpointsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlEndpoint/examples/ListSQLEndpointsInWorkspace.json -------------------------------------------------------------------------------- /sqlEndpoint/examples/RefreshAllTablesInSqlEndpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlEndpoint/examples/RefreshAllTablesInSqlEndpoint.json -------------------------------------------------------------------------------- /sqlEndpoint/examples/SetAuditActionsAndGroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlEndpoint/examples/SetAuditActionsAndGroups.json -------------------------------------------------------------------------------- /sqlEndpoint/examples/UpdateSqlAuditSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlEndpoint/examples/UpdateSqlAuditSettings.json -------------------------------------------------------------------------------- /sqlEndpoint/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlEndpoint/swagger.json -------------------------------------------------------------------------------- /sqlEndpoint/swagger_refreshMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/sqlEndpoint/swagger_refreshMetadata.json -------------------------------------------------------------------------------- /userDataFunction/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/userDataFunction/definitions.json -------------------------------------------------------------------------------- /userDataFunction/examples/CreateUserDataFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/userDataFunction/examples/CreateUserDataFunction.json -------------------------------------------------------------------------------- /userDataFunction/examples/DeleteUserDataFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/userDataFunction/examples/DeleteUserDataFunction.json -------------------------------------------------------------------------------- /userDataFunction/examples/GetUserDataFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/userDataFunction/examples/GetUserDataFunction.json -------------------------------------------------------------------------------- /userDataFunction/examples/GetUserDataFunctionDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/userDataFunction/examples/GetUserDataFunctionDefinition.json -------------------------------------------------------------------------------- /userDataFunction/examples/ListUserDataFunctionsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/userDataFunction/examples/ListUserDataFunctionsInWorkspace.json -------------------------------------------------------------------------------- /userDataFunction/examples/UpdateUserDataFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/userDataFunction/examples/UpdateUserDataFunction.json -------------------------------------------------------------------------------- /userDataFunction/examples/UpdateUserDataFunctionDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/userDataFunction/examples/UpdateUserDataFunctionDefinition.json -------------------------------------------------------------------------------- /userDataFunction/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/userDataFunction/swagger.json -------------------------------------------------------------------------------- /variableLibrary/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/variableLibrary/definitions.json -------------------------------------------------------------------------------- /variableLibrary/examples/CreateVariableLibrary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/variableLibrary/examples/CreateVariableLibrary.json -------------------------------------------------------------------------------- /variableLibrary/examples/CreateVariableLibraryWithoutDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/variableLibrary/examples/CreateVariableLibraryWithoutDefinition.json -------------------------------------------------------------------------------- /variableLibrary/examples/DeleteVariableLibrary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/variableLibrary/examples/DeleteVariableLibrary.json -------------------------------------------------------------------------------- /variableLibrary/examples/GetVariableLibrary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/variableLibrary/examples/GetVariableLibrary.json -------------------------------------------------------------------------------- /variableLibrary/examples/GetVariableLibraryDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/variableLibrary/examples/GetVariableLibraryDefinition.json -------------------------------------------------------------------------------- /variableLibrary/examples/ListVariableLibrariesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/variableLibrary/examples/ListVariableLibrariesInWorkspace.json -------------------------------------------------------------------------------- /variableLibrary/examples/UpdateVariableLibrary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/variableLibrary/examples/UpdateVariableLibrary.json -------------------------------------------------------------------------------- /variableLibrary/examples/UpdateVariableLibraryDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/variableLibrary/examples/UpdateVariableLibraryDefinition.json -------------------------------------------------------------------------------- /variableLibrary/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/variableLibrary/swagger.json -------------------------------------------------------------------------------- /warehouse/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/definitions.json -------------------------------------------------------------------------------- /warehouse/examples/CreateRestorePoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/CreateRestorePoint.json -------------------------------------------------------------------------------- /warehouse/examples/CreateWarehouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/CreateWarehouse.json -------------------------------------------------------------------------------- /warehouse/examples/CreateWarehouseWithCreationPayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/CreateWarehouseWithCreationPayload.json -------------------------------------------------------------------------------- /warehouse/examples/DeleteRestorePoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/DeleteRestorePoint.json -------------------------------------------------------------------------------- /warehouse/examples/DeleteWarehouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/DeleteWarehouse.json -------------------------------------------------------------------------------- /warehouse/examples/GetConnectionString.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/GetConnectionString.json -------------------------------------------------------------------------------- /warehouse/examples/GetRestorePoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/GetRestorePoint.json -------------------------------------------------------------------------------- /warehouse/examples/GetSqlAuditSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/GetSqlAuditSettings.json -------------------------------------------------------------------------------- /warehouse/examples/GetWarehouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/GetWarehouse.json -------------------------------------------------------------------------------- /warehouse/examples/ListRestorePoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/ListRestorePoints.json -------------------------------------------------------------------------------- /warehouse/examples/ListWarehousesInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/ListWarehousesInWorkspace.json -------------------------------------------------------------------------------- /warehouse/examples/RestoreToRestorePoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/RestoreToRestorePoint.json -------------------------------------------------------------------------------- /warehouse/examples/SetAuditActionsAndGroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/SetAuditActionsAndGroups.json -------------------------------------------------------------------------------- /warehouse/examples/UpdateRestorePoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/UpdateRestorePoint.json -------------------------------------------------------------------------------- /warehouse/examples/UpdateSqlAuditSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/UpdateSqlAuditSettings.json -------------------------------------------------------------------------------- /warehouse/examples/UpdateWarehouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/examples/UpdateWarehouse.json -------------------------------------------------------------------------------- /warehouse/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouse/swagger.json -------------------------------------------------------------------------------- /warehouseSnapshot/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouseSnapshot/definitions.json -------------------------------------------------------------------------------- /warehouseSnapshot/examples/DeleteWarehouseSnapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouseSnapshot/examples/DeleteWarehouseSnapshot.json -------------------------------------------------------------------------------- /warehouseSnapshot/examples/GetWarehouseSnapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouseSnapshot/examples/GetWarehouseSnapshot.json -------------------------------------------------------------------------------- /warehouseSnapshot/examples/ListWarehouseSnapshotsInWorkspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouseSnapshot/examples/ListWarehouseSnapshotsInWorkspace.json -------------------------------------------------------------------------------- /warehouseSnapshot/examples/UpdateWarehouseSnapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouseSnapshot/examples/UpdateWarehouseSnapshot.json -------------------------------------------------------------------------------- /warehouseSnapshot/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabric-rest-api-specs/HEAD/warehouseSnapshot/swagger.json --------------------------------------------------------------------------------