├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── LcsApi.sln ├── LcsApi ├── Authentication │ ├── BrowserAuthenticationOptions.cs │ ├── BrowserAuthenticationProvider.cs │ ├── IBrowserAuthenticationOptions.cs │ └── IBrowserAuthenticationProvider.cs ├── Clients │ ├── ILcsConnection.cs │ ├── LcsApiClient.cs │ ├── LcsApiClientBase.cs │ ├── LcsConnection.cs │ ├── LcsConnectionOptions.cs │ ├── LcsDiagnosticsApiClient.cs │ └── LcsSizingApiClient.cs ├── Exceptions │ └── LcsResponseException.cs ├── Extensions │ ├── DeployablePackageExtensions.cs │ ├── HttpExtensions.cs │ ├── JsonObjectExtensions.cs │ └── WebDriverExtensions.cs ├── LcsApi.csproj └── Model │ ├── Action.cs │ ├── ActionCenterDataViewModel.cs │ ├── ActionDetails.cs │ ├── AdditionalInfo.cs │ ├── Asset.cs │ ├── AssetComponentDetails.cs │ ├── AssetDownload.cs │ ├── AssetMetadata.cs │ ├── BuildInfoDetails.cs │ ├── BuildInfoEnvironment.cs │ ├── BuildInfoTreeView.cs │ ├── CDSDeploymentDetails.cs │ ├── CardActionLink.cs │ ├── CheckBoxCustomization.cs │ ├── CloudHostedInstance.cs │ ├── ComboBoxCustomization.cs │ ├── Common │ ├── DynamicPaging.cs │ ├── Enums.cs │ ├── LcsResponse.cs │ ├── PaginatedRequest.cs │ └── PaginatedResponse.cs │ ├── Connector.cs │ ├── Credentials.cs │ ├── CustomLink.cs │ ├── CustomizationGroup.cs │ ├── CustomizationValue.cs │ ├── CustomizationValueSelection.cs │ ├── DatabaseMovementAction.cs │ ├── DefaultConnector.cs │ ├── DependentCustomizationValues.cs │ ├── DeployablePackage.cs │ ├── DeployablePackageHistoryDetails.cs │ ├── DeploymentCustomization.cs │ ├── DeploymentCustomizationGroupOption.cs │ ├── DeploymentInstance.cs │ ├── DeploymentProgress.cs │ ├── DeploymentSummary.cs │ ├── DetailsForExport.cs │ ├── Diagnostics │ ├── Counter.cs │ ├── DiagnosticInfo.cs │ ├── DistinctUser.cs │ ├── EnvironmentMonitoringData.cs │ ├── ErrorEvent.cs │ ├── FastQueryResult.cs │ ├── InteractionData.cs │ ├── Message.cs │ ├── Metric.cs │ ├── MetricData.cs │ ├── MetricDataValue.cs │ ├── MonitoringInteractionData.cs │ ├── RoleInstance.cs │ ├── SlowInteraction.cs │ ├── SlowQuery.cs │ ├── SqlAction.cs │ ├── SqlUtilization.cs │ └── UserLoginEvent.cs │ ├── ECommerceDeploymentInfo.cs │ ├── ECommerceEnvironment.cs │ ├── EmptyFileAsset.cs │ ├── EnvironmentAction.cs │ ├── EnvironmentActionResponse.cs │ ├── EnvironmentCDSDetails.cs │ ├── EnvironmentCustomization.cs │ ├── EnvironmentCustomizationRequest.cs │ ├── EnvironmentDeployTopology.cs │ ├── EnvironmentDeployTopologyValue.cs │ ├── EnvironmentNotifications.cs │ ├── EnvironmentStatus.cs │ ├── EvalRuleLog.cs │ ├── ExportedInstance.cs │ ├── FieldValueCustomization.cs │ ├── FileAssetProperty.cs │ ├── FileAssetVersion.cs │ ├── FileTypeProperty.cs │ ├── HostedInstance.cs │ ├── Hotfix.cs │ ├── InstanceCustomization.cs │ ├── InstanceReference.cs │ ├── InvitedBy.cs │ ├── JITOptions.cs │ ├── LabelValue.cs │ ├── LearningTile.cs │ ├── Link.cs │ ├── Methodology.cs │ ├── MethodologyMasterTemplate.cs │ ├── MethodologyMasterTemplateMapValue.cs │ ├── MethodologyPhase.cs │ ├── MethodologyProduct.cs │ ├── MethodologyReference.cs │ ├── Module.cs │ ├── NSGRule.cs │ ├── Navigationlink.cs │ ├── NetworkSecurityGroup.cs │ ├── Notification.cs │ ├── NotificationsUserList.cs │ ├── OneVersionUpdateView.cs │ ├── OneVersionViewVersion.cs │ ├── Organization.cs │ ├── OrganizationReference.cs │ ├── PagingParameters.cs │ ├── Plan.cs │ ├── Product.cs │ ├── ProductVersion.cs │ ├── Project.cs │ ├── ProjectInstance.cs │ ├── ProjectMethodology.cs │ ├── ProjectNotification.cs │ ├── ProjectOrganization.cs │ ├── ProjectProduct.cs │ ├── ProjectReference.cs │ ├── ProjectSettings.cs │ ├── ProjectUser.cs │ ├── ProjectUserCapabilities.cs │ ├── RDPConnectionDetails.cs │ ├── Report.cs │ ├── RetailBaseBuild.cs │ ├── RetailEnvironment.cs │ ├── RetailResult.cs │ ├── RetailSystemCheckHealth.cs │ ├── SandboxAddon.cs │ ├── ScaleUnit.cs │ ├── Service.cs │ ├── ServiceAccessState.cs │ ├── ServiceRestartResponseData.cs │ ├── ServiceToRestart.cs │ ├── ServicingInfo.cs │ ├── Sizing │ ├── ActivationHistory.cs │ ├── EstimateAnswer.cs │ ├── SubmittedEstimation.cs │ ├── SubscriptionEstimate.cs │ └── UsageAnswer.cs │ ├── StartStopDeploymentRequest.cs │ ├── Subscription.cs │ ├── SupportRequest.cs │ ├── SupportedPlatformVersion.cs │ ├── TenantPlanDetails.cs │ ├── TopologyValue.cs │ ├── UpcomingCalendarViewModel.cs │ ├── UpcomingUpdateCalendar.cs │ ├── UpdatePauseWindowForProject.cs │ ├── UserProfile.cs │ ├── ValidateSandboxServicingData.cs │ └── Version.cs ├── LcsApiNetFramework ├── Authentication │ ├── BrowserAuthenticationOptions.cs │ ├── BrowserAuthenticationProvider.cs │ ├── IBrowserAuthenticationOptions.cs │ └── IBrowserAuthenticationProvider.cs ├── Clients │ ├── ILcsConnection.cs │ ├── LcsApiClient.cs │ ├── LcsApiClientBase.cs │ ├── LcsConnection.cs │ ├── LcsConnectionOptions.cs │ ├── LcsDiagnosticsApiClient.cs │ └── LcsSizingApiClient.cs ├── Exceptions │ └── LcsResponseException.cs ├── Extensions │ ├── DeployablePackageExtensions.cs │ ├── HttpExtensions.cs │ ├── JsonObjectExtensions.cs │ └── WebDriverExtensions.cs ├── LcsApiNetFramework.csproj ├── Model │ ├── Action.cs │ ├── ActionCenterDataViewModel.cs │ ├── ActionDetails.cs │ ├── AdditionalInfo.cs │ ├── Asset.cs │ ├── AssetComponentDetails.cs │ ├── AssetDownload.cs │ ├── AssetMetadata.cs │ ├── BuildInfoDetails.cs │ ├── BuildInfoEnvironment.cs │ ├── BuildInfoTreeView.cs │ ├── CDSDeploymentDetails.cs │ ├── CardActionLink.cs │ ├── CheckBoxCustomization.cs │ ├── CloudHostedInstance.cs │ ├── ComboBoxCustomization.cs │ ├── Common │ │ ├── DynamicPaging.cs │ │ ├── Enums.cs │ │ ├── LcsResponse.cs │ │ ├── PaginatedRequest.cs │ │ └── PaginatedResponse.cs │ ├── Connector.cs │ ├── Credentials.cs │ ├── CustomLink.cs │ ├── CustomizationGroup.cs │ ├── CustomizationValue.cs │ ├── CustomizationValueSelection.cs │ ├── DatabaseMovementAction.cs │ ├── DefaultConnector.cs │ ├── DependentCustomizationValues.cs │ ├── DeployablePackage.cs │ ├── DeployablePackageHistoryDetails.cs │ ├── DeploymentCustomization.cs │ ├── DeploymentCustomizationGroupOption.cs │ ├── DeploymentInstance.cs │ ├── DeploymentProgress.cs │ ├── DeploymentSummary.cs │ ├── DetailsForExport.cs │ ├── Diagnostics │ │ ├── Counter.cs │ │ ├── DiagnosticInfo.cs │ │ ├── DistinctUser.cs │ │ ├── EnvironmentMonitoringData.cs │ │ ├── ErrorEvent.cs │ │ ├── FastQueryResult.cs │ │ ├── InteractionData.cs │ │ ├── Message.cs │ │ ├── Metric.cs │ │ ├── MetricData.cs │ │ ├── MetricDataValue.cs │ │ ├── MonitoringInteractionData.cs │ │ ├── RoleInstance.cs │ │ ├── SlowInteraction.cs │ │ ├── SlowQuery.cs │ │ ├── SqlAction.cs │ │ ├── SqlUtilization.cs │ │ └── UserLoginEvent.cs │ ├── ECommerceDeploymentInfo.cs │ ├── ECommerceEnvironment.cs │ ├── EmptyFileAsset.cs │ ├── EnvironmentAction.cs │ ├── EnvironmentActionResponse.cs │ ├── EnvironmentCDSDetails.cs │ ├── EnvironmentCustomization.cs │ ├── EnvironmentCustomizationRequest.cs │ ├── EnvironmentDeployTopology.cs │ ├── EnvironmentDeployTopologyValue.cs │ ├── EnvironmentNotifications.cs │ ├── EnvironmentStatus.cs │ ├── EvalRuleLog.cs │ ├── ExportedInstance.cs │ ├── FieldValueCustomization.cs │ ├── FileAssetProperty.cs │ ├── FileAssetVersion.cs │ ├── FileTypeProperty.cs │ ├── Hotfix.cs │ ├── InstanceCustomization.cs │ ├── InstanceReference.cs │ ├── InvitedBy.cs │ ├── JITOptions.cs │ ├── LabelValue.cs │ ├── LearningTile.cs │ ├── Link.cs │ ├── Methodology.cs │ ├── MethodologyMasterTemplate.cs │ ├── MethodologyMasterTemplateMapValue.cs │ ├── MethodologyPhase.cs │ ├── MethodologyProduct.cs │ ├── MethodologyReference.cs │ ├── Module.cs │ ├── NSGRule.cs │ ├── Navigationlink.cs │ ├── NetworkSecurityGroup.cs │ ├── Notification.cs │ ├── NotificationsUserList.cs │ ├── OneVersionUpdateView.cs │ ├── OneVersionViewVersion.cs │ ├── Organization.cs │ ├── OrganizationReference.cs │ ├── PagingParameters.cs │ ├── Plan.cs │ ├── Product.cs │ ├── ProductVersion.cs │ ├── Project.cs │ ├── ProjectInstance.cs │ ├── ProjectMethodology.cs │ ├── ProjectNotification.cs │ ├── ProjectOrganization.cs │ ├── ProjectProduct.cs │ ├── ProjectReference.cs │ ├── ProjectSettings.cs │ ├── ProjectUser.cs │ ├── ProjectUserCapabilities.cs │ ├── RDPConnectionDetails.cs │ ├── Report.cs │ ├── RetailBaseBuild.cs │ ├── RetailEnvironment.cs │ ├── RetailResult.cs │ ├── RetailSystemCheckHealth.cs │ ├── SandboxAddon.cs │ ├── ScaleUnit.cs │ ├── Service.cs │ ├── ServiceAccessState.cs │ ├── ServiceToRestart.cs │ ├── ServicingInfo.cs │ ├── Sizing │ │ ├── ActivationHistory.cs │ │ ├── EstimateAnswer.cs │ │ ├── SubmittedEstimation.cs │ │ ├── SubscriptionEstimate.cs │ │ └── UsageAnswer.cs │ ├── StartStopDeploymentRequest.cs │ ├── Subscription.cs │ ├── SupportRequest.cs │ ├── SupportedPlatformVersion.cs │ ├── TenantPlanDetails.cs │ ├── TopologyValue.cs │ ├── UpcomingCalendarViewModel.cs │ ├── UpcomingUpdateCalendar.cs │ ├── UpdatePauseWindowForProject.cs │ ├── UserProfile.cs │ ├── ValidateSandboxServicingData.cs │ └── Version.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LcsApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi.sln -------------------------------------------------------------------------------- /LcsApi/Authentication/BrowserAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Authentication/BrowserAuthenticationOptions.cs -------------------------------------------------------------------------------- /LcsApi/Authentication/BrowserAuthenticationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Authentication/BrowserAuthenticationProvider.cs -------------------------------------------------------------------------------- /LcsApi/Authentication/IBrowserAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Authentication/IBrowserAuthenticationOptions.cs -------------------------------------------------------------------------------- /LcsApi/Authentication/IBrowserAuthenticationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Authentication/IBrowserAuthenticationProvider.cs -------------------------------------------------------------------------------- /LcsApi/Clients/ILcsConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Clients/ILcsConnection.cs -------------------------------------------------------------------------------- /LcsApi/Clients/LcsApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Clients/LcsApiClient.cs -------------------------------------------------------------------------------- /LcsApi/Clients/LcsApiClientBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Clients/LcsApiClientBase.cs -------------------------------------------------------------------------------- /LcsApi/Clients/LcsConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Clients/LcsConnection.cs -------------------------------------------------------------------------------- /LcsApi/Clients/LcsConnectionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Clients/LcsConnectionOptions.cs -------------------------------------------------------------------------------- /LcsApi/Clients/LcsDiagnosticsApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Clients/LcsDiagnosticsApiClient.cs -------------------------------------------------------------------------------- /LcsApi/Clients/LcsSizingApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Clients/LcsSizingApiClient.cs -------------------------------------------------------------------------------- /LcsApi/Exceptions/LcsResponseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Exceptions/LcsResponseException.cs -------------------------------------------------------------------------------- /LcsApi/Extensions/DeployablePackageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Extensions/DeployablePackageExtensions.cs -------------------------------------------------------------------------------- /LcsApi/Extensions/HttpExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Extensions/HttpExtensions.cs -------------------------------------------------------------------------------- /LcsApi/Extensions/JsonObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Extensions/JsonObjectExtensions.cs -------------------------------------------------------------------------------- /LcsApi/Extensions/WebDriverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Extensions/WebDriverExtensions.cs -------------------------------------------------------------------------------- /LcsApi/LcsApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/LcsApi.csproj -------------------------------------------------------------------------------- /LcsApi/Model/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Action.cs -------------------------------------------------------------------------------- /LcsApi/Model/ActionCenterDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ActionCenterDataViewModel.cs -------------------------------------------------------------------------------- /LcsApi/Model/ActionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ActionDetails.cs -------------------------------------------------------------------------------- /LcsApi/Model/AdditionalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/AdditionalInfo.cs -------------------------------------------------------------------------------- /LcsApi/Model/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Asset.cs -------------------------------------------------------------------------------- /LcsApi/Model/AssetComponentDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/AssetComponentDetails.cs -------------------------------------------------------------------------------- /LcsApi/Model/AssetDownload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/AssetDownload.cs -------------------------------------------------------------------------------- /LcsApi/Model/AssetMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/AssetMetadata.cs -------------------------------------------------------------------------------- /LcsApi/Model/BuildInfoDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/BuildInfoDetails.cs -------------------------------------------------------------------------------- /LcsApi/Model/BuildInfoEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/BuildInfoEnvironment.cs -------------------------------------------------------------------------------- /LcsApi/Model/BuildInfoTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/BuildInfoTreeView.cs -------------------------------------------------------------------------------- /LcsApi/Model/CDSDeploymentDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/CDSDeploymentDetails.cs -------------------------------------------------------------------------------- /LcsApi/Model/CardActionLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/CardActionLink.cs -------------------------------------------------------------------------------- /LcsApi/Model/CheckBoxCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/CheckBoxCustomization.cs -------------------------------------------------------------------------------- /LcsApi/Model/CloudHostedInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/CloudHostedInstance.cs -------------------------------------------------------------------------------- /LcsApi/Model/ComboBoxCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ComboBoxCustomization.cs -------------------------------------------------------------------------------- /LcsApi/Model/Common/DynamicPaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Common/DynamicPaging.cs -------------------------------------------------------------------------------- /LcsApi/Model/Common/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Common/Enums.cs -------------------------------------------------------------------------------- /LcsApi/Model/Common/LcsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Common/LcsResponse.cs -------------------------------------------------------------------------------- /LcsApi/Model/Common/PaginatedRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Common/PaginatedRequest.cs -------------------------------------------------------------------------------- /LcsApi/Model/Common/PaginatedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Common/PaginatedResponse.cs -------------------------------------------------------------------------------- /LcsApi/Model/Connector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Connector.cs -------------------------------------------------------------------------------- /LcsApi/Model/Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Credentials.cs -------------------------------------------------------------------------------- /LcsApi/Model/CustomLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/CustomLink.cs -------------------------------------------------------------------------------- /LcsApi/Model/CustomizationGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/CustomizationGroup.cs -------------------------------------------------------------------------------- /LcsApi/Model/CustomizationValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/CustomizationValue.cs -------------------------------------------------------------------------------- /LcsApi/Model/CustomizationValueSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/CustomizationValueSelection.cs -------------------------------------------------------------------------------- /LcsApi/Model/DatabaseMovementAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/DatabaseMovementAction.cs -------------------------------------------------------------------------------- /LcsApi/Model/DefaultConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/DefaultConnector.cs -------------------------------------------------------------------------------- /LcsApi/Model/DependentCustomizationValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/DependentCustomizationValues.cs -------------------------------------------------------------------------------- /LcsApi/Model/DeployablePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/DeployablePackage.cs -------------------------------------------------------------------------------- /LcsApi/Model/DeployablePackageHistoryDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/DeployablePackageHistoryDetails.cs -------------------------------------------------------------------------------- /LcsApi/Model/DeploymentCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/DeploymentCustomization.cs -------------------------------------------------------------------------------- /LcsApi/Model/DeploymentCustomizationGroupOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/DeploymentCustomizationGroupOption.cs -------------------------------------------------------------------------------- /LcsApi/Model/DeploymentInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/DeploymentInstance.cs -------------------------------------------------------------------------------- /LcsApi/Model/DeploymentProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/DeploymentProgress.cs -------------------------------------------------------------------------------- /LcsApi/Model/DeploymentSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/DeploymentSummary.cs -------------------------------------------------------------------------------- /LcsApi/Model/DetailsForExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/DetailsForExport.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/Counter.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/DiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/DiagnosticInfo.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/DistinctUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/DistinctUser.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/EnvironmentMonitoringData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/EnvironmentMonitoringData.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/ErrorEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/ErrorEvent.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/FastQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/FastQueryResult.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/InteractionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/InteractionData.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/Message.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/Metric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/Metric.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/MetricData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/MetricData.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/MetricDataValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/MetricDataValue.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/MonitoringInteractionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/MonitoringInteractionData.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/RoleInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/RoleInstance.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/SlowInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/SlowInteraction.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/SlowQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/SlowQuery.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/SqlAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/SqlAction.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/SqlUtilization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/SqlUtilization.cs -------------------------------------------------------------------------------- /LcsApi/Model/Diagnostics/UserLoginEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Diagnostics/UserLoginEvent.cs -------------------------------------------------------------------------------- /LcsApi/Model/ECommerceDeploymentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ECommerceDeploymentInfo.cs -------------------------------------------------------------------------------- /LcsApi/Model/ECommerceEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ECommerceEnvironment.cs -------------------------------------------------------------------------------- /LcsApi/Model/EmptyFileAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/EmptyFileAsset.cs -------------------------------------------------------------------------------- /LcsApi/Model/EnvironmentAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/EnvironmentAction.cs -------------------------------------------------------------------------------- /LcsApi/Model/EnvironmentActionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/EnvironmentActionResponse.cs -------------------------------------------------------------------------------- /LcsApi/Model/EnvironmentCDSDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/EnvironmentCDSDetails.cs -------------------------------------------------------------------------------- /LcsApi/Model/EnvironmentCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/EnvironmentCustomization.cs -------------------------------------------------------------------------------- /LcsApi/Model/EnvironmentCustomizationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/EnvironmentCustomizationRequest.cs -------------------------------------------------------------------------------- /LcsApi/Model/EnvironmentDeployTopology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/EnvironmentDeployTopology.cs -------------------------------------------------------------------------------- /LcsApi/Model/EnvironmentDeployTopologyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/EnvironmentDeployTopologyValue.cs -------------------------------------------------------------------------------- /LcsApi/Model/EnvironmentNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/EnvironmentNotifications.cs -------------------------------------------------------------------------------- /LcsApi/Model/EnvironmentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/EnvironmentStatus.cs -------------------------------------------------------------------------------- /LcsApi/Model/EvalRuleLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/EvalRuleLog.cs -------------------------------------------------------------------------------- /LcsApi/Model/ExportedInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ExportedInstance.cs -------------------------------------------------------------------------------- /LcsApi/Model/FieldValueCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/FieldValueCustomization.cs -------------------------------------------------------------------------------- /LcsApi/Model/FileAssetProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/FileAssetProperty.cs -------------------------------------------------------------------------------- /LcsApi/Model/FileAssetVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/FileAssetVersion.cs -------------------------------------------------------------------------------- /LcsApi/Model/FileTypeProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/FileTypeProperty.cs -------------------------------------------------------------------------------- /LcsApi/Model/HostedInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/HostedInstance.cs -------------------------------------------------------------------------------- /LcsApi/Model/Hotfix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Hotfix.cs -------------------------------------------------------------------------------- /LcsApi/Model/InstanceCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/InstanceCustomization.cs -------------------------------------------------------------------------------- /LcsApi/Model/InstanceReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/InstanceReference.cs -------------------------------------------------------------------------------- /LcsApi/Model/InvitedBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/InvitedBy.cs -------------------------------------------------------------------------------- /LcsApi/Model/JITOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/JITOptions.cs -------------------------------------------------------------------------------- /LcsApi/Model/LabelValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/LabelValue.cs -------------------------------------------------------------------------------- /LcsApi/Model/LearningTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/LearningTile.cs -------------------------------------------------------------------------------- /LcsApi/Model/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Link.cs -------------------------------------------------------------------------------- /LcsApi/Model/Methodology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Methodology.cs -------------------------------------------------------------------------------- /LcsApi/Model/MethodologyMasterTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/MethodologyMasterTemplate.cs -------------------------------------------------------------------------------- /LcsApi/Model/MethodologyMasterTemplateMapValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/MethodologyMasterTemplateMapValue.cs -------------------------------------------------------------------------------- /LcsApi/Model/MethodologyPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/MethodologyPhase.cs -------------------------------------------------------------------------------- /LcsApi/Model/MethodologyProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/MethodologyProduct.cs -------------------------------------------------------------------------------- /LcsApi/Model/MethodologyReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/MethodologyReference.cs -------------------------------------------------------------------------------- /LcsApi/Model/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Module.cs -------------------------------------------------------------------------------- /LcsApi/Model/NSGRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/NSGRule.cs -------------------------------------------------------------------------------- /LcsApi/Model/Navigationlink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Navigationlink.cs -------------------------------------------------------------------------------- /LcsApi/Model/NetworkSecurityGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/NetworkSecurityGroup.cs -------------------------------------------------------------------------------- /LcsApi/Model/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Notification.cs -------------------------------------------------------------------------------- /LcsApi/Model/NotificationsUserList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/NotificationsUserList.cs -------------------------------------------------------------------------------- /LcsApi/Model/OneVersionUpdateView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/OneVersionUpdateView.cs -------------------------------------------------------------------------------- /LcsApi/Model/OneVersionViewVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/OneVersionViewVersion.cs -------------------------------------------------------------------------------- /LcsApi/Model/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Organization.cs -------------------------------------------------------------------------------- /LcsApi/Model/OrganizationReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/OrganizationReference.cs -------------------------------------------------------------------------------- /LcsApi/Model/PagingParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/PagingParameters.cs -------------------------------------------------------------------------------- /LcsApi/Model/Plan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Plan.cs -------------------------------------------------------------------------------- /LcsApi/Model/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Product.cs -------------------------------------------------------------------------------- /LcsApi/Model/ProductVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ProductVersion.cs -------------------------------------------------------------------------------- /LcsApi/Model/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Project.cs -------------------------------------------------------------------------------- /LcsApi/Model/ProjectInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ProjectInstance.cs -------------------------------------------------------------------------------- /LcsApi/Model/ProjectMethodology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ProjectMethodology.cs -------------------------------------------------------------------------------- /LcsApi/Model/ProjectNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ProjectNotification.cs -------------------------------------------------------------------------------- /LcsApi/Model/ProjectOrganization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ProjectOrganization.cs -------------------------------------------------------------------------------- /LcsApi/Model/ProjectProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ProjectProduct.cs -------------------------------------------------------------------------------- /LcsApi/Model/ProjectReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ProjectReference.cs -------------------------------------------------------------------------------- /LcsApi/Model/ProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ProjectSettings.cs -------------------------------------------------------------------------------- /LcsApi/Model/ProjectUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ProjectUser.cs -------------------------------------------------------------------------------- /LcsApi/Model/ProjectUserCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ProjectUserCapabilities.cs -------------------------------------------------------------------------------- /LcsApi/Model/RDPConnectionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/RDPConnectionDetails.cs -------------------------------------------------------------------------------- /LcsApi/Model/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Report.cs -------------------------------------------------------------------------------- /LcsApi/Model/RetailBaseBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/RetailBaseBuild.cs -------------------------------------------------------------------------------- /LcsApi/Model/RetailEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/RetailEnvironment.cs -------------------------------------------------------------------------------- /LcsApi/Model/RetailResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/RetailResult.cs -------------------------------------------------------------------------------- /LcsApi/Model/RetailSystemCheckHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/RetailSystemCheckHealth.cs -------------------------------------------------------------------------------- /LcsApi/Model/SandboxAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/SandboxAddon.cs -------------------------------------------------------------------------------- /LcsApi/Model/ScaleUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ScaleUnit.cs -------------------------------------------------------------------------------- /LcsApi/Model/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Service.cs -------------------------------------------------------------------------------- /LcsApi/Model/ServiceAccessState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ServiceAccessState.cs -------------------------------------------------------------------------------- /LcsApi/Model/ServiceRestartResponseData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ServiceRestartResponseData.cs -------------------------------------------------------------------------------- /LcsApi/Model/ServiceToRestart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ServiceToRestart.cs -------------------------------------------------------------------------------- /LcsApi/Model/ServicingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ServicingInfo.cs -------------------------------------------------------------------------------- /LcsApi/Model/Sizing/ActivationHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Sizing/ActivationHistory.cs -------------------------------------------------------------------------------- /LcsApi/Model/Sizing/EstimateAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Sizing/EstimateAnswer.cs -------------------------------------------------------------------------------- /LcsApi/Model/Sizing/SubmittedEstimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Sizing/SubmittedEstimation.cs -------------------------------------------------------------------------------- /LcsApi/Model/Sizing/SubscriptionEstimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Sizing/SubscriptionEstimate.cs -------------------------------------------------------------------------------- /LcsApi/Model/Sizing/UsageAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Sizing/UsageAnswer.cs -------------------------------------------------------------------------------- /LcsApi/Model/StartStopDeploymentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/StartStopDeploymentRequest.cs -------------------------------------------------------------------------------- /LcsApi/Model/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Subscription.cs -------------------------------------------------------------------------------- /LcsApi/Model/SupportRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/SupportRequest.cs -------------------------------------------------------------------------------- /LcsApi/Model/SupportedPlatformVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/SupportedPlatformVersion.cs -------------------------------------------------------------------------------- /LcsApi/Model/TenantPlanDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/TenantPlanDetails.cs -------------------------------------------------------------------------------- /LcsApi/Model/TopologyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/TopologyValue.cs -------------------------------------------------------------------------------- /LcsApi/Model/UpcomingCalendarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/UpcomingCalendarViewModel.cs -------------------------------------------------------------------------------- /LcsApi/Model/UpcomingUpdateCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/UpcomingUpdateCalendar.cs -------------------------------------------------------------------------------- /LcsApi/Model/UpdatePauseWindowForProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/UpdatePauseWindowForProject.cs -------------------------------------------------------------------------------- /LcsApi/Model/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/UserProfile.cs -------------------------------------------------------------------------------- /LcsApi/Model/ValidateSandboxServicingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/ValidateSandboxServicingData.cs -------------------------------------------------------------------------------- /LcsApi/Model/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApi/Model/Version.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Authentication/BrowserAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Authentication/BrowserAuthenticationOptions.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Authentication/BrowserAuthenticationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Authentication/BrowserAuthenticationProvider.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Authentication/IBrowserAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Authentication/IBrowserAuthenticationOptions.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Authentication/IBrowserAuthenticationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Authentication/IBrowserAuthenticationProvider.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Clients/ILcsConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Clients/ILcsConnection.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Clients/LcsApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Clients/LcsApiClient.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Clients/LcsApiClientBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Clients/LcsApiClientBase.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Clients/LcsConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Clients/LcsConnection.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Clients/LcsConnectionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Clients/LcsConnectionOptions.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Clients/LcsDiagnosticsApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Clients/LcsDiagnosticsApiClient.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Clients/LcsSizingApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Clients/LcsSizingApiClient.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Exceptions/LcsResponseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Exceptions/LcsResponseException.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Extensions/DeployablePackageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Extensions/DeployablePackageExtensions.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Extensions/HttpExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Extensions/HttpExtensions.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Extensions/JsonObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Extensions/JsonObjectExtensions.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Extensions/WebDriverExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Extensions/WebDriverExtensions.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/LcsApiNetFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/LcsApiNetFramework.csproj -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Action.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ActionCenterDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ActionCenterDataViewModel.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ActionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ActionDetails.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/AdditionalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/AdditionalInfo.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Asset.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/AssetComponentDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/AssetComponentDetails.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/AssetDownload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/AssetDownload.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/AssetMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/AssetMetadata.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/BuildInfoDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/BuildInfoDetails.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/BuildInfoEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/BuildInfoEnvironment.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/BuildInfoTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/BuildInfoTreeView.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/CDSDeploymentDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/CDSDeploymentDetails.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/CardActionLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/CardActionLink.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/CheckBoxCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/CheckBoxCustomization.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/CloudHostedInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/CloudHostedInstance.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ComboBoxCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ComboBoxCustomization.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Common/DynamicPaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Common/DynamicPaging.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Common/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Common/Enums.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Common/LcsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Common/LcsResponse.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Common/PaginatedRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Common/PaginatedRequest.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Common/PaginatedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Common/PaginatedResponse.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Connector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Connector.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Credentials.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/CustomLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/CustomLink.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/CustomizationGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/CustomizationGroup.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/CustomizationValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/CustomizationValue.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/CustomizationValueSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/CustomizationValueSelection.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/DatabaseMovementAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/DatabaseMovementAction.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/DefaultConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/DefaultConnector.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/DependentCustomizationValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/DependentCustomizationValues.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/DeployablePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/DeployablePackage.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/DeployablePackageHistoryDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/DeployablePackageHistoryDetails.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/DeploymentCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/DeploymentCustomization.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/DeploymentCustomizationGroupOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/DeploymentCustomizationGroupOption.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/DeploymentInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/DeploymentInstance.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/DeploymentProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/DeploymentProgress.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/DeploymentSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/DeploymentSummary.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/DetailsForExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/DetailsForExport.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/Counter.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/DiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/DiagnosticInfo.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/DistinctUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/DistinctUser.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/EnvironmentMonitoringData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/EnvironmentMonitoringData.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/ErrorEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/ErrorEvent.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/FastQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/FastQueryResult.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/InteractionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/InteractionData.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/Message.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/Metric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/Metric.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/MetricData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/MetricData.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/MetricDataValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/MetricDataValue.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/MonitoringInteractionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/MonitoringInteractionData.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/RoleInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/RoleInstance.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/SlowInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/SlowInteraction.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/SlowQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/SlowQuery.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/SqlAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/SqlAction.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/SqlUtilization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/SqlUtilization.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Diagnostics/UserLoginEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Diagnostics/UserLoginEvent.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ECommerceDeploymentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ECommerceDeploymentInfo.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ECommerceEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ECommerceEnvironment.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/EmptyFileAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/EmptyFileAsset.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/EnvironmentAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/EnvironmentAction.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/EnvironmentActionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/EnvironmentActionResponse.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/EnvironmentCDSDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/EnvironmentCDSDetails.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/EnvironmentCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/EnvironmentCustomization.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/EnvironmentCustomizationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/EnvironmentCustomizationRequest.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/EnvironmentDeployTopology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/EnvironmentDeployTopology.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/EnvironmentDeployTopologyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/EnvironmentDeployTopologyValue.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/EnvironmentNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/EnvironmentNotifications.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/EnvironmentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/EnvironmentStatus.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/EvalRuleLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/EvalRuleLog.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ExportedInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ExportedInstance.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/FieldValueCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/FieldValueCustomization.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/FileAssetProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/FileAssetProperty.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/FileAssetVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/FileAssetVersion.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/FileTypeProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/FileTypeProperty.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Hotfix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Hotfix.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/InstanceCustomization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/InstanceCustomization.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/InstanceReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/InstanceReference.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/InvitedBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/InvitedBy.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/JITOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/JITOptions.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/LabelValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/LabelValue.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/LearningTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/LearningTile.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Link.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Methodology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Methodology.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/MethodologyMasterTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/MethodologyMasterTemplate.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/MethodologyMasterTemplateMapValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/MethodologyMasterTemplateMapValue.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/MethodologyPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/MethodologyPhase.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/MethodologyProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/MethodologyProduct.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/MethodologyReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/MethodologyReference.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Module.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/NSGRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/NSGRule.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Navigationlink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Navigationlink.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/NetworkSecurityGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/NetworkSecurityGroup.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Notification.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/NotificationsUserList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/NotificationsUserList.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/OneVersionUpdateView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/OneVersionUpdateView.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/OneVersionViewVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/OneVersionViewVersion.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Organization.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/OrganizationReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/OrganizationReference.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/PagingParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/PagingParameters.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Plan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Plan.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Product.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ProductVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ProductVersion.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Project.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ProjectInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ProjectInstance.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ProjectMethodology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ProjectMethodology.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ProjectNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ProjectNotification.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ProjectOrganization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ProjectOrganization.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ProjectProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ProjectProduct.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ProjectReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ProjectReference.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ProjectSettings.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ProjectUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ProjectUser.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ProjectUserCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ProjectUserCapabilities.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/RDPConnectionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/RDPConnectionDetails.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Report.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/RetailBaseBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/RetailBaseBuild.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/RetailEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/RetailEnvironment.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/RetailResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/RetailResult.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/RetailSystemCheckHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/RetailSystemCheckHealth.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/SandboxAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/SandboxAddon.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ScaleUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ScaleUnit.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Service.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ServiceAccessState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ServiceAccessState.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ServiceToRestart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ServiceToRestart.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ServicingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ServicingInfo.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Sizing/ActivationHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Sizing/ActivationHistory.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Sizing/EstimateAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Sizing/EstimateAnswer.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Sizing/SubmittedEstimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Sizing/SubmittedEstimation.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Sizing/SubscriptionEstimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Sizing/SubscriptionEstimate.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Sizing/UsageAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Sizing/UsageAnswer.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/StartStopDeploymentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/StartStopDeploymentRequest.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Subscription.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/SupportRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/SupportRequest.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/SupportedPlatformVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/SupportedPlatformVersion.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/TenantPlanDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/TenantPlanDetails.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/TopologyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/TopologyValue.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/UpcomingCalendarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/UpcomingCalendarViewModel.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/UpcomingUpdateCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/UpcomingUpdateCalendar.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/UpdatePauseWindowForProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/UpdatePauseWindowForProject.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/UserProfile.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/ValidateSandboxServicingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/ValidateSandboxServicingData.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Model/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Model/Version.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LcsApiNetFramework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/LcsApiNetFramework/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milnet92/LcsApi/HEAD/README.md --------------------------------------------------------------------------------