@meshmakers/octo-services 3.3.1020 → 3.3.1040
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -452,6 +452,54 @@ interface DebugPointDataDto {
|
|
|
452
452
|
output: unknown | null;
|
|
453
453
|
}
|
|
454
454
|
|
|
455
|
+
/**
|
|
456
|
+
* Pipeline reassignment DTOs.
|
|
457
|
+
*
|
|
458
|
+
* Mirrors `Meshmakers.Octo.Communication.Contracts.DataTransferObjects.MovePipeline*`
|
|
459
|
+
* on the backend (octo-sdk). Studio's "move pipeline to another adapter"
|
|
460
|
+
* flow PATCHes the controller with one of these and renders the per-pipeline
|
|
461
|
+
* outcome list.
|
|
462
|
+
*/
|
|
463
|
+
/**
|
|
464
|
+
* Body for PATCH `{tenantId}/v1/pipeline/move-to-adapter`.
|
|
465
|
+
*
|
|
466
|
+
* Each pipeline is moved atomically on the server (Executes-association
|
|
467
|
+
* swap in one transaction). The bulk wrapper collects per-pipeline
|
|
468
|
+
* outcomes so a single failure does not abort the batch. When `redeploy`
|
|
469
|
+
* is set, the server re-fires `DeployPipeline` on the target adapter for
|
|
470
|
+
* every successfully moved pipeline; a redeploy failure does NOT roll
|
|
471
|
+
* the move back.
|
|
472
|
+
*/
|
|
473
|
+
interface MovePipelinesToAdapterRequestDto {
|
|
474
|
+
pipelineRtIds: string[];
|
|
475
|
+
targetAdapterRtId: string;
|
|
476
|
+
redeploy: boolean;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* Outcome of a single pipeline inside a bulk move. `success` is `true` iff
|
|
480
|
+
* the assoc swap committed cleanly. The old / new adapter ids are filled in
|
|
481
|
+
* even on success so the caller can render "moved from X to Y" toasts
|
|
482
|
+
* without an extra round-trip. When `redeploy=true` is set on the request
|
|
483
|
+
* and the move succeeded but the follow-up redeploy failed, `success`
|
|
484
|
+
* stays `true` and `errorMessage` carries the redeploy warning.
|
|
485
|
+
*/
|
|
486
|
+
interface MovePipelineResultDto {
|
|
487
|
+
pipelineRtId: string;
|
|
488
|
+
success: boolean;
|
|
489
|
+
oldAdapterRtId: string | null;
|
|
490
|
+
newAdapterRtId: string | null;
|
|
491
|
+
errorMessage: string | null;
|
|
492
|
+
}
|
|
493
|
+
/**
|
|
494
|
+
* Response of `MovePipelinesToAdapterRequestDto`. The server always returns
|
|
495
|
+
* 200 with the per-pipeline result list — even when every pipeline failed —
|
|
496
|
+
* so the client can inspect each outcome without parsing different HTTP-
|
|
497
|
+
* status shapes.
|
|
498
|
+
*/
|
|
499
|
+
interface MovePipelinesToAdapterResponseDto {
|
|
500
|
+
results: MovePipelineResultDto[];
|
|
501
|
+
}
|
|
502
|
+
|
|
455
503
|
interface CkModelCatalogDto {
|
|
456
504
|
name: string;
|
|
457
505
|
description: string;
|
|
@@ -41100,6 +41148,17 @@ declare class CommunicationService {
|
|
|
41100
41148
|
* helm-uninstall for the workload only; the pool itself stays deployed.
|
|
41101
41149
|
*/
|
|
41102
41150
|
undeployWorkload(tenantId: string, workloadRtId: string): Promise<void>;
|
|
41151
|
+
/**
|
|
41152
|
+
* Reassigns one or more pipelines from their current adapter to a new
|
|
41153
|
+
* target adapter (bulk). Each pipeline is moved atomically on the server
|
|
41154
|
+
* (Executes-assoc swap in a single transaction); per-pipeline failures
|
|
41155
|
+
* are returned in the result list without aborting the batch. When
|
|
41156
|
+
* `redeploy=true` is set, the server also re-fires `DeployPipeline` on
|
|
41157
|
+
* the target adapter for every successfully moved pipeline — a redeploy
|
|
41158
|
+
* failure leaves the move committed and surfaces as a warning in
|
|
41159
|
+
* `errorMessage` while `success` stays `true`.
|
|
41160
|
+
*/
|
|
41161
|
+
movePipelinesToAdapter(tenantId: string, request: MovePipelinesToAdapterRequestDto): Promise<MovePipelinesToAdapterResponseDto>;
|
|
41103
41162
|
/**
|
|
41104
41163
|
* Encrypts a plaintext value via the controller's at-rest encryption key
|
|
41105
41164
|
* and returns the sentinel-prefixed ciphertext (`enc:v1:...`). Use this
|
|
@@ -41432,4 +41491,4 @@ declare class OctoGraphQLServiceBase {
|
|
|
41432
41491
|
declare function provideOctoServices(octoServiceOptions?: OctoServiceOptions): EnvironmentProviders;
|
|
41433
41492
|
|
|
41434
41493
|
export { AggregationInputTypesDto, AggregationTypeDto, AggregationTypesDto, ArchiveStorageHealthDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto, BasicEnergyCarrierTypeDto, BasicEnergyDataQualityDto, BasicEnergyFacilityTypeDto, BasicEnergyProductionTypeDto, BasicEnergyStateDto, BasicLegalEntityTypeDto, BasicSalutationDto, BasicTypeOfTelephoneBasicDto, BasicTypeOfTelephoneEnhancedDto, BasicUnitOfMeasureDto, BlueprintConflictResolutionDto, BlueprintUpdateModeDto, BotService, CONFIGURATION_SERVICE, CkExtensionUpdateOperationsDto, CkModelCatalogService, CkModelService, CkRollupFunctionDto, CkTypeAttributeService, CkTypeMetaData, CkTypeSelectorService, CommunicationService, DeleteStrategiesDto, DeploymentState, EnergyIqDayOfWeekDto, EnergyIqLuminaireTypeDto, EnergyIqOperatingModeDto, EnergyIqShadingTypeDto, EnergyIqSpaceTypeDto, EnergyIqSystemTypeDto, FieldFilterOperatorsDto, GetCkModelByIdDocumentDto, GetCkModelByIdDtoGQL, GetCkRecordAttributesDocumentDto, GetCkRecordAttributesDtoGQL, GetCkTypeAttributesDocumentDto, GetCkTypeAttributesDtoGQL, GetCkTypeAvailableQueryColumnsDocumentDto, GetCkTypeAvailableQueryColumnsDtoGQL, GetCkTypesDocumentDto, GetCkTypesDtoGQL, GetDerivedCkTypesDocumentDto, GetDerivedCkTypesDtoGQL, GetEntitiesByCkTypeDocumentDto, GetEntitiesByCkTypeDtoGQL, GraphDirectionDto, GraphQL, GraphQLCloneIgnoredProperties, GraphQLCommonIgnoredProperties, GraphQlDataSource, HealthService, HealthStatus, IDENTITY_PROVIDER_TYPE_LABELS, IdentityProviderType, IdentityService, ImportStrategyDto, IndustryBasicAlarmPriorityDto, IndustryBasicAlarmSourceTypeDto, IndustryBasicAlarmStateDto, IndustryBasicAlarmTypeDto, IndustryBasicIecDataTypeDto, IndustryBasicMachineCapabilitiesDto, IndustryBasicMachineStateDto, IndustryEnergyDemandResponseMarketDto, IndustryEnergyDemandResponseStatusDto, IndustryEnergyTariffTypeDto, JobManagementService, LevelMetaData, LoggerSeverity, ModelStateDto, MultiplicitiesDto, NavigationFilterModeDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, QueryModeDto, RtAssociationMetaData, RuntimeEntityDialogDataSource, RuntimeEntitySelectDataSource, SearchFilterTypesDto, SortOrdersDto, SystemAggregationTypesDto, SystemCommunicationCommunicationStateDto, SystemCommunicationConfigurationStateDto, SystemCommunicationDeploymentStateDto, SystemCommunicationEnvironmentDto, SystemCommunicationHelmChannelDto, SystemCommunicationPipelineExecutionStatusDto, SystemCommunicationPipelineTriggerTypeDto, SystemEnvironmentModesDto, SystemFieldFilterOperatorDto, SystemIdentityTokenExpirationDto, SystemIdentityTokenTypeDto, SystemIdentityTokenUsageDto, SystemMaintenanceLevelsDto, SystemNavigationFilterModesDto, SystemNotificationEventLevelsDto, SystemNotificationEventSourcesDto, SystemNotificationEventStatesDto, SystemNotificationNotificationTypesDto, SystemNotificationRenderingTypesDto, SystemQueryTypesDto, SystemSortOrdersDto, SystemStreamDataBucketAlignmentDto, SystemStreamDataCkArchiveStatusDto, SystemStreamDataCkRollupFunctionDto, TENANT_ID_PROVIDER, TusUploadService, UpdateTypeDto, result as possibleTypes, provideOctoServices };
|
|
41435
|
-
export type { AddInConfiguration, AdminPanelConfigurationDto, AggregationDto, ArchiveColumnSpecInputDto, ArchivePathInfoDto, ArchiveStorageStatsDto, ArchiveTransitionResultDto, AttributeItem, AttributeSelectorResult, BasicAddressDto, BasicAddressInputDto, BasicAmountDto, BasicAmountInputDto, BasicAssetAssociationsArgsDto, BasicAssetChildrenArgsDto, BasicAssetConfiguredByArgsDto, BasicAssetConnectionDto, BasicAssetDto, BasicAssetEdgeDto, BasicAssetEventsArgsDto, BasicAssetInputDto, BasicAssetInputUpdateDto, BasicAssetMapsFromArgsDto, BasicAssetMapsToArgsDto, BasicAssetMutationsCreateArgsDto, BasicAssetMutationsDto, BasicAssetMutationsUpdateArgsDto, BasicAssetParentArgsDto, BasicAssetRelatesFromArgsDto, BasicAssetRelatesToArgsDto, BasicAssetTaggedByArgsDto, BasicAssetUpdateDto, BasicAssetUpdateMessageDto, BasicAsset_EventSourceUnionConnectionDto, BasicAsset_EventSourceUnionDto, BasicAsset_EventSourceUnionEdgeDto, BasicAsset_RelatesFromUnionConnectionDto, BasicAsset_RelatesFromUnionDto, BasicAsset_RelatesFromUnionEdgeDto, BasicBankAccountDto, BasicBankAccountInputDto, BasicCityAssociationsArgsDto, BasicCityChildrenArgsDto, BasicCityConfiguredByArgsDto, BasicCityConnectionDto, BasicCityDto, BasicCityEdgeDto, BasicCityInputDto, BasicCityInputUpdateDto, BasicCityMapsFromArgsDto, BasicCityMapsToArgsDto, BasicCityMutationsCreateArgsDto, BasicCityMutationsDto, BasicCityMutationsUpdateArgsDto, BasicCityParentArgsDto, BasicCityRelatesFromArgsDto, BasicCityRelatesToArgsDto, BasicCityTaggedByArgsDto, BasicCityUpdateDto, BasicCityUpdateMessageDto, BasicContactDto, BasicContactInputDto, BasicCountryAssociationsArgsDto, BasicCountryChildrenArgsDto, BasicCountryConfiguredByArgsDto, BasicCountryConnectionDto, BasicCountryDto, BasicCountryEdgeDto, BasicCountryInputDto, BasicCountryInputUpdateDto, BasicCountryMapsFromArgsDto, BasicCountryMapsToArgsDto, BasicCountryMutationsCreateArgsDto, BasicCountryMutationsDto, BasicCountryMutationsUpdateArgsDto, BasicCountryParentArgsDto, BasicCountryRelatesFromArgsDto, BasicCountryRelatesToArgsDto, BasicCountryTaggedByArgsDto, BasicCountryUpdateDto, BasicCountryUpdateMessageDto, BasicDistrictAssociationsArgsDto, BasicDistrictChildrenArgsDto, BasicDistrictConfiguredByArgsDto, BasicDistrictConnectionDto, BasicDistrictDto, BasicDistrictEdgeDto, BasicDistrictInputDto, BasicDistrictInputUpdateDto, BasicDistrictMapsFromArgsDto, BasicDistrictMapsToArgsDto, BasicDistrictMutationsCreateArgsDto, BasicDistrictMutationsDto, BasicDistrictMutationsUpdateArgsDto, BasicDistrictParentArgsDto, BasicDistrictRelatesFromArgsDto, BasicDistrictRelatesToArgsDto, BasicDistrictTaggedByArgsDto, BasicDistrictUpdateDto, BasicDistrictUpdateMessageDto, BasicDocumentAssociationsArgsDto, BasicDocumentConfiguredByArgsDto, BasicDocumentConnectionDto, BasicDocumentDto, BasicDocumentEdgeDto, BasicDocumentInterfaceConfiguredByArgsDto, BasicDocumentInterfaceDto, BasicDocumentInterfaceMapsFromArgsDto, BasicDocumentInterfaceMapsToArgsDto, BasicDocumentInterfaceRelatesFromArgsDto, BasicDocumentInterfaceRelatesToArgsDto, BasicDocumentInterfaceTaggedByArgsDto, BasicDocumentMapsFromArgsDto, BasicDocumentMapsToArgsDto, BasicDocumentRelatesFromArgsDto, BasicDocumentRelatesToArgsDto, BasicDocumentTaggedByArgsDto, BasicDocumentUpdateDto, BasicDocumentUpdateMessageDto, BasicEMailDto, BasicEMailInputDto, BasicEmployeeAssociationsArgsDto, BasicEmployeeConfiguredByArgsDto, BasicEmployeeConnectionDto, BasicEmployeeDto, BasicEmployeeEdgeDto, BasicEmployeeInputDto, BasicEmployeeInputUpdateDto, BasicEmployeeMapsFromArgsDto, BasicEmployeeMapsToArgsDto, BasicEmployeeMutationsCreateArgsDto, BasicEmployeeMutationsDto, BasicEmployeeMutationsUpdateArgsDto, BasicEmployeeRelatesFromArgsDto, BasicEmployeeRelatesToArgsDto, BasicEmployeeTaggedByArgsDto, BasicEmployeeUpdateDto, BasicEmployeeUpdateMessageDto, BasicEnergyConsumerAssociationsArgsDto, BasicEnergyConsumerChildrenArgsDto, BasicEnergyConsumerConfiguredByArgsDto, BasicEnergyConsumerConnectionDto, BasicEnergyConsumerDto, BasicEnergyConsumerEdgeDto, BasicEnergyConsumerInputDto, BasicEnergyConsumerInputUpdateDto, BasicEnergyConsumerMapsFromArgsDto, BasicEnergyConsumerMapsToArgsDto, BasicEnergyConsumerMutationsCreateArgsDto, BasicEnergyConsumerMutationsDto, BasicEnergyConsumerMutationsUpdateArgsDto, BasicEnergyConsumerParentArgsDto, BasicEnergyConsumerRelatesFromArgsDto, BasicEnergyConsumerRelatesToArgsDto, BasicEnergyConsumerTaggedByArgsDto, BasicEnergyConsumerUpdateDto, BasicEnergyConsumerUpdateMessageDto, BasicEnergyEdaMessageAssociationsArgsDto, BasicEnergyEdaMessageConfiguredByArgsDto, BasicEnergyEdaMessageConnectionDto, BasicEnergyEdaMessageDto, BasicEnergyEdaMessageEdgeDto, BasicEnergyEdaMessageInputDto, BasicEnergyEdaMessageInputUpdateDto, BasicEnergyEdaMessageMapsFromArgsDto, BasicEnergyEdaMessageMapsToArgsDto, BasicEnergyEdaMessageMutationsCreateArgsDto, BasicEnergyEdaMessageMutationsDto, BasicEnergyEdaMessageMutationsUpdateArgsDto, BasicEnergyEdaMessageProcessArgsDto, BasicEnergyEdaMessageRelatesFromArgsDto, BasicEnergyEdaMessageRelatesToArgsDto, BasicEnergyEdaMessageTaggedByArgsDto, BasicEnergyEdaMessageUpdateDto, BasicEnergyEdaMessageUpdateMessageDto, BasicEnergyEdaMessage_MessagesUnionConnectionDto, BasicEnergyEdaMessage_MessagesUnionDto, BasicEnergyEdaMessage_MessagesUnionEdgeDto, BasicEnergyEdaMeteringPointAssociationsArgsDto, BasicEnergyEdaMeteringPointConfiguredByArgsDto, BasicEnergyEdaMeteringPointConnectionDto, BasicEnergyEdaMeteringPointDto, BasicEnergyEdaMeteringPointEdgeDto, BasicEnergyEdaMeteringPointInputDto, BasicEnergyEdaMeteringPointInputUpdateDto, BasicEnergyEdaMeteringPointMapsFromArgsDto, BasicEnergyEdaMeteringPointMapsToArgsDto, BasicEnergyEdaMeteringPointMutationsCreateArgsDto, BasicEnergyEdaMeteringPointMutationsDto, BasicEnergyEdaMeteringPointMutationsUpdateArgsDto, BasicEnergyEdaMeteringPointRelatesFromArgsDto, BasicEnergyEdaMeteringPointRelatesToArgsDto, BasicEnergyEdaMeteringPointTaggedByArgsDto, BasicEnergyEdaMeteringPointUpdateDto, BasicEnergyEdaMeteringPointUpdateMessageDto, BasicEnergyEdaProcessAssociationsArgsDto, BasicEnergyEdaProcessConfiguredByArgsDto, BasicEnergyEdaProcessConnectionDto, BasicEnergyEdaProcessDto, BasicEnergyEdaProcessEdgeDto, BasicEnergyEdaProcessInputDto, BasicEnergyEdaProcessInputUpdateDto, BasicEnergyEdaProcessMapsFromArgsDto, BasicEnergyEdaProcessMapsToArgsDto, BasicEnergyEdaProcessMessagesArgsDto, BasicEnergyEdaProcessMutationsCreateArgsDto, BasicEnergyEdaProcessMutationsDto, BasicEnergyEdaProcessMutationsUpdateArgsDto, BasicEnergyEdaProcessRelatesFromArgsDto, BasicEnergyEdaProcessRelatesToArgsDto, BasicEnergyEdaProcessTaggedByArgsDto, BasicEnergyEdaProcessUpdateDto, BasicEnergyEdaProcessUpdateMessageDto, BasicEnergyEdaProcess_ProcessUnionConnectionDto, BasicEnergyEdaProcess_ProcessUnionDto, BasicEnergyEdaProcess_ProcessUnionEdgeDto, BasicEnergyEnergyMeasurementAssociationsArgsDto, BasicEnergyEnergyMeasurementConfiguredByArgsDto, BasicEnergyEnergyMeasurementConnectionDto, BasicEnergyEnergyMeasurementDto, BasicEnergyEnergyMeasurementEdgeDto, BasicEnergyEnergyMeasurementInputDto, BasicEnergyEnergyMeasurementInputUpdateDto, BasicEnergyEnergyMeasurementMapsFromArgsDto, BasicEnergyEnergyMeasurementMapsToArgsDto, BasicEnergyEnergyMeasurementMutationsCreateArgsDto, BasicEnergyEnergyMeasurementMutationsDto, BasicEnergyEnergyMeasurementMutationsUpdateArgsDto, BasicEnergyEnergyMeasurementParentArgsDto, BasicEnergyEnergyMeasurementRelatesFromArgsDto, BasicEnergyEnergyMeasurementRelatesToArgsDto, BasicEnergyEnergyMeasurementTaggedByArgsDto, BasicEnergyEnergyMeasurementUpdateDto, BasicEnergyEnergyMeasurementUpdateMessageDto, BasicEnergyEnergyMeasurement_ChildrenUnionConnectionDto, BasicEnergyEnergyMeasurement_ChildrenUnionDto, BasicEnergyEnergyMeasurement_ChildrenUnionEdgeDto, BasicEnergyMeteringPointAssociationsArgsDto, BasicEnergyMeteringPointChildrenArgsDto, BasicEnergyMeteringPointConfiguredByArgsDto, BasicEnergyMeteringPointConnectionDto, BasicEnergyMeteringPointDto, BasicEnergyMeteringPointEdgeDto, BasicEnergyMeteringPointInterfaceChildrenArgsDto, BasicEnergyMeteringPointInterfaceConfiguredByArgsDto, BasicEnergyMeteringPointInterfaceDto, BasicEnergyMeteringPointInterfaceMapsFromArgsDto, BasicEnergyMeteringPointInterfaceMapsToArgsDto, BasicEnergyMeteringPointInterfaceParentArgsDto, BasicEnergyMeteringPointInterfaceRelatesFromArgsDto, BasicEnergyMeteringPointInterfaceRelatesToArgsDto, BasicEnergyMeteringPointInterfaceTaggedByArgsDto, BasicEnergyMeteringPointMapsFromArgsDto, BasicEnergyMeteringPointMapsToArgsDto, BasicEnergyMeteringPointParentArgsDto, BasicEnergyMeteringPointRelatesFromArgsDto, BasicEnergyMeteringPointRelatesToArgsDto, BasicEnergyMeteringPointTaggedByArgsDto, BasicEnergyMeteringPointUpdateDto, BasicEnergyMeteringPointUpdateMessageDto, BasicEnergyMeteringPoint_ChildrenUnionConnectionDto, BasicEnergyMeteringPoint_ChildrenUnionDto, BasicEnergyMeteringPoint_ChildrenUnionEdgeDto, BasicEnergyMeteringPoint_ParentUnionConnectionDto, BasicEnergyMeteringPoint_ParentUnionDto, BasicEnergyMeteringPoint_ParentUnionEdgeDto, BasicEnergyOperatingFacilityAssociationsArgsDto, BasicEnergyOperatingFacilityChildrenArgsDto, BasicEnergyOperatingFacilityConfiguredByArgsDto, BasicEnergyOperatingFacilityConnectionDto, BasicEnergyOperatingFacilityDto, BasicEnergyOperatingFacilityEdgeDto, BasicEnergyOperatingFacilityInputDto, BasicEnergyOperatingFacilityInputUpdateDto, BasicEnergyOperatingFacilityMapsFromArgsDto, BasicEnergyOperatingFacilityMapsToArgsDto, BasicEnergyOperatingFacilityMutationsCreateArgsDto, BasicEnergyOperatingFacilityMutationsDto, BasicEnergyOperatingFacilityMutationsUpdateArgsDto, BasicEnergyOperatingFacilityParentArgsDto, BasicEnergyOperatingFacilityRelatesFromArgsDto, BasicEnergyOperatingFacilityRelatesToArgsDto, BasicEnergyOperatingFacilityTaggedByArgsDto, BasicEnergyOperatingFacilityUpdateDto, BasicEnergyOperatingFacilityUpdateMessageDto, BasicEnergyOperatingFacility_ParentUnionConnectionDto, BasicEnergyOperatingFacility_ParentUnionDto, BasicEnergyOperatingFacility_ParentUnionEdgeDto, BasicEnergyProducerAssociationsArgsDto, BasicEnergyProducerChildrenArgsDto, BasicEnergyProducerConfiguredByArgsDto, BasicEnergyProducerConnectionDto, BasicEnergyProducerDto, BasicEnergyProducerEdgeDto, BasicEnergyProducerInputDto, BasicEnergyProducerInputUpdateDto, BasicEnergyProducerMapsFromArgsDto, BasicEnergyProducerMapsToArgsDto, BasicEnergyProducerMutationsCreateArgsDto, BasicEnergyProducerMutationsDto, BasicEnergyProducerMutationsUpdateArgsDto, BasicEnergyProducerParentArgsDto, BasicEnergyProducerRelatesFromArgsDto, BasicEnergyProducerRelatesToArgsDto, BasicEnergyProducerTaggedByArgsDto, BasicEnergyProducerUpdateDto, BasicEnergyProducerUpdateMessageDto, BasicFaxNumberDto, BasicFaxNumberInputDto, BasicMarkingDto, BasicMarkingInputDto, BasicNamePlateDto, BasicNamePlateInputDto, BasicNamedEntityAssociationsArgsDto, BasicNamedEntityConfiguredByArgsDto, BasicNamedEntityConnectionDto, BasicNamedEntityDto, BasicNamedEntityEdgeDto, BasicNamedEntityInterfaceConfiguredByArgsDto, BasicNamedEntityInterfaceDto, BasicNamedEntityInterfaceMapsFromArgsDto, BasicNamedEntityInterfaceMapsToArgsDto, BasicNamedEntityInterfaceRelatesFromArgsDto, BasicNamedEntityInterfaceRelatesToArgsDto, BasicNamedEntityInterfaceTaggedByArgsDto, BasicNamedEntityMapsFromArgsDto, BasicNamedEntityMapsToArgsDto, BasicNamedEntityRelatesFromArgsDto, BasicNamedEntityRelatesToArgsDto, BasicNamedEntityTaggedByArgsDto, BasicNamedEntityUpdateDto, BasicNamedEntityUpdateMessageDto, BasicPhoneNumberDto, BasicPhoneNumberInputDto, BasicStateAssociationsArgsDto, BasicStateChildrenArgsDto, BasicStateConfiguredByArgsDto, BasicStateConnectionDto, BasicStateDto, BasicStateEdgeDto, BasicStateInputDto, BasicStateInputUpdateDto, BasicStateMapsFromArgsDto, BasicStateMapsToArgsDto, BasicStateMutationsCreateArgsDto, BasicStateMutationsDto, BasicStateMutationsUpdateArgsDto, BasicStateParentArgsDto, BasicStateRelatesFromArgsDto, BasicStateRelatesToArgsDto, BasicStateTaggedByArgsDto, BasicStateUpdateDto, BasicStateUpdateMessageDto, BasicTimeRangeDto, BasicTimeRangeInputDto, BasicTreeAssociationsArgsDto, BasicTreeChildrenArgsDto, BasicTreeConfiguredByArgsDto, BasicTreeConnectionDto, BasicTreeDto, BasicTreeEdgeDto, BasicTreeInputDto, BasicTreeInputUpdateDto, BasicTreeMapsFromArgsDto, BasicTreeMapsToArgsDto, BasicTreeMutationsCreateArgsDto, BasicTreeMutationsDto, BasicTreeMutationsUpdateArgsDto, BasicTreeNodeAssociationsArgsDto, BasicTreeNodeChildrenArgsDto, BasicTreeNodeConfiguredByArgsDto, BasicTreeNodeConnectionDto, BasicTreeNodeDto, BasicTreeNodeEdgeDto, BasicTreeNodeInputDto, BasicTreeNodeInputUpdateDto, BasicTreeNodeMapsFromArgsDto, BasicTreeNodeMapsToArgsDto, BasicTreeNodeMutationsCreateArgsDto, BasicTreeNodeMutationsDto, BasicTreeNodeMutationsUpdateArgsDto, BasicTreeNodeParentArgsDto, BasicTreeNodeRelatesFromArgsDto, BasicTreeNodeRelatesToArgsDto, BasicTreeNodeTaggedByArgsDto, BasicTreeNodeUpdateDto, BasicTreeNodeUpdateMessageDto, BasicTreeNode_ChildrenUnionConnectionDto, BasicTreeNode_ChildrenUnionDto, BasicTreeNode_ChildrenUnionEdgeDto, BasicTreeNode_ParentUnionConnectionDto, BasicTreeNode_ParentUnionDto, BasicTreeNode_ParentUnionEdgeDto, BasicTreeNode_RelatesToUnionConnectionDto, BasicTreeNode_RelatesToUnionDto, BasicTreeNode_RelatesToUnionEdgeDto, BasicTreeRelatesFromArgsDto, BasicTreeRelatesToArgsDto, BasicTreeTaggedByArgsDto, BasicTreeUpdateDto, BasicTreeUpdateMessageDto, BasicTree_ParentUnionConnectionDto, BasicTree_ParentUnionDto, BasicTree_ParentUnionEdgeDto, BatchDependencyResolutionResponseDto, BatchImportResponseDto, BlueprintApplyResultDto, BlueprintBackupDto, BlueprintCatalogDto, BlueprintConflictDto, BlueprintConflictResolutionInputDto, BlueprintDto, BlueprintHistoryItemDto, BlueprintInstallationDto, BlueprintListResponseDto, BlueprintRestoreResultDto, BlueprintUninstallResultDto, BlueprintUpdateInfoDto, BlueprintUpdatePreviewDto, BlueprintUpdateRequestInputDto, BlueprintsMutationApplyUpdateArgsDto, BlueprintsMutationDto, BlueprintsMutationInstallArgsDto, BlueprintsMutationRollbackArgsDto, BlueprintsMutationUninstallArgsDto, BlueprintsQueryDto, BlueprintsQueryListArgsDto, BlueprintsQueryPreviewUpdateArgsDto, BlueprintsQuerySearchArgsDto, CkAssociationRoleDto, CkAssociationRoleDtoConnectionDto, CkAssociationRoleDtoEdgeDto, CkAssociationRoleIdDto, CkAttributeDto, CkAttributeDtoConnectionDto, CkAttributeDtoEdgeDto, CkAttributeIdDto, CkAttributeMetaDataDto, CkEnumDto, CkEnumDtoConnectionDto, CkEnumDtoEdgeDto, CkEnumIdDto, CkEnumMutationsDto, CkEnumMutationsUpdateValueExtensionsArgsDto, CkEnumUpdateDto, CkEnumValueDto, CkEnumValueInputDto, CkModelAttributesArgsDto, CkModelCatalogDto, CkModelCatalogItemDto, CkModelCatalogListResponseDto, CkModelDto, CkModelDtoConnectionDto, CkModelDtoEdgeDto, CkModelEnumsArgsDto, CkModelIdDto, CkModelLibraryStatusItemDto, CkModelLibraryStatusResponseDto, CkModelRecordsArgsDto, CkModelTypesArgsDto, CkRecordAttributesArgsDto, CkRecordDerivedRecordTypesArgsDto, CkRecordDto, CkRecordDtoConnectionDto, CkRecordDtoEdgeDto, CkRecordIdDto, CkTypeAssociationDirectionDto, CkTypeAssociationDto, CkTypeAssociationSourceDto, CkTypeAttributeDto, CkTypeAttributeDtoConnectionDto, CkTypeAttributeDtoEdgeDto, CkTypeAttributeInfo, CkTypeAttributesArgsDto, CkTypeAvailableQueryColumnsArgsDto, CkTypeDerivedTypesArgsDto, CkTypeDirectAndIndirectDerivedTypesArgsDto, CkTypeDto, CkTypeDtoConnectionDto, CkTypeDtoEdgeDto, CkTypeIdDto, CkTypeQueryColumnDto, CkTypeQueryColumnDtoConnectionDto, CkTypeQueryColumnDtoEdgeDto, CkTypeSelectorItem, CkTypeSelectorResult, ClientDto, ClientMirrorBackfillResponseDto, ClientMirrorDto, ClientMirrorProvisionResponseDto, ClientScope, ConfigurationDto, ConstructionKitMutationsDto, ConstructionKitMutationsEnumsArgsDto, ConstructionKitQueryAssociationRolesArgsDto, ConstructionKitQueryAttributesArgsDto, ConstructionKitQueryDto, ConstructionKitQueryEnumsArgsDto, ConstructionKitQueryModelsArgsDto, ConstructionKitQueryRecordsArgsDto, ConstructionKitQueryTypesArgsDto, CreateExternalTenantUserMappingDto, CreateGroupDto, CreateRollupArchiveInputDto, CreateTimeRangeArchiveInputDto, DebugMessage, DebugPointDataDto, DebugPointNode, DependencyResolutionItemDto, DependencyResolutionResponseDto, DeploymentResultDto, DiagnosticsModel, EmailDomainGroupRuleDto, EmailDomainGroupRulesResult, EnergyIqAddressDto, EnergyIqAddressInputDto, EnergyIqAirHandlingUnitAssociationsArgsDto, EnergyIqAirHandlingUnitChildrenArgsDto, EnergyIqAirHandlingUnitConfiguredByArgsDto, EnergyIqAirHandlingUnitConnectionDto, EnergyIqAirHandlingUnitDto, EnergyIqAirHandlingUnitEdgeDto, EnergyIqAirHandlingUnitInputDto, EnergyIqAirHandlingUnitInputUpdateDto, EnergyIqAirHandlingUnitMapsFromArgsDto, EnergyIqAirHandlingUnitMapsToArgsDto, EnergyIqAirHandlingUnitMutationsCreateArgsDto, EnergyIqAirHandlingUnitMutationsDto, EnergyIqAirHandlingUnitMutationsUpdateArgsDto, EnergyIqAirHandlingUnitParentArgsDto, EnergyIqAirHandlingUnitRelatesFromArgsDto, EnergyIqAirHandlingUnitRelatesToArgsDto, EnergyIqAirHandlingUnitServedByArgsDto, EnergyIqAirHandlingUnitServesSpacesArgsDto, EnergyIqAirHandlingUnitTaggedByArgsDto, EnergyIqAirHandlingUnitUpdateDto, EnergyIqAirHandlingUnitUpdateMessageDto, EnergyIqAirHandlingUnit_ServesSpacesUnionConnectionDto, EnergyIqAirHandlingUnit_ServesSpacesUnionDto, EnergyIqAirHandlingUnit_ServesSpacesUnionEdgeDto, EnergyIqBatteryStorageAssociationsArgsDto, EnergyIqBatteryStorageChildrenArgsDto, EnergyIqBatteryStorageConfiguredByArgsDto, EnergyIqBatteryStorageConnectionDto, EnergyIqBatteryStorageDto, EnergyIqBatteryStorageEdgeDto, EnergyIqBatteryStorageInputDto, EnergyIqBatteryStorageInputUpdateDto, EnergyIqBatteryStorageMapsFromArgsDto, EnergyIqBatteryStorageMapsToArgsDto, EnergyIqBatteryStorageMutationsCreateArgsDto, EnergyIqBatteryStorageMutationsDto, EnergyIqBatteryStorageMutationsUpdateArgsDto, EnergyIqBatteryStorageParentArgsDto, EnergyIqBatteryStorageRelatesFromArgsDto, EnergyIqBatteryStorageRelatesToArgsDto, EnergyIqBatteryStorageTaggedByArgsDto, EnergyIqBatteryStorageUpdateDto, EnergyIqBatteryStorageUpdateMessageDto, EnergyIqBoilerAssociationsArgsDto, EnergyIqBoilerChildrenArgsDto, EnergyIqBoilerConfiguredByArgsDto, EnergyIqBoilerConnectionDto, EnergyIqBoilerDto, EnergyIqBoilerEdgeDto, EnergyIqBoilerInputDto, EnergyIqBoilerInputUpdateDto, EnergyIqBoilerMapsFromArgsDto, EnergyIqBoilerMapsToArgsDto, EnergyIqBoilerMutationsCreateArgsDto, EnergyIqBoilerMutationsDto, EnergyIqBoilerMutationsUpdateArgsDto, EnergyIqBoilerParentArgsDto, EnergyIqBoilerRelatesFromArgsDto, EnergyIqBoilerRelatesToArgsDto, EnergyIqBoilerServedByArgsDto, EnergyIqBoilerServesSpacesArgsDto, EnergyIqBoilerTaggedByArgsDto, EnergyIqBoilerUpdateDto, EnergyIqBoilerUpdateMessageDto, EnergyIqBuildingAssociationsArgsDto, EnergyIqBuildingChildrenArgsDto, EnergyIqBuildingConfiguredByArgsDto, EnergyIqBuildingConnectionDto, EnergyIqBuildingDto, EnergyIqBuildingEdgeDto, EnergyIqBuildingElementAssociationsArgsDto, EnergyIqBuildingElementConfiguredByArgsDto, EnergyIqBuildingElementConnectionDto, EnergyIqBuildingElementContainedElementsArgsDto, EnergyIqBuildingElementDto, EnergyIqBuildingElementEdgeDto, EnergyIqBuildingElementInterfaceConfiguredByArgsDto, EnergyIqBuildingElementInterfaceContainedElementsArgsDto, EnergyIqBuildingElementInterfaceDto, EnergyIqBuildingElementInterfaceMapsFromArgsDto, EnergyIqBuildingElementInterfaceMapsToArgsDto, EnergyIqBuildingElementInterfaceRelatesFromArgsDto, EnergyIqBuildingElementInterfaceRelatesToArgsDto, EnergyIqBuildingElementInterfaceTaggedByArgsDto, EnergyIqBuildingElementMapsFromArgsDto, EnergyIqBuildingElementMapsToArgsDto, EnergyIqBuildingElementRelatesFromArgsDto, EnergyIqBuildingElementRelatesToArgsDto, EnergyIqBuildingElementTaggedByArgsDto, EnergyIqBuildingElementUpdateDto, EnergyIqBuildingElementUpdateMessageDto, EnergyIqBuildingElement_ContainedInSpaceUnionConnectionDto, EnergyIqBuildingElement_ContainedInSpaceUnionDto, EnergyIqBuildingElement_ContainedInSpaceUnionEdgeDto, EnergyIqBuildingInputDto, EnergyIqBuildingInputUpdateDto, EnergyIqBuildingMapsFromArgsDto, EnergyIqBuildingMapsToArgsDto, EnergyIqBuildingMutationsCreateArgsDto, EnergyIqBuildingMutationsDto, EnergyIqBuildingMutationsUpdateArgsDto, EnergyIqBuildingParentArgsDto, EnergyIqBuildingRelatesFromArgsDto, EnergyIqBuildingRelatesToArgsDto, EnergyIqBuildingStoreyAssociationsArgsDto, EnergyIqBuildingStoreyChildrenArgsDto, EnergyIqBuildingStoreyConfiguredByArgsDto, EnergyIqBuildingStoreyConnectionDto, EnergyIqBuildingStoreyDto, EnergyIqBuildingStoreyEdgeDto, EnergyIqBuildingStoreyInputDto, EnergyIqBuildingStoreyInputUpdateDto, EnergyIqBuildingStoreyMapsFromArgsDto, EnergyIqBuildingStoreyMapsToArgsDto, EnergyIqBuildingStoreyMutationsCreateArgsDto, EnergyIqBuildingStoreyMutationsDto, EnergyIqBuildingStoreyMutationsUpdateArgsDto, EnergyIqBuildingStoreyParentArgsDto, EnergyIqBuildingStoreyRelatesFromArgsDto, EnergyIqBuildingStoreyRelatesToArgsDto, EnergyIqBuildingStoreyTaggedByArgsDto, EnergyIqBuildingStoreyUpdateDto, EnergyIqBuildingStoreyUpdateMessageDto, EnergyIqBuildingTaggedByArgsDto, EnergyIqBuildingUpdateDto, EnergyIqBuildingUpdateMessageDto, EnergyIqChillerAssociationsArgsDto, EnergyIqChillerChildrenArgsDto, EnergyIqChillerConfiguredByArgsDto, EnergyIqChillerConnectionDto, EnergyIqChillerDto, EnergyIqChillerEdgeDto, EnergyIqChillerInputDto, EnergyIqChillerInputUpdateDto, EnergyIqChillerMapsFromArgsDto, EnergyIqChillerMapsToArgsDto, EnergyIqChillerMutationsCreateArgsDto, EnergyIqChillerMutationsDto, EnergyIqChillerMutationsUpdateArgsDto, EnergyIqChillerParentArgsDto, EnergyIqChillerRelatesFromArgsDto, EnergyIqChillerRelatesToArgsDto, EnergyIqChillerServedByArgsDto, EnergyIqChillerServesSpacesArgsDto, EnergyIqChillerTaggedByArgsDto, EnergyIqChillerUpdateDto, EnergyIqChillerUpdateMessageDto, EnergyIqDoorAssociationsArgsDto, EnergyIqDoorConfiguredByArgsDto, EnergyIqDoorConnectionDto, EnergyIqDoorContainedElementsArgsDto, EnergyIqDoorContainedInSpaceArgsDto, EnergyIqDoorDto, EnergyIqDoorEdgeDto, EnergyIqDoorInputDto, EnergyIqDoorInputUpdateDto, EnergyIqDoorMapsFromArgsDto, EnergyIqDoorMapsToArgsDto, EnergyIqDoorMutationsCreateArgsDto, EnergyIqDoorMutationsDto, EnergyIqDoorMutationsUpdateArgsDto, EnergyIqDoorRelatesFromArgsDto, EnergyIqDoorRelatesToArgsDto, EnergyIqDoorTaggedByArgsDto, EnergyIqDoorUpdateDto, EnergyIqDoorUpdateMessageDto, EnergyIqDoor_ContainedElementsUnionConnectionDto, EnergyIqDoor_ContainedElementsUnionDto, EnergyIqDoor_ContainedElementsUnionEdgeDto, EnergyIqHaystackRefDto, EnergyIqHaystackRefInputDto, EnergyIqInverterAssociationsArgsDto, EnergyIqInverterChildrenArgsDto, EnergyIqInverterConfiguredByArgsDto, EnergyIqInverterConnectionDto, EnergyIqInverterDto, EnergyIqInverterEdgeDto, EnergyIqInverterInputDto, EnergyIqInverterInputUpdateDto, EnergyIqInverterMapsFromArgsDto, EnergyIqInverterMapsToArgsDto, EnergyIqInverterMutationsCreateArgsDto, EnergyIqInverterMutationsDto, EnergyIqInverterMutationsUpdateArgsDto, EnergyIqInverterParentArgsDto, EnergyIqInverterRelatesFromArgsDto, EnergyIqInverterRelatesToArgsDto, EnergyIqInverterTaggedByArgsDto, EnergyIqInverterUpdateDto, EnergyIqInverterUpdateMessageDto, EnergyIqLuminaireAssociationsArgsDto, EnergyIqLuminaireConfiguredByArgsDto, EnergyIqLuminaireConnectionDto, EnergyIqLuminaireContainedElementsArgsDto, EnergyIqLuminaireContainedInSpaceArgsDto, EnergyIqLuminaireDto, EnergyIqLuminaireEdgeDto, EnergyIqLuminaireInputDto, EnergyIqLuminaireInputUpdateDto, EnergyIqLuminaireMapsFromArgsDto, EnergyIqLuminaireMapsToArgsDto, EnergyIqLuminaireMutationsCreateArgsDto, EnergyIqLuminaireMutationsDto, EnergyIqLuminaireMutationsUpdateArgsDto, EnergyIqLuminaireRelatesFromArgsDto, EnergyIqLuminaireRelatesToArgsDto, EnergyIqLuminaireTaggedByArgsDto, EnergyIqLuminaireUpdateDto, EnergyIqLuminaireUpdateMessageDto, EnergyIqPhotovoltaicSystemAssociationsArgsDto, EnergyIqPhotovoltaicSystemChildrenArgsDto, EnergyIqPhotovoltaicSystemConfiguredByArgsDto, EnergyIqPhotovoltaicSystemConnectionDto, EnergyIqPhotovoltaicSystemDto, EnergyIqPhotovoltaicSystemEdgeDto, EnergyIqPhotovoltaicSystemInputDto, EnergyIqPhotovoltaicSystemInputUpdateDto, EnergyIqPhotovoltaicSystemMapsFromArgsDto, EnergyIqPhotovoltaicSystemMapsToArgsDto, EnergyIqPhotovoltaicSystemMutationsCreateArgsDto, EnergyIqPhotovoltaicSystemMutationsDto, EnergyIqPhotovoltaicSystemMutationsUpdateArgsDto, EnergyIqPhotovoltaicSystemParentArgsDto, EnergyIqPhotovoltaicSystemRelatesFromArgsDto, EnergyIqPhotovoltaicSystemRelatesToArgsDto, EnergyIqPhotovoltaicSystemTaggedByArgsDto, EnergyIqPhotovoltaicSystemUpdateDto, EnergyIqPhotovoltaicSystemUpdateMessageDto, EnergyIqPumpAssociationsArgsDto, EnergyIqPumpChildrenArgsDto, EnergyIqPumpConfiguredByArgsDto, EnergyIqPumpConnectionDto, EnergyIqPumpDto, EnergyIqPumpEdgeDto, EnergyIqPumpInputDto, EnergyIqPumpInputUpdateDto, EnergyIqPumpMapsFromArgsDto, EnergyIqPumpMapsToArgsDto, EnergyIqPumpMutationsCreateArgsDto, EnergyIqPumpMutationsDto, EnergyIqPumpMutationsUpdateArgsDto, EnergyIqPumpParentArgsDto, EnergyIqPumpRelatesFromArgsDto, EnergyIqPumpRelatesToArgsDto, EnergyIqPumpServedByArgsDto, EnergyIqPumpServesSpacesArgsDto, EnergyIqPumpTaggedByArgsDto, EnergyIqPumpUpdateDto, EnergyIqPumpUpdateMessageDto, EnergyIqScheduleEntryDto, EnergyIqScheduleEntryInputDto, EnergyIqShadingDeviceAssociationsArgsDto, EnergyIqShadingDeviceConfiguredByArgsDto, EnergyIqShadingDeviceConnectionDto, EnergyIqShadingDeviceContainedElementsArgsDto, EnergyIqShadingDeviceContainedInSpaceArgsDto, EnergyIqShadingDeviceDto, EnergyIqShadingDeviceEdgeDto, EnergyIqShadingDeviceInputDto, EnergyIqShadingDeviceInputUpdateDto, EnergyIqShadingDeviceMapsFromArgsDto, EnergyIqShadingDeviceMapsToArgsDto, EnergyIqShadingDeviceMutationsCreateArgsDto, EnergyIqShadingDeviceMutationsDto, EnergyIqShadingDeviceMutationsUpdateArgsDto, EnergyIqShadingDeviceRelatesFromArgsDto, EnergyIqShadingDeviceRelatesToArgsDto, EnergyIqShadingDeviceTaggedByArgsDto, EnergyIqShadingDeviceUpdateDto, EnergyIqShadingDeviceUpdateMessageDto, EnergyIqSiteAssociationsArgsDto, EnergyIqSiteChildrenArgsDto, EnergyIqSiteConfiguredByArgsDto, EnergyIqSiteConnectionDto, EnergyIqSiteDto, EnergyIqSiteEdgeDto, EnergyIqSiteInputDto, EnergyIqSiteInputUpdateDto, EnergyIqSiteMapsFromArgsDto, EnergyIqSiteMapsToArgsDto, EnergyIqSiteMutationsCreateArgsDto, EnergyIqSiteMutationsDto, EnergyIqSiteMutationsUpdateArgsDto, EnergyIqSiteRelatesFromArgsDto, EnergyIqSiteRelatesToArgsDto, EnergyIqSiteTaggedByArgsDto, EnergyIqSiteUpdateDto, EnergyIqSiteUpdateMessageDto, EnergyIqSpaceAssociationsArgsDto, EnergyIqSpaceChildrenArgsDto, EnergyIqSpaceConfiguredByArgsDto, EnergyIqSpaceConnectionDto, EnergyIqSpaceContainedElementsArgsDto, EnergyIqSpaceContainedInSpaceArgsDto, EnergyIqSpaceDto, EnergyIqSpaceEdgeDto, EnergyIqSpaceInputDto, EnergyIqSpaceInputUpdateDto, EnergyIqSpaceMapsFromArgsDto, EnergyIqSpaceMapsToArgsDto, EnergyIqSpaceMutationsCreateArgsDto, EnergyIqSpaceMutationsDto, EnergyIqSpaceMutationsUpdateArgsDto, EnergyIqSpaceParentArgsDto, EnergyIqSpaceRelatesFromArgsDto, EnergyIqSpaceRelatesToArgsDto, EnergyIqSpaceServedByArgsDto, EnergyIqSpaceServesSpacesArgsDto, EnergyIqSpaceTaggedByArgsDto, EnergyIqSpaceUpdateDto, EnergyIqSpaceUpdateMessageDto, EnergyIqSpace_ContainedElementsUnionConnectionDto, EnergyIqSpace_ContainedElementsUnionDto, EnergyIqSpace_ContainedElementsUnionEdgeDto, EnergyIqSpace_ContainedInSpaceUnionConnectionDto, EnergyIqSpace_ContainedInSpaceUnionDto, EnergyIqSpace_ContainedInSpaceUnionEdgeDto, EnergyIqSpace_ServedByUnionConnectionDto, EnergyIqSpace_ServedByUnionDto, EnergyIqSpace_ServedByUnionEdgeDto, EnergyIqSpace_ServesSpacesUnionConnectionDto, EnergyIqSpace_ServesSpacesUnionDto, EnergyIqSpace_ServesSpacesUnionEdgeDto, EnergyIqTechnicalSystemAssociationsArgsDto, EnergyIqTechnicalSystemChildrenArgsDto, EnergyIqTechnicalSystemConfiguredByArgsDto, EnergyIqTechnicalSystemConnectionDto, EnergyIqTechnicalSystemDto, EnergyIqTechnicalSystemEdgeDto, EnergyIqTechnicalSystemInterfaceChildrenArgsDto, EnergyIqTechnicalSystemInterfaceConfiguredByArgsDto, EnergyIqTechnicalSystemInterfaceDto, EnergyIqTechnicalSystemInterfaceMapsFromArgsDto, EnergyIqTechnicalSystemInterfaceMapsToArgsDto, EnergyIqTechnicalSystemInterfaceParentArgsDto, EnergyIqTechnicalSystemInterfaceRelatesFromArgsDto, EnergyIqTechnicalSystemInterfaceRelatesToArgsDto, EnergyIqTechnicalSystemInterfaceServesSpacesArgsDto, EnergyIqTechnicalSystemInterfaceTaggedByArgsDto, EnergyIqTechnicalSystemMapsFromArgsDto, EnergyIqTechnicalSystemMapsToArgsDto, EnergyIqTechnicalSystemParentArgsDto, EnergyIqTechnicalSystemRelatesFromArgsDto, EnergyIqTechnicalSystemRelatesToArgsDto, EnergyIqTechnicalSystemServesSpacesArgsDto, EnergyIqTechnicalSystemTaggedByArgsDto, EnergyIqTechnicalSystemUpdateDto, EnergyIqTechnicalSystemUpdateMessageDto, EnergyIqTechnicalSystem_ServedByUnionConnectionDto, EnergyIqTechnicalSystem_ServedByUnionDto, EnergyIqTechnicalSystem_ServedByUnionEdgeDto, EnergyIqWallAssociationsArgsDto, EnergyIqWallConfiguredByArgsDto, EnergyIqWallConnectionDto, EnergyIqWallContainedElementsArgsDto, EnergyIqWallContainedInSpaceArgsDto, EnergyIqWallDto, EnergyIqWallEdgeDto, EnergyIqWallInputDto, EnergyIqWallInputUpdateDto, EnergyIqWallMapsFromArgsDto, EnergyIqWallMapsToArgsDto, EnergyIqWallMutationsCreateArgsDto, EnergyIqWallMutationsDto, EnergyIqWallMutationsUpdateArgsDto, EnergyIqWallRelatesFromArgsDto, EnergyIqWallRelatesToArgsDto, EnergyIqWallTaggedByArgsDto, EnergyIqWallUpdateDto, EnergyIqWallUpdateMessageDto, EnergyIqWindowAssociationsArgsDto, EnergyIqWindowConfiguredByArgsDto, EnergyIqWindowConnectionDto, EnergyIqWindowContainedElementsArgsDto, EnergyIqWindowContainedInSpaceArgsDto, EnergyIqWindowDto, EnergyIqWindowEdgeDto, EnergyIqWindowInputDto, EnergyIqWindowInputUpdateDto, EnergyIqWindowMapsFromArgsDto, EnergyIqWindowMapsToArgsDto, EnergyIqWindowMutationsCreateArgsDto, EnergyIqWindowMutationsDto, EnergyIqWindowMutationsUpdateArgsDto, EnergyIqWindowRelatesFromArgsDto, EnergyIqWindowRelatesToArgsDto, EnergyIqWindowTaggedByArgsDto, EnergyIqWindowUpdateDto, EnergyIqWindowUpdateMessageDto, EnergyIqpvStringAssociationsArgsDto, EnergyIqpvStringChildrenArgsDto, EnergyIqpvStringConfiguredByArgsDto, EnergyIqpvStringConnectionDto, EnergyIqpvStringDto, EnergyIqpvStringEdgeDto, EnergyIqpvStringInputDto, EnergyIqpvStringInputUpdateDto, EnergyIqpvStringMapsFromArgsDto, EnergyIqpvStringMapsToArgsDto, EnergyIqpvStringMutationsCreateArgsDto, EnergyIqpvStringMutationsDto, EnergyIqpvStringMutationsUpdateArgsDto, EnergyIqpvStringParentArgsDto, EnergyIqpvStringRelatesFromArgsDto, EnergyIqpvStringRelatesToArgsDto, EnergyIqpvStringTaggedByArgsDto, EnergyIqpvStringUpdateDto, EnergyIqpvStringUpdateMessageDto, Exact, ExportModelResponseDto, ExternalLoginDto, ExternalTenantUserMappingDto, FieldAggregationDto, FieldFilterDto, FieldGroupByAggregationInputDto, GeneratedPasswordDto, GetCkModelByIdQueryDto, GetCkModelByIdQueryVariablesDto, GetCkRecordAttributesQueryDto, GetCkRecordAttributesQueryVariablesDto, GetCkTypeAttributesQueryDto, GetCkTypeAttributesQueryVariablesDto, GetCkTypeAvailableQueryColumnsQueryDto, GetCkTypeAvailableQueryColumnsQueryVariablesDto, GetCkTypesQueryDto, GetCkTypesQueryVariablesDto, GetDerivedCkTypesQueryDto, GetDerivedCkTypesQueryVariablesDto, GetEntitiesByCkTypeQueryDto, GetEntitiesByCkTypeQueryVariablesDto, GlobalQueryOptionsDto, GrantTypes, GroupDto, HealthCheck, HealthCheckResult, IConfigurationService, IQueryVariablesDto, IdentityProviderDto, IdentityProvidersResult, ImportFromCatalogBatchRequestDto, ImportFromCatalogRequestDto, ImportModelResponseDto, Incremental, IndustryBasicAlarmAssociationsArgsDto, IndustryBasicAlarmConfiguredByArgsDto, IndustryBasicAlarmConnectionDto, IndustryBasicAlarmDto, IndustryBasicAlarmEdgeDto, IndustryBasicAlarmEventSourceArgsDto, IndustryBasicAlarmInputDto, IndustryBasicAlarmInputUpdateDto, IndustryBasicAlarmMapsFromArgsDto, IndustryBasicAlarmMapsToArgsDto, IndustryBasicAlarmMutationsCreateArgsDto, IndustryBasicAlarmMutationsDto, IndustryBasicAlarmMutationsUpdateArgsDto, IndustryBasicAlarmRelatesFromArgsDto, IndustryBasicAlarmRelatesToArgsDto, IndustryBasicAlarmTaggedByArgsDto, IndustryBasicAlarmUpdateDto, IndustryBasicAlarmUpdateMessageDto, IndustryBasicEventAssociationsArgsDto, IndustryBasicEventConfiguredByArgsDto, IndustryBasicEventConnectionDto, IndustryBasicEventDto, IndustryBasicEventEdgeDto, IndustryBasicEventEventSourceArgsDto, IndustryBasicEventInputDto, IndustryBasicEventInputUpdateDto, IndustryBasicEventMapsFromArgsDto, IndustryBasicEventMapsToArgsDto, IndustryBasicEventMutationsCreateArgsDto, IndustryBasicEventMutationsDto, IndustryBasicEventMutationsUpdateArgsDto, IndustryBasicEventRelatesFromArgsDto, IndustryBasicEventRelatesToArgsDto, IndustryBasicEventTaggedByArgsDto, IndustryBasicEventUpdateDto, IndustryBasicEventUpdateMessageDto, IndustryBasicEvent_EventsUnionConnectionDto, IndustryBasicEvent_EventsUnionDto, IndustryBasicEvent_EventsUnionEdgeDto, IndustryBasicMachineAssociationsArgsDto, IndustryBasicMachineChildrenArgsDto, IndustryBasicMachineConfiguredByArgsDto, IndustryBasicMachineConnectionDto, IndustryBasicMachineDto, IndustryBasicMachineEdgeDto, IndustryBasicMachineEventsArgsDto, IndustryBasicMachineInputDto, IndustryBasicMachineInputUpdateDto, IndustryBasicMachineMapsFromArgsDto, IndustryBasicMachineMapsToArgsDto, IndustryBasicMachineMutationsCreateArgsDto, IndustryBasicMachineMutationsDto, IndustryBasicMachineMutationsUpdateArgsDto, IndustryBasicMachineParentArgsDto, IndustryBasicMachineRelatesFromArgsDto, IndustryBasicMachineRelatesToArgsDto, IndustryBasicMachineRuntimeVariablesArgsDto, IndustryBasicMachineTaggedByArgsDto, IndustryBasicMachineUpdateDto, IndustryBasicMachineUpdateMessageDto, IndustryBasicMachine_MachineUnionConnectionDto, IndustryBasicMachine_MachineUnionDto, IndustryBasicMachine_MachineUnionEdgeDto, IndustryBasicRuntimeVariableAssociationsArgsDto, IndustryBasicRuntimeVariableConfiguredByArgsDto, IndustryBasicRuntimeVariableConnectionDto, IndustryBasicRuntimeVariableDto, IndustryBasicRuntimeVariableEdgeDto, IndustryBasicRuntimeVariableInputDto, IndustryBasicRuntimeVariableInputUpdateDto, IndustryBasicRuntimeVariableMachineArgsDto, IndustryBasicRuntimeVariableMapsFromArgsDto, IndustryBasicRuntimeVariableMapsToArgsDto, IndustryBasicRuntimeVariableMutationsCreateArgsDto, IndustryBasicRuntimeVariableMutationsDto, IndustryBasicRuntimeVariableMutationsUpdateArgsDto, IndustryBasicRuntimeVariableRelatesFromArgsDto, IndustryBasicRuntimeVariableRelatesToArgsDto, IndustryBasicRuntimeVariableTaggedByArgsDto, IndustryBasicRuntimeVariableUpdateDto, IndustryBasicRuntimeVariableUpdateMessageDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionConnectionDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionEdgeDto, IndustryEnergyDemandResponseEventAssociationsArgsDto, IndustryEnergyDemandResponseEventConfiguredByArgsDto, IndustryEnergyDemandResponseEventConnectionDto, IndustryEnergyDemandResponseEventDto, IndustryEnergyDemandResponseEventEdgeDto, IndustryEnergyDemandResponseEventInputDto, IndustryEnergyDemandResponseEventInputUpdateDto, IndustryEnergyDemandResponseEventMapsFromArgsDto, IndustryEnergyDemandResponseEventMapsToArgsDto, IndustryEnergyDemandResponseEventMutationsCreateArgsDto, IndustryEnergyDemandResponseEventMutationsDto, IndustryEnergyDemandResponseEventMutationsUpdateArgsDto, IndustryEnergyDemandResponseEventParentArgsDto, IndustryEnergyDemandResponseEventRelatesFromArgsDto, IndustryEnergyDemandResponseEventRelatesToArgsDto, IndustryEnergyDemandResponseEventTaggedByArgsDto, IndustryEnergyDemandResponseEventUpdateDto, IndustryEnergyDemandResponseEventUpdateMessageDto, IndustryEnergyEnergyConsumerAssociationsArgsDto, IndustryEnergyEnergyConsumerChildrenArgsDto, IndustryEnergyEnergyConsumerConfiguredByArgsDto, IndustryEnergyEnergyConsumerConnectionDto, IndustryEnergyEnergyConsumerDto, IndustryEnergyEnergyConsumerEdgeDto, IndustryEnergyEnergyConsumerEventsArgsDto, IndustryEnergyEnergyConsumerInputDto, IndustryEnergyEnergyConsumerInputUpdateDto, IndustryEnergyEnergyConsumerMapsFromArgsDto, IndustryEnergyEnergyConsumerMapsToArgsDto, IndustryEnergyEnergyConsumerMutationsCreateArgsDto, IndustryEnergyEnergyConsumerMutationsDto, IndustryEnergyEnergyConsumerMutationsUpdateArgsDto, IndustryEnergyEnergyConsumerParentArgsDto, IndustryEnergyEnergyConsumerRelatesFromArgsDto, IndustryEnergyEnergyConsumerRelatesToArgsDto, IndustryEnergyEnergyConsumerRuntimeVariablesArgsDto, IndustryEnergyEnergyConsumerTaggedByArgsDto, IndustryEnergyEnergyConsumerUpdateDto, IndustryEnergyEnergyConsumerUpdateMessageDto, IndustryEnergyEnergyCostAssociationsArgsDto, IndustryEnergyEnergyCostConfiguredByArgsDto, IndustryEnergyEnergyCostConnectionDto, IndustryEnergyEnergyCostDto, IndustryEnergyEnergyCostEdgeDto, IndustryEnergyEnergyCostInputDto, IndustryEnergyEnergyCostInputUpdateDto, IndustryEnergyEnergyCostMapsFromArgsDto, IndustryEnergyEnergyCostMapsToArgsDto, IndustryEnergyEnergyCostMutationsCreateArgsDto, IndustryEnergyEnergyCostMutationsDto, IndustryEnergyEnergyCostMutationsUpdateArgsDto, IndustryEnergyEnergyCostParentArgsDto, IndustryEnergyEnergyCostRelatesFromArgsDto, IndustryEnergyEnergyCostRelatesToArgsDto, IndustryEnergyEnergyCostTaggedByArgsDto, IndustryEnergyEnergyCostUpdateDto, IndustryEnergyEnergyCostUpdateMessageDto, IndustryEnergyEnergyForecastAssociationsArgsDto, IndustryEnergyEnergyForecastConfiguredByArgsDto, IndustryEnergyEnergyForecastConnectionDto, IndustryEnergyEnergyForecastDto, IndustryEnergyEnergyForecastEdgeDto, IndustryEnergyEnergyForecastInputDto, IndustryEnergyEnergyForecastInputUpdateDto, IndustryEnergyEnergyForecastMapsFromArgsDto, IndustryEnergyEnergyForecastMapsToArgsDto, IndustryEnergyEnergyForecastMutationsCreateArgsDto, IndustryEnergyEnergyForecastMutationsDto, IndustryEnergyEnergyForecastMutationsUpdateArgsDto, IndustryEnergyEnergyForecastParentArgsDto, IndustryEnergyEnergyForecastRelatesFromArgsDto, IndustryEnergyEnergyForecastRelatesToArgsDto, IndustryEnergyEnergyForecastTaggedByArgsDto, IndustryEnergyEnergyForecastUpdateDto, IndustryEnergyEnergyForecastUpdateMessageDto, IndustryEnergyEnergyMeterAssociationsArgsDto, IndustryEnergyEnergyMeterChildrenArgsDto, IndustryEnergyEnergyMeterConfiguredByArgsDto, IndustryEnergyEnergyMeterConnectionDto, IndustryEnergyEnergyMeterDto, IndustryEnergyEnergyMeterEdgeDto, IndustryEnergyEnergyMeterEventsArgsDto, IndustryEnergyEnergyMeterInputDto, IndustryEnergyEnergyMeterInputUpdateDto, IndustryEnergyEnergyMeterMapsFromArgsDto, IndustryEnergyEnergyMeterMapsToArgsDto, IndustryEnergyEnergyMeterMutationsCreateArgsDto, IndustryEnergyEnergyMeterMutationsDto, IndustryEnergyEnergyMeterMutationsUpdateArgsDto, IndustryEnergyEnergyMeterParentArgsDto, IndustryEnergyEnergyMeterRelatesFromArgsDto, IndustryEnergyEnergyMeterRelatesToArgsDto, IndustryEnergyEnergyMeterRuntimeVariablesArgsDto, IndustryEnergyEnergyMeterTaggedByArgsDto, IndustryEnergyEnergyMeterUpdateDto, IndustryEnergyEnergyMeterUpdateMessageDto, IndustryEnergyEnergyPerformanceIndicatorAssociationsArgsDto, IndustryEnergyEnergyPerformanceIndicatorConfiguredByArgsDto, IndustryEnergyEnergyPerformanceIndicatorConnectionDto, IndustryEnergyEnergyPerformanceIndicatorDto, IndustryEnergyEnergyPerformanceIndicatorEdgeDto, IndustryEnergyEnergyPerformanceIndicatorInputDto, IndustryEnergyEnergyPerformanceIndicatorInputUpdateDto, IndustryEnergyEnergyPerformanceIndicatorMapsFromArgsDto, IndustryEnergyEnergyPerformanceIndicatorMapsToArgsDto, IndustryEnergyEnergyPerformanceIndicatorMutationsCreateArgsDto, IndustryEnergyEnergyPerformanceIndicatorMutationsDto, IndustryEnergyEnergyPerformanceIndicatorMutationsUpdateArgsDto, IndustryEnergyEnergyPerformanceIndicatorParentArgsDto, IndustryEnergyEnergyPerformanceIndicatorRelatesFromArgsDto, IndustryEnergyEnergyPerformanceIndicatorRelatesToArgsDto, IndustryEnergyEnergyPerformanceIndicatorTaggedByArgsDto, IndustryEnergyEnergyPerformanceIndicatorUpdateDto, IndustryEnergyEnergyPerformanceIndicatorUpdateMessageDto, IndustryEnergyEnergyStorageAssociationsArgsDto, IndustryEnergyEnergyStorageChildrenArgsDto, IndustryEnergyEnergyStorageConfiguredByArgsDto, IndustryEnergyEnergyStorageConnectionDto, IndustryEnergyEnergyStorageDto, IndustryEnergyEnergyStorageEdgeDto, IndustryEnergyEnergyStorageEventsArgsDto, IndustryEnergyEnergyStorageInputDto, IndustryEnergyEnergyStorageInputUpdateDto, IndustryEnergyEnergyStorageMapsFromArgsDto, IndustryEnergyEnergyStorageMapsToArgsDto, IndustryEnergyEnergyStorageMutationsCreateArgsDto, IndustryEnergyEnergyStorageMutationsDto, IndustryEnergyEnergyStorageMutationsUpdateArgsDto, IndustryEnergyEnergyStorageParentArgsDto, IndustryEnergyEnergyStorageRelatesFromArgsDto, IndustryEnergyEnergyStorageRelatesToArgsDto, IndustryEnergyEnergyStorageRuntimeVariablesArgsDto, IndustryEnergyEnergyStorageTaggedByArgsDto, IndustryEnergyEnergyStorageUpdateDto, IndustryEnergyEnergyStorageUpdateMessageDto, IndustryEnergyInverterAssociationsArgsDto, IndustryEnergyInverterChildrenArgsDto, IndustryEnergyInverterConfiguredByArgsDto, IndustryEnergyInverterConnectionDto, IndustryEnergyInverterDto, IndustryEnergyInverterEdgeDto, IndustryEnergyInverterEventsArgsDto, IndustryEnergyInverterInputDto, IndustryEnergyInverterInputUpdateDto, IndustryEnergyInverterMapsFromArgsDto, IndustryEnergyInverterMapsToArgsDto, IndustryEnergyInverterMutationsCreateArgsDto, IndustryEnergyInverterMutationsDto, IndustryEnergyInverterMutationsUpdateArgsDto, IndustryEnergyInverterParentArgsDto, IndustryEnergyInverterRelatesFromArgsDto, IndustryEnergyInverterRelatesToArgsDto, IndustryEnergyInverterRuntimeVariablesArgsDto, IndustryEnergyInverterTaggedByArgsDto, IndustryEnergyInverterUpdateDto, IndustryEnergyInverterUpdateMessageDto, IndustryEnergyPhaseInfoDto, IndustryEnergyPhaseInfoInputDto, IndustryEnergyPhotovoltaicSystemAssociationsArgsDto, IndustryEnergyPhotovoltaicSystemChildrenArgsDto, IndustryEnergyPhotovoltaicSystemConfiguredByArgsDto, IndustryEnergyPhotovoltaicSystemConnectionDto, IndustryEnergyPhotovoltaicSystemDto, IndustryEnergyPhotovoltaicSystemEdgeDto, IndustryEnergyPhotovoltaicSystemEventsArgsDto, IndustryEnergyPhotovoltaicSystemInputDto, IndustryEnergyPhotovoltaicSystemInputUpdateDto, IndustryEnergyPhotovoltaicSystemMapsFromArgsDto, IndustryEnergyPhotovoltaicSystemMapsToArgsDto, IndustryEnergyPhotovoltaicSystemModuleAssociationsArgsDto, IndustryEnergyPhotovoltaicSystemModuleChildrenArgsDto, IndustryEnergyPhotovoltaicSystemModuleConfiguredByArgsDto, IndustryEnergyPhotovoltaicSystemModuleConnectionDto, IndustryEnergyPhotovoltaicSystemModuleDto, IndustryEnergyPhotovoltaicSystemModuleEdgeDto, IndustryEnergyPhotovoltaicSystemModuleEventsArgsDto, IndustryEnergyPhotovoltaicSystemModuleInputDto, IndustryEnergyPhotovoltaicSystemModuleInputUpdateDto, IndustryEnergyPhotovoltaicSystemModuleMapsFromArgsDto, IndustryEnergyPhotovoltaicSystemModuleMapsToArgsDto, IndustryEnergyPhotovoltaicSystemModuleMutationsCreateArgsDto, IndustryEnergyPhotovoltaicSystemModuleMutationsDto, IndustryEnergyPhotovoltaicSystemModuleMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicSystemModuleParentArgsDto, IndustryEnergyPhotovoltaicSystemModuleRelatesFromArgsDto, IndustryEnergyPhotovoltaicSystemModuleRelatesToArgsDto, IndustryEnergyPhotovoltaicSystemModuleRuntimeVariablesArgsDto, IndustryEnergyPhotovoltaicSystemModuleTaggedByArgsDto, IndustryEnergyPhotovoltaicSystemModuleUpdateDto, IndustryEnergyPhotovoltaicSystemModuleUpdateMessageDto, IndustryEnergyPhotovoltaicSystemMutationsCreateArgsDto, IndustryEnergyPhotovoltaicSystemMutationsDto, IndustryEnergyPhotovoltaicSystemMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicSystemParentArgsDto, IndustryEnergyPhotovoltaicSystemRelatesFromArgsDto, IndustryEnergyPhotovoltaicSystemRelatesToArgsDto, IndustryEnergyPhotovoltaicSystemStringAssociationsArgsDto, IndustryEnergyPhotovoltaicSystemStringChildrenArgsDto, IndustryEnergyPhotovoltaicSystemStringConfiguredByArgsDto, IndustryEnergyPhotovoltaicSystemStringConnectionDto, IndustryEnergyPhotovoltaicSystemStringDto, IndustryEnergyPhotovoltaicSystemStringEdgeDto, IndustryEnergyPhotovoltaicSystemStringEventsArgsDto, IndustryEnergyPhotovoltaicSystemStringInputDto, IndustryEnergyPhotovoltaicSystemStringInputUpdateDto, IndustryEnergyPhotovoltaicSystemStringMapsFromArgsDto, IndustryEnergyPhotovoltaicSystemStringMapsToArgsDto, IndustryEnergyPhotovoltaicSystemStringMutationsCreateArgsDto, IndustryEnergyPhotovoltaicSystemStringMutationsDto, IndustryEnergyPhotovoltaicSystemStringMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicSystemStringParentArgsDto, IndustryEnergyPhotovoltaicSystemStringRelatesFromArgsDto, IndustryEnergyPhotovoltaicSystemStringRelatesToArgsDto, IndustryEnergyPhotovoltaicSystemStringTaggedByArgsDto, IndustryEnergyPhotovoltaicSystemStringUpdateDto, IndustryEnergyPhotovoltaicSystemStringUpdateMessageDto, IndustryEnergyPhotovoltaicSystemTaggedByArgsDto, IndustryEnergyPhotovoltaicSystemUpdateDto, IndustryEnergyPhotovoltaicSystemUpdateMessageDto, InputMaybe, JobDto, JobResponseDto, LargeBinaryInfoDto, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MergeUsersRequestDto, MigrationHistoryEntryDto, MigrationHistoryResponseDto, NearGeospatialFilterDto, NodeDescriptorDto, OctoMutationDto, OctoQueryAvailableArchivePathsArgsDto, OctoQueryDto, OctoSdkDemoCustomerAssociationsArgsDto, OctoSdkDemoCustomerConfiguredByArgsDto, OctoSdkDemoCustomerConnectionDto, OctoSdkDemoCustomerDto, OctoSdkDemoCustomerEdgeDto, OctoSdkDemoCustomerInputDto, OctoSdkDemoCustomerInputUpdateDto, OctoSdkDemoCustomerMapsFromArgsDto, OctoSdkDemoCustomerMapsToArgsDto, OctoSdkDemoCustomerMutationsCreateArgsDto, OctoSdkDemoCustomerMutationsDto, OctoSdkDemoCustomerMutationsUpdateArgsDto, OctoSdkDemoCustomerNoteDto, OctoSdkDemoCustomerNoteInputDto, OctoSdkDemoCustomerOwnsArgsDto, OctoSdkDemoCustomerRelatesFromArgsDto, OctoSdkDemoCustomerRelatesToArgsDto, OctoSdkDemoCustomerTaggedByArgsDto, OctoSdkDemoCustomerUpdateDto, OctoSdkDemoCustomerUpdateMessageDto, OctoSdkDemoCustomer_OwnedByUnionConnectionDto, OctoSdkDemoCustomer_OwnedByUnionDto, OctoSdkDemoCustomer_OwnedByUnionEdgeDto, OctoSdkDemoMeteringPointAssociationsArgsDto, OctoSdkDemoMeteringPointChildrenArgsDto, OctoSdkDemoMeteringPointConfiguredByArgsDto, OctoSdkDemoMeteringPointConnectionDto, OctoSdkDemoMeteringPointDto, OctoSdkDemoMeteringPointEdgeDto, OctoSdkDemoMeteringPointEventsArgsDto, OctoSdkDemoMeteringPointInputDto, OctoSdkDemoMeteringPointInputUpdateDto, OctoSdkDemoMeteringPointMapsFromArgsDto, OctoSdkDemoMeteringPointMapsToArgsDto, OctoSdkDemoMeteringPointMutationsCreateArgsDto, OctoSdkDemoMeteringPointMutationsDto, OctoSdkDemoMeteringPointMutationsUpdateArgsDto, OctoSdkDemoMeteringPointParentArgsDto, OctoSdkDemoMeteringPointRelatesFromArgsDto, OctoSdkDemoMeteringPointRelatesToArgsDto, OctoSdkDemoMeteringPointTaggedByArgsDto, OctoSdkDemoMeteringPointUpdateDto, OctoSdkDemoMeteringPointUpdateMessageDto, OctoSdkDemoOperatingFacilityAssociationsArgsDto, OctoSdkDemoOperatingFacilityChildrenArgsDto, OctoSdkDemoOperatingFacilityConfiguredByArgsDto, OctoSdkDemoOperatingFacilityConnectionDto, OctoSdkDemoOperatingFacilityDto, OctoSdkDemoOperatingFacilityEdgeDto, OctoSdkDemoOperatingFacilityInputDto, OctoSdkDemoOperatingFacilityInputUpdateDto, OctoSdkDemoOperatingFacilityMapsFromArgsDto, OctoSdkDemoOperatingFacilityMapsToArgsDto, OctoSdkDemoOperatingFacilityMutationsCreateArgsDto, OctoSdkDemoOperatingFacilityMutationsDto, OctoSdkDemoOperatingFacilityMutationsUpdateArgsDto, OctoSdkDemoOperatingFacilityOwnedByArgsDto, OctoSdkDemoOperatingFacilityParentArgsDto, OctoSdkDemoOperatingFacilityRelatesFromArgsDto, OctoSdkDemoOperatingFacilityRelatesToArgsDto, OctoSdkDemoOperatingFacilityTaggedByArgsDto, OctoSdkDemoOperatingFacilityUpdateDto, OctoSdkDemoOperatingFacilityUpdateMessageDto, OctoSdkDemoOperatingFacility_OwnsUnionConnectionDto, OctoSdkDemoOperatingFacility_OwnsUnionDto, OctoSdkDemoOperatingFacility_OwnsUnionEdgeDto, OctoSubscriptionsBasicAssetEventsArgsDto, OctoSubscriptionsBasicCityEventsArgsDto, OctoSubscriptionsBasicCountryEventsArgsDto, OctoSubscriptionsBasicDistrictEventsArgsDto, OctoSubscriptionsBasicDocumentEventsArgsDto, OctoSubscriptionsBasicEmployeeEventsArgsDto, OctoSubscriptionsBasicEnergyConsumerEventsArgsDto, OctoSubscriptionsBasicEnergyEdaMessageEventsArgsDto, OctoSubscriptionsBasicEnergyEdaMeteringPointEventsArgsDto, OctoSubscriptionsBasicEnergyEdaProcessEventsArgsDto, OctoSubscriptionsBasicEnergyEnergyMeasurementEventsArgsDto, OctoSubscriptionsBasicEnergyMeteringPointEventsArgsDto, OctoSubscriptionsBasicEnergyOperatingFacilityEventsArgsDto, OctoSubscriptionsBasicEnergyProducerEventsArgsDto, OctoSubscriptionsBasicNamedEntityEventsArgsDto, OctoSubscriptionsBasicStateEventsArgsDto, OctoSubscriptionsBasicTreeEventsArgsDto, OctoSubscriptionsBasicTreeNodeEventsArgsDto, OctoSubscriptionsDto, OctoSubscriptionsEnergyIqAirHandlingUnitEventsArgsDto, OctoSubscriptionsEnergyIqBatteryStorageEventsArgsDto, OctoSubscriptionsEnergyIqBoilerEventsArgsDto, OctoSubscriptionsEnergyIqBuildingElementEventsArgsDto, OctoSubscriptionsEnergyIqBuildingEventsArgsDto, OctoSubscriptionsEnergyIqBuildingStoreyEventsArgsDto, OctoSubscriptionsEnergyIqChillerEventsArgsDto, OctoSubscriptionsEnergyIqDoorEventsArgsDto, OctoSubscriptionsEnergyIqInverterEventsArgsDto, OctoSubscriptionsEnergyIqLuminaireEventsArgsDto, OctoSubscriptionsEnergyIqPhotovoltaicSystemEventsArgsDto, OctoSubscriptionsEnergyIqPumpEventsArgsDto, OctoSubscriptionsEnergyIqShadingDeviceEventsArgsDto, OctoSubscriptionsEnergyIqSiteEventsArgsDto, OctoSubscriptionsEnergyIqSpaceEventsArgsDto, OctoSubscriptionsEnergyIqTechnicalSystemEventsArgsDto, OctoSubscriptionsEnergyIqWallEventsArgsDto, OctoSubscriptionsEnergyIqWindowEventsArgsDto, OctoSubscriptionsEnergyIqpvStringEventsArgsDto, OctoSubscriptionsIndustryBasicAlarmEventsArgsDto, OctoSubscriptionsIndustryBasicEventEventsArgsDto, OctoSubscriptionsIndustryBasicMachineEventsArgsDto, OctoSubscriptionsIndustryBasicRuntimeVariableEventsArgsDto, OctoSubscriptionsIndustryEnergyDemandResponseEventEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyConsumerEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyCostEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyForecastEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyMeterEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyPerformanceIndicatorEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyStorageEventsArgsDto, OctoSubscriptionsIndustryEnergyInverterEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemModuleEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemStringEventsArgsDto, OctoSubscriptionsOctoSdkDemoCustomerEventsArgsDto, OctoSubscriptionsOctoSdkDemoMeteringPointEventsArgsDto, OctoSubscriptionsOctoSdkDemoOperatingFacilityEventsArgsDto, OctoSubscriptionsSystemAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemAggregationSdQueryEventsArgsDto, OctoSubscriptionsSystemAutoIncrementEventsArgsDto, OctoSubscriptionsSystemBotAttributeAggregateConfigurationEventsArgsDto, OctoSubscriptionsSystemBotFixupEventsArgsDto, OctoSubscriptionsSystemCommunicationAdapterEventsArgsDto, OctoSubscriptionsSystemCommunicationAiConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationApplicationEventsArgsDto, OctoSubscriptionsSystemCommunicationDataFlowEventsArgsDto, OctoSubscriptionsSystemCommunicationDataPointMappingEventsArgsDto, OctoSubscriptionsSystemCommunicationDeployableEntityEventsArgsDto, OctoSubscriptionsSystemCommunicationDeployableWorkloadEventsArgsDto, OctoSubscriptionsSystemCommunicationDiscordConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEMailReceiverConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEMailSenderConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEdaConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEnergyCommunityConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationFinApiConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationGrafanaConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationHelmRepositoryConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationLoxoneConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationMicrosoftGraphConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineExecutionEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineStatisticsEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineTriggerEventsArgsDto, OctoSubscriptionsSystemCommunicationPoolEventsArgsDto, OctoSubscriptionsSystemCommunicationSapConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationServiceAccountConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationSftpConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationTagEventsArgsDto, OctoSubscriptionsSystemConfigurationEventsArgsDto, OctoSubscriptionsSystemDownsamplingSdQueryEventsArgsDto, OctoSubscriptionsSystemEntityEventsArgsDto, OctoSubscriptionsSystemGroupingAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemGroupingAggregationSdQueryEventsArgsDto, OctoSubscriptionsSystemIdentityApiResourceEventsArgsDto, OctoSubscriptionsSystemIdentityApiScopeEventsArgsDto, OctoSubscriptionsSystemIdentityAzureEntraIdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityClientEventsArgsDto, OctoSubscriptionsSystemIdentityEmailDomainGroupRuleEventsArgsDto, OctoSubscriptionsSystemIdentityExternalTenantUserMappingEventsArgsDto, OctoSubscriptionsSystemIdentityFacebookIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityGoogleIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityGroupEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityMailNotificationConfigurationEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftAdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityOctoTenantIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityOpenLdapIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionRoleEventsArgsDto, OctoSubscriptionsSystemIdentityPersistedGrantEventsArgsDto, OctoSubscriptionsSystemIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityRoleEventsArgsDto, OctoSubscriptionsSystemIdentityUserEventsArgsDto, OctoSubscriptionsSystemMigrationHistoryEventsArgsDto, OctoSubscriptionsSystemNotificationCssTemplateConfigurationEventsArgsDto, OctoSubscriptionsSystemNotificationEventEventsArgsDto, OctoSubscriptionsSystemNotificationNotificationTemplateEventsArgsDto, OctoSubscriptionsSystemNotificationStatefulEventEventsArgsDto, OctoSubscriptionsSystemPersistentQueryEventsArgsDto, OctoSubscriptionsSystemReportingConnectionInfoEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemContainerEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemEntityEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemItemEventsArgsDto, OctoSubscriptionsSystemReportingFolderEventsArgsDto, OctoSubscriptionsSystemReportingFolderRootEventsArgsDto, OctoSubscriptionsSystemSimpleRtQueryEventsArgsDto, OctoSubscriptionsSystemSimpleSdQueryEventsArgsDto, OctoSubscriptionsSystemStreamDataArchiveEventsArgsDto, OctoSubscriptionsSystemStreamDataQueryEventsArgsDto, OctoSubscriptionsSystemStreamDataRawArchiveEventsArgsDto, OctoSubscriptionsSystemStreamDataRollupArchiveEventsArgsDto, OctoSubscriptionsSystemStreamDataTimeRangeArchiveEventsArgsDto, OctoSubscriptionsSystemTenantConfigurationEventsArgsDto, OctoSubscriptionsSystemTenantEventsArgsDto, OctoSubscriptionsSystemTenantModeConfigurationEventsArgsDto, OctoSubscriptionsSystemUiBrandingEventsArgsDto, OctoSubscriptionsSystemUiDashboardEventsArgsDto, OctoSubscriptionsSystemUiDashboardWidgetEventsArgsDto, OctoSubscriptionsSystemUiProcessDiagramEventsArgsDto, OctoSubscriptionsSystemUiSymbolDefinitionEventsArgsDto, OctoSubscriptionsSystemUiSymbolLibraryEventsArgsDto, OctoSubscriptionsSystemUiuiElementEventsArgsDto, PageInfoDto, PipelineExecutionDataDto, PipelineNodePropertiesDto, PointInputDto, PositionInputDto, ProgressDialogRef, ProgressWindowOptions, QueryAggregationResultConnectionDto, QueryAggregationResultDto, QueryAggregationResultEdgeDto, RegisterUserDto, ResultAggregationInputDto, RoleDto, RollupAggregationInputDto, RollupArchiveInfoDto, RollupQueryMetadataDto, RtAggregationQueryRowCellsArgsDto, RtAggregationQueryRowDto, RtAssociationAttributesArgsDto, RtAssociationDto, RtAssociationDtoConnectionDto, RtAssociationDtoEdgeDto, RtAssociationInputDto, RtEntityAssociationInputDto, RtEntityAttributeDto, RtEntityAttributeDtoConnectionDto, RtEntityAttributeDtoEdgeDto, RtEntityAttributeInputDto, RtEntityAttributesArgsDto, RtEntityDto, RtEntityGenericAssociationDefinitionsArgsDto, RtEntityGenericAssociationDto, RtEntityGenericAssociationTargetsArgsDto, RtEntityGenericDtoConnectionDto, RtEntityGenericDtoEdgeDto, RtEntityIdDto, RtEntityInputDto, RtEntityMutationsCreateArgsDto, RtEntityMutationsDeleteArgsDto, RtEntityMutationsDto, RtEntityMutationsUpdateArgsDto, RtEntityUpdateDto, RtGroupingAggregationQueryRowCellsArgsDto, RtGroupingAggregationQueryRowDto, RtQueryAggregationsArgsDto, RtQueryCellDto, RtQueryCellDtoConnectionDto, RtQueryCellDtoEdgeDto, RtQueryCellInputDto, RtQueryColumnDto, RtQueryColumnInputDto, RtQueryDto, RtQueryDtoConnectionDto, RtQueryDtoEdgeDto, RtQueryMutationsCreateArgsDto, RtQueryMutationsDeleteArgsDto, RtQueryMutationsDto, RtQueryMutationsUpdateArgsDto, RtQueryRowCellsArgsDto, RtQueryRowDto, RtQueryRowDtoConnectionDto, RtQueryRowDtoEdgeDto, RtQueryRowInputDto, RtQueryRowUpdateDto, RtQueryRowsArgsDto, RtSimpleQueryRowCellsArgsDto, RtSimpleQueryRowDto, RtTransientAggregationArgsDto, RtTransientDto, RtTransientGroupingAggregationArgsDto, RtTransientQueryAggregationsArgsDto, RtTransientQueryDto, RtTransientQueryDtoConnectionDto, RtTransientQueryDtoEdgeDto, RtTransientQueryRowsArgsDto, RtTransientSimpleArgsDto, RuntimeDto, RuntimeEntityItem, RuntimeModelQueryBasicAssetArgsDto, RuntimeModelQueryBasicCityArgsDto, RuntimeModelQueryBasicCountryArgsDto, RuntimeModelQueryBasicDistrictArgsDto, RuntimeModelQueryBasicDocumentArgsDto, RuntimeModelQueryBasicEmployeeArgsDto, RuntimeModelQueryBasicEnergyConsumerArgsDto, RuntimeModelQueryBasicEnergyEdaMessageArgsDto, RuntimeModelQueryBasicEnergyEdaMeteringPointArgsDto, RuntimeModelQueryBasicEnergyEdaProcessArgsDto, RuntimeModelQueryBasicEnergyEnergyMeasurementArgsDto, RuntimeModelQueryBasicEnergyMeteringPointArgsDto, RuntimeModelQueryBasicEnergyOperatingFacilityArgsDto, RuntimeModelQueryBasicEnergyProducerArgsDto, RuntimeModelQueryBasicNamedEntityArgsDto, RuntimeModelQueryBasicStateArgsDto, RuntimeModelQueryBasicTreeArgsDto, RuntimeModelQueryBasicTreeNodeArgsDto, RuntimeModelQueryDto, RuntimeModelQueryEnergyIqAirHandlingUnitArgsDto, RuntimeModelQueryEnergyIqBatteryStorageArgsDto, RuntimeModelQueryEnergyIqBoilerArgsDto, RuntimeModelQueryEnergyIqBuildingArgsDto, RuntimeModelQueryEnergyIqBuildingElementArgsDto, RuntimeModelQueryEnergyIqBuildingStoreyArgsDto, RuntimeModelQueryEnergyIqChillerArgsDto, RuntimeModelQueryEnergyIqDoorArgsDto, RuntimeModelQueryEnergyIqInverterArgsDto, RuntimeModelQueryEnergyIqLuminaireArgsDto, RuntimeModelQueryEnergyIqPhotovoltaicSystemArgsDto, RuntimeModelQueryEnergyIqPumpArgsDto, RuntimeModelQueryEnergyIqShadingDeviceArgsDto, RuntimeModelQueryEnergyIqSiteArgsDto, RuntimeModelQueryEnergyIqSpaceArgsDto, RuntimeModelQueryEnergyIqTechnicalSystemArgsDto, RuntimeModelQueryEnergyIqWallArgsDto, RuntimeModelQueryEnergyIqWindowArgsDto, RuntimeModelQueryEnergyIqpvStringArgsDto, RuntimeModelQueryIndustryBasicAlarmArgsDto, RuntimeModelQueryIndustryBasicEventArgsDto, RuntimeModelQueryIndustryBasicMachineArgsDto, RuntimeModelQueryIndustryBasicRuntimeVariableArgsDto, RuntimeModelQueryIndustryEnergyDemandResponseEventArgsDto, RuntimeModelQueryIndustryEnergyEnergyConsumerArgsDto, RuntimeModelQueryIndustryEnergyEnergyCostArgsDto, RuntimeModelQueryIndustryEnergyEnergyForecastArgsDto, RuntimeModelQueryIndustryEnergyEnergyMeterArgsDto, RuntimeModelQueryIndustryEnergyEnergyPerformanceIndicatorArgsDto, RuntimeModelQueryIndustryEnergyEnergyStorageArgsDto, RuntimeModelQueryIndustryEnergyInverterArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemModuleArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemStringArgsDto, RuntimeModelQueryOctoSdkDemoCustomerArgsDto, RuntimeModelQueryOctoSdkDemoMeteringPointArgsDto, RuntimeModelQueryOctoSdkDemoOperatingFacilityArgsDto, RuntimeModelQueryRuntimeEntitiesArgsDto, RuntimeModelQueryRuntimeQueryArgsDto, RuntimeModelQuerySystemAggregationRtQueryArgsDto, RuntimeModelQuerySystemAggregationSdQueryArgsDto, RuntimeModelQuerySystemAutoIncrementArgsDto, RuntimeModelQuerySystemBotAttributeAggregateConfigurationArgsDto, RuntimeModelQuerySystemBotFixupArgsDto, RuntimeModelQuerySystemCommunicationAdapterArgsDto, RuntimeModelQuerySystemCommunicationAiConfigurationArgsDto, RuntimeModelQuerySystemCommunicationApplicationArgsDto, RuntimeModelQuerySystemCommunicationDataFlowArgsDto, RuntimeModelQuerySystemCommunicationDataPointMappingArgsDto, RuntimeModelQuerySystemCommunicationDeployableEntityArgsDto, RuntimeModelQuerySystemCommunicationDeployableWorkloadArgsDto, RuntimeModelQuerySystemCommunicationDiscordConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEMailReceiverConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEMailSenderConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEdaConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEnergyCommunityConfigurationArgsDto, RuntimeModelQuerySystemCommunicationFinApiConfigurationArgsDto, RuntimeModelQuerySystemCommunicationGrafanaConfigurationArgsDto, RuntimeModelQuerySystemCommunicationHelmRepositoryConfigurationArgsDto, RuntimeModelQuerySystemCommunicationLoxoneConfigurationArgsDto, RuntimeModelQuerySystemCommunicationMicrosoftGraphConfigurationArgsDto, RuntimeModelQuerySystemCommunicationPipelineArgsDto, RuntimeModelQuerySystemCommunicationPipelineExecutionArgsDto, RuntimeModelQuerySystemCommunicationPipelineStatisticsArgsDto, RuntimeModelQuerySystemCommunicationPipelineTriggerArgsDto, RuntimeModelQuerySystemCommunicationPoolArgsDto, RuntimeModelQuerySystemCommunicationSapConfigurationArgsDto, RuntimeModelQuerySystemCommunicationServiceAccountConfigurationArgsDto, RuntimeModelQuerySystemCommunicationSftpConfigurationArgsDto, RuntimeModelQuerySystemCommunicationTagArgsDto, RuntimeModelQuerySystemConfigurationArgsDto, RuntimeModelQuerySystemDownsamplingSdQueryArgsDto, RuntimeModelQuerySystemEntityArgsDto, RuntimeModelQuerySystemGroupingAggregationRtQueryArgsDto, RuntimeModelQuerySystemGroupingAggregationSdQueryArgsDto, RuntimeModelQuerySystemIdentityApiResourceArgsDto, RuntimeModelQuerySystemIdentityApiScopeArgsDto, RuntimeModelQuerySystemIdentityAzureEntraIdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityClientArgsDto, RuntimeModelQuerySystemIdentityEmailDomainGroupRuleArgsDto, RuntimeModelQuerySystemIdentityExternalTenantUserMappingArgsDto, RuntimeModelQuerySystemIdentityFacebookIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityGoogleIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityGroupArgsDto, RuntimeModelQuerySystemIdentityIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityMailNotificationConfigurationArgsDto, RuntimeModelQuerySystemIdentityMicrosoftAdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityMicrosoftIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityOctoTenantIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityOpenLdapIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityPermissionArgsDto, RuntimeModelQuerySystemIdentityPermissionRoleArgsDto, RuntimeModelQuerySystemIdentityPersistedGrantArgsDto, RuntimeModelQuerySystemIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityRoleArgsDto, RuntimeModelQuerySystemIdentityUserArgsDto, RuntimeModelQuerySystemMigrationHistoryArgsDto, RuntimeModelQuerySystemNotificationCssTemplateConfigurationArgsDto, RuntimeModelQuerySystemNotificationEventArgsDto, RuntimeModelQuerySystemNotificationNotificationTemplateArgsDto, RuntimeModelQuerySystemNotificationStatefulEventArgsDto, RuntimeModelQuerySystemPersistentQueryArgsDto, RuntimeModelQuerySystemReportingConnectionInfoArgsDto, RuntimeModelQuerySystemReportingFileSystemContainerArgsDto, RuntimeModelQuerySystemReportingFileSystemEntityArgsDto, RuntimeModelQuerySystemReportingFileSystemItemArgsDto, RuntimeModelQuerySystemReportingFolderArgsDto, RuntimeModelQuerySystemReportingFolderRootArgsDto, RuntimeModelQuerySystemSimpleRtQueryArgsDto, RuntimeModelQuerySystemSimpleSdQueryArgsDto, RuntimeModelQuerySystemStreamDataArchiveArgsDto, RuntimeModelQuerySystemStreamDataQueryArgsDto, RuntimeModelQuerySystemStreamDataRawArchiveArgsDto, RuntimeModelQuerySystemStreamDataRollupArchiveArgsDto, RuntimeModelQuerySystemStreamDataTimeRangeArchiveArgsDto, RuntimeModelQuerySystemTenantArgsDto, RuntimeModelQuerySystemTenantConfigurationArgsDto, RuntimeModelQuerySystemTenantModeConfigurationArgsDto, RuntimeModelQuerySystemUiBrandingArgsDto, RuntimeModelQuerySystemUiDashboardArgsDto, RuntimeModelQuerySystemUiDashboardWidgetArgsDto, RuntimeModelQuerySystemUiProcessDiagramArgsDto, RuntimeModelQuerySystemUiSymbolDefinitionArgsDto, RuntimeModelQuerySystemUiSymbolLibraryArgsDto, RuntimeModelQuerySystemUiuiElementArgsDto, RuntimeRuntimeQueryArgsDto, Scalars, SearchFilterDto, SortDto, StatisticsDto, StreamDataArgumentsDto, StreamDataModelQueryArchivesStorageStatsArgsDto, StreamDataModelQueryDto, StreamDataModelQueryRollupQueryMetadataArgsDto, StreamDataModelQueryRollupsForArgsDto, StreamDataModelQueryStreamDataQueryArgsDto, StreamDataMutationsActivateArchiveArgsDto, StreamDataMutationsCreateRollupArchiveArgsDto, StreamDataMutationsCreateTimeRangeArchiveArgsDto, StreamDataMutationsDeleteArchiveArgsDto, StreamDataMutationsDisableArchiveArgsDto, StreamDataMutationsDto, StreamDataMutationsEnableArchiveArgsDto, StreamDataMutationsFreezeRollupArchiveArgsDto, StreamDataMutationsRetryArchiveActivationArgsDto, StreamDataMutationsRewindRollupWatermarkArgsDto, StreamDataMutationsUnfreezeRollupArchiveArgsDto, StreamDataQueryAggregationsArgsDto, StreamDataQueryColumnInputDto, StreamDataQueryDto, StreamDataQueryDtoConnectionDto, StreamDataQueryDtoEdgeDto, StreamDataQueryRowCellsArgsDto, StreamDataQueryRowDto, StreamDataQueryRowDtoConnectionDto, StreamDataQueryRowDtoEdgeDto, StreamDataQueryRowsArgsDto, StreamDataTransientAggregationArgsDto, StreamDataTransientDownsamplingArgsDto, StreamDataTransientDto, StreamDataTransientGroupingAggregationArgsDto, StreamDataTransientQueryAggregationsArgsDto, StreamDataTransientQueryDto, StreamDataTransientQueryDtoConnectionDto, StreamDataTransientQueryDtoEdgeDto, StreamDataTransientQueryRowsArgsDto, StreamDataTransientSimpleArgsDto, SystemAggregationQueryColumnDto, SystemAggregationQueryColumnInputDto, SystemAggregationRtQueryAssociationsArgsDto, SystemAggregationRtQueryConfiguredByArgsDto, SystemAggregationRtQueryConnectionDto, SystemAggregationRtQueryDto, SystemAggregationRtQueryEdgeDto, SystemAggregationRtQueryInputDto, SystemAggregationRtQueryInputUpdateDto, SystemAggregationRtQueryMapsFromArgsDto, SystemAggregationRtQueryMapsToArgsDto, SystemAggregationRtQueryMutationsCreateArgsDto, SystemAggregationRtQueryMutationsDto, SystemAggregationRtQueryMutationsUpdateArgsDto, SystemAggregationRtQueryRelatesFromArgsDto, SystemAggregationRtQueryRelatesToArgsDto, SystemAggregationRtQueryTaggedByArgsDto, SystemAggregationRtQueryUpdateDto, SystemAggregationRtQueryUpdateMessageDto, SystemAggregationSdQueryAssociationsArgsDto, SystemAggregationSdQueryConfiguredByArgsDto, SystemAggregationSdQueryConnectionDto, SystemAggregationSdQueryDto, SystemAggregationSdQueryEdgeDto, SystemAggregationSdQueryInputDto, SystemAggregationSdQueryInputUpdateDto, SystemAggregationSdQueryMapsFromArgsDto, SystemAggregationSdQueryMapsToArgsDto, SystemAggregationSdQueryMutationsCreateArgsDto, SystemAggregationSdQueryMutationsDto, SystemAggregationSdQueryMutationsUpdateArgsDto, SystemAggregationSdQueryRelatesFromArgsDto, SystemAggregationSdQueryRelatesToArgsDto, SystemAggregationSdQueryTaggedByArgsDto, SystemAggregationSdQueryUpdateDto, SystemAggregationSdQueryUpdateMessageDto, SystemAttributeSearchFilterDto, SystemAttributeSearchFilterInputDto, SystemAutoIncrementAssociationsArgsDto, SystemAutoIncrementConfiguredByArgsDto, SystemAutoIncrementConnectionDto, SystemAutoIncrementDto, SystemAutoIncrementEdgeDto, SystemAutoIncrementInputDto, SystemAutoIncrementInputUpdateDto, SystemAutoIncrementMapsFromArgsDto, SystemAutoIncrementMapsToArgsDto, SystemAutoIncrementMutationsCreateArgsDto, SystemAutoIncrementMutationsDto, SystemAutoIncrementMutationsUpdateArgsDto, SystemAutoIncrementRelatesFromArgsDto, SystemAutoIncrementRelatesToArgsDto, SystemAutoIncrementTaggedByArgsDto, SystemAutoIncrementUpdateDto, SystemAutoIncrementUpdateMessageDto, SystemBotAttributeAggregateConfigurationAssociationsArgsDto, SystemBotAttributeAggregateConfigurationConfiguredByArgsDto, SystemBotAttributeAggregateConfigurationConfiguresArgsDto, SystemBotAttributeAggregateConfigurationConnectionDto, SystemBotAttributeAggregateConfigurationDto, SystemBotAttributeAggregateConfigurationEdgeDto, SystemBotAttributeAggregateConfigurationInputDto, SystemBotAttributeAggregateConfigurationInputUpdateDto, SystemBotAttributeAggregateConfigurationMapsFromArgsDto, SystemBotAttributeAggregateConfigurationMapsToArgsDto, SystemBotAttributeAggregateConfigurationMutationsCreateArgsDto, SystemBotAttributeAggregateConfigurationMutationsDto, SystemBotAttributeAggregateConfigurationMutationsUpdateArgsDto, SystemBotAttributeAggregateConfigurationRelatesFromArgsDto, SystemBotAttributeAggregateConfigurationRelatesToArgsDto, SystemBotAttributeAggregateConfigurationTaggedByArgsDto, SystemBotAttributeAggregateConfigurationUpdateDto, SystemBotAttributeAggregateConfigurationUpdateMessageDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionEdgeDto, SystemBotFixupAssociationsArgsDto, SystemBotFixupConfiguredByArgsDto, SystemBotFixupConnectionDto, SystemBotFixupDto, SystemBotFixupEdgeDto, SystemBotFixupInputDto, SystemBotFixupInputUpdateDto, SystemBotFixupMapsFromArgsDto, SystemBotFixupMapsToArgsDto, SystemBotFixupMutationsCreateArgsDto, SystemBotFixupMutationsDto, SystemBotFixupMutationsUpdateArgsDto, SystemBotFixupRelatesFromArgsDto, SystemBotFixupRelatesToArgsDto, SystemBotFixupTaggedByArgsDto, SystemBotFixupUpdateDto, SystemBotFixupUpdateMessageDto, SystemCommunicationAdapterAssociationsArgsDto, SystemCommunicationAdapterConfiguredByArgsDto, SystemCommunicationAdapterConnectionDto, SystemCommunicationAdapterDto, SystemCommunicationAdapterEdgeDto, SystemCommunicationAdapterExecutesArgsDto, SystemCommunicationAdapterExecutingAdapterArgsDto, SystemCommunicationAdapterHelmRepositoryArgsDto, SystemCommunicationAdapterInputDto, SystemCommunicationAdapterInputUpdateDto, SystemCommunicationAdapterManagedByArgsDto, SystemCommunicationAdapterMapsFromArgsDto, SystemCommunicationAdapterMapsToArgsDto, SystemCommunicationAdapterMutationsCreateArgsDto, SystemCommunicationAdapterMutationsDto, SystemCommunicationAdapterMutationsUpdateArgsDto, SystemCommunicationAdapterRelatesFromArgsDto, SystemCommunicationAdapterRelatesToArgsDto, SystemCommunicationAdapterTaggedByArgsDto, SystemCommunicationAdapterUpdateDto, SystemCommunicationAdapterUpdateMessageDto, SystemCommunicationAdapter_AdapterExecutionsUnionConnectionDto, SystemCommunicationAdapter_AdapterExecutionsUnionDto, SystemCommunicationAdapter_AdapterExecutionsUnionEdgeDto, SystemCommunicationAdapter_ExecutedByUnionConnectionDto, SystemCommunicationAdapter_ExecutedByUnionDto, SystemCommunicationAdapter_ExecutedByUnionEdgeDto, SystemCommunicationAiConfigurationAssociationsArgsDto, SystemCommunicationAiConfigurationConfiguredByArgsDto, SystemCommunicationAiConfigurationConnectionDto, SystemCommunicationAiConfigurationDto, SystemCommunicationAiConfigurationEdgeDto, SystemCommunicationAiConfigurationInputDto, SystemCommunicationAiConfigurationInputUpdateDto, SystemCommunicationAiConfigurationMapsFromArgsDto, SystemCommunicationAiConfigurationMapsToArgsDto, SystemCommunicationAiConfigurationMutationsCreateArgsDto, SystemCommunicationAiConfigurationMutationsDto, SystemCommunicationAiConfigurationMutationsUpdateArgsDto, SystemCommunicationAiConfigurationRelatesFromArgsDto, SystemCommunicationAiConfigurationRelatesToArgsDto, SystemCommunicationAiConfigurationTaggedByArgsDto, SystemCommunicationAiConfigurationUpdateDto, SystemCommunicationAiConfigurationUpdateMessageDto, SystemCommunicationAiConfigurationUsedByArgsDto, SystemCommunicationApplicationAssociationsArgsDto, SystemCommunicationApplicationConfiguredByArgsDto, SystemCommunicationApplicationConnectionDto, SystemCommunicationApplicationDto, SystemCommunicationApplicationEdgeDto, SystemCommunicationApplicationHelmRepositoryArgsDto, SystemCommunicationApplicationInputDto, SystemCommunicationApplicationInputUpdateDto, SystemCommunicationApplicationManagedByArgsDto, SystemCommunicationApplicationMapsFromArgsDto, SystemCommunicationApplicationMapsToArgsDto, SystemCommunicationApplicationMutationsCreateArgsDto, SystemCommunicationApplicationMutationsDto, SystemCommunicationApplicationMutationsUpdateArgsDto, SystemCommunicationApplicationRelatesFromArgsDto, SystemCommunicationApplicationRelatesToArgsDto, SystemCommunicationApplicationTaggedByArgsDto, SystemCommunicationApplicationUpdateDto, SystemCommunicationApplicationUpdateMessageDto, SystemCommunicationDataFlowAssociationsArgsDto, SystemCommunicationDataFlowChildrenArgsDto, SystemCommunicationDataFlowConfiguredByArgsDto, SystemCommunicationDataFlowConnectionDto, SystemCommunicationDataFlowDto, SystemCommunicationDataFlowEdgeDto, SystemCommunicationDataFlowInputDto, SystemCommunicationDataFlowInputUpdateDto, SystemCommunicationDataFlowMapsFromArgsDto, SystemCommunicationDataFlowMapsToArgsDto, SystemCommunicationDataFlowMutationsCreateArgsDto, SystemCommunicationDataFlowMutationsDto, SystemCommunicationDataFlowMutationsUpdateArgsDto, SystemCommunicationDataFlowRelatesFromArgsDto, SystemCommunicationDataFlowRelatesToArgsDto, SystemCommunicationDataFlowTaggedByArgsDto, SystemCommunicationDataFlowUpdateDto, SystemCommunicationDataFlowUpdateMessageDto, SystemCommunicationDataFlow_ParentUnionConnectionDto, SystemCommunicationDataFlow_ParentUnionDto, SystemCommunicationDataFlow_ParentUnionEdgeDto, SystemCommunicationDataPointDto, SystemCommunicationDataPointInputDto, SystemCommunicationDataPointMappingAssociationsArgsDto, SystemCommunicationDataPointMappingConfiguredByArgsDto, SystemCommunicationDataPointMappingConnectionDto, SystemCommunicationDataPointMappingDto, SystemCommunicationDataPointMappingEdgeDto, SystemCommunicationDataPointMappingInputDto, SystemCommunicationDataPointMappingInputUpdateDto, SystemCommunicationDataPointMappingMappedAsSourceArgsDto, SystemCommunicationDataPointMappingMappedAsTargetArgsDto, SystemCommunicationDataPointMappingMapsFromArgsDto, SystemCommunicationDataPointMappingMapsToArgsDto, SystemCommunicationDataPointMappingMutationsCreateArgsDto, SystemCommunicationDataPointMappingMutationsDto, SystemCommunicationDataPointMappingMutationsUpdateArgsDto, SystemCommunicationDataPointMappingRelatesFromArgsDto, SystemCommunicationDataPointMappingRelatesToArgsDto, SystemCommunicationDataPointMappingTaggedByArgsDto, SystemCommunicationDataPointMappingUpdateDto, SystemCommunicationDataPointMappingUpdateMessageDto, SystemCommunicationDataPointMapping_MapsFromUnionConnectionDto, SystemCommunicationDataPointMapping_MapsFromUnionDto, SystemCommunicationDataPointMapping_MapsFromUnionEdgeDto, SystemCommunicationDataPointMapping_MapsToUnionConnectionDto, SystemCommunicationDataPointMapping_MapsToUnionDto, SystemCommunicationDataPointMapping_MapsToUnionEdgeDto, SystemCommunicationDeployableEntityAssociationsArgsDto, SystemCommunicationDeployableEntityConfiguredByArgsDto, SystemCommunicationDeployableEntityConnectionDto, SystemCommunicationDeployableEntityDto, SystemCommunicationDeployableEntityEdgeDto, SystemCommunicationDeployableEntityInterfaceConfiguredByArgsDto, SystemCommunicationDeployableEntityInterfaceDto, SystemCommunicationDeployableEntityInterfaceMapsFromArgsDto, SystemCommunicationDeployableEntityInterfaceMapsToArgsDto, SystemCommunicationDeployableEntityInterfaceRelatesFromArgsDto, SystemCommunicationDeployableEntityInterfaceRelatesToArgsDto, SystemCommunicationDeployableEntityInterfaceTaggedByArgsDto, SystemCommunicationDeployableEntityMapsFromArgsDto, SystemCommunicationDeployableEntityMapsToArgsDto, SystemCommunicationDeployableEntityRelatesFromArgsDto, SystemCommunicationDeployableEntityRelatesToArgsDto, SystemCommunicationDeployableEntityTaggedByArgsDto, SystemCommunicationDeployableEntityUpdateDto, SystemCommunicationDeployableEntityUpdateMessageDto, SystemCommunicationDeployableWorkloadAssociationsArgsDto, SystemCommunicationDeployableWorkloadConfiguredByArgsDto, SystemCommunicationDeployableWorkloadConnectionDto, SystemCommunicationDeployableWorkloadDto, SystemCommunicationDeployableWorkloadEdgeDto, SystemCommunicationDeployableWorkloadHelmRepositoryArgsDto, SystemCommunicationDeployableWorkloadInterfaceConfiguredByArgsDto, SystemCommunicationDeployableWorkloadInterfaceDto, SystemCommunicationDeployableWorkloadInterfaceHelmRepositoryArgsDto, SystemCommunicationDeployableWorkloadInterfaceManagedByArgsDto, SystemCommunicationDeployableWorkloadInterfaceMapsFromArgsDto, SystemCommunicationDeployableWorkloadInterfaceMapsToArgsDto, SystemCommunicationDeployableWorkloadInterfaceRelatesFromArgsDto, SystemCommunicationDeployableWorkloadInterfaceRelatesToArgsDto, SystemCommunicationDeployableWorkloadInterfaceTaggedByArgsDto, SystemCommunicationDeployableWorkloadManagedByArgsDto, SystemCommunicationDeployableWorkloadMapsFromArgsDto, SystemCommunicationDeployableWorkloadMapsToArgsDto, SystemCommunicationDeployableWorkloadRelatesFromArgsDto, SystemCommunicationDeployableWorkloadRelatesToArgsDto, SystemCommunicationDeployableWorkloadTaggedByArgsDto, SystemCommunicationDeployableWorkloadUpdateDto, SystemCommunicationDeployableWorkloadUpdateMessageDto, SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionConnectionDto, SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionDto, SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionEdgeDto, SystemCommunicationDeployableWorkload_ManagesUnionConnectionDto, SystemCommunicationDeployableWorkload_ManagesUnionDto, SystemCommunicationDeployableWorkload_ManagesUnionEdgeDto, SystemCommunicationDiscordConfigurationAssociationsArgsDto, SystemCommunicationDiscordConfigurationConfiguredByArgsDto, SystemCommunicationDiscordConfigurationConnectionDto, SystemCommunicationDiscordConfigurationDto, SystemCommunicationDiscordConfigurationEdgeDto, SystemCommunicationDiscordConfigurationInputDto, SystemCommunicationDiscordConfigurationInputUpdateDto, SystemCommunicationDiscordConfigurationMapsFromArgsDto, SystemCommunicationDiscordConfigurationMapsToArgsDto, SystemCommunicationDiscordConfigurationMutationsCreateArgsDto, SystemCommunicationDiscordConfigurationMutationsDto, SystemCommunicationDiscordConfigurationMutationsUpdateArgsDto, SystemCommunicationDiscordConfigurationRelatesFromArgsDto, SystemCommunicationDiscordConfigurationRelatesToArgsDto, SystemCommunicationDiscordConfigurationTaggedByArgsDto, SystemCommunicationDiscordConfigurationUpdateDto, SystemCommunicationDiscordConfigurationUpdateMessageDto, SystemCommunicationDiscordConfigurationUsedByArgsDto, SystemCommunicationEMailReceiverConfigurationAssociationsArgsDto, SystemCommunicationEMailReceiverConfigurationConfiguredByArgsDto, SystemCommunicationEMailReceiverConfigurationConnectionDto, SystemCommunicationEMailReceiverConfigurationDto, SystemCommunicationEMailReceiverConfigurationEdgeDto, SystemCommunicationEMailReceiverConfigurationInputDto, SystemCommunicationEMailReceiverConfigurationInputUpdateDto, SystemCommunicationEMailReceiverConfigurationMapsFromArgsDto, SystemCommunicationEMailReceiverConfigurationMapsToArgsDto, SystemCommunicationEMailReceiverConfigurationMutationsCreateArgsDto, SystemCommunicationEMailReceiverConfigurationMutationsDto, SystemCommunicationEMailReceiverConfigurationMutationsUpdateArgsDto, SystemCommunicationEMailReceiverConfigurationRelatesFromArgsDto, SystemCommunicationEMailReceiverConfigurationRelatesToArgsDto, SystemCommunicationEMailReceiverConfigurationTaggedByArgsDto, SystemCommunicationEMailReceiverConfigurationUpdateDto, SystemCommunicationEMailReceiverConfigurationUpdateMessageDto, SystemCommunicationEMailReceiverConfigurationUsedByArgsDto, SystemCommunicationEMailSenderConfigurationAssociationsArgsDto, SystemCommunicationEMailSenderConfigurationConfiguredByArgsDto, SystemCommunicationEMailSenderConfigurationConnectionDto, SystemCommunicationEMailSenderConfigurationDto, SystemCommunicationEMailSenderConfigurationEdgeDto, SystemCommunicationEMailSenderConfigurationInputDto, SystemCommunicationEMailSenderConfigurationInputUpdateDto, SystemCommunicationEMailSenderConfigurationMapsFromArgsDto, SystemCommunicationEMailSenderConfigurationMapsToArgsDto, SystemCommunicationEMailSenderConfigurationMutationsCreateArgsDto, SystemCommunicationEMailSenderConfigurationMutationsDto, SystemCommunicationEMailSenderConfigurationMutationsUpdateArgsDto, SystemCommunicationEMailSenderConfigurationRelatesFromArgsDto, SystemCommunicationEMailSenderConfigurationRelatesToArgsDto, SystemCommunicationEMailSenderConfigurationTaggedByArgsDto, SystemCommunicationEMailSenderConfigurationUpdateDto, SystemCommunicationEMailSenderConfigurationUpdateMessageDto, SystemCommunicationEMailSenderConfigurationUsedByArgsDto, SystemCommunicationEdaConfigurationAssociationsArgsDto, SystemCommunicationEdaConfigurationConfiguredByArgsDto, SystemCommunicationEdaConfigurationConnectionDto, SystemCommunicationEdaConfigurationDto, SystemCommunicationEdaConfigurationEdgeDto, SystemCommunicationEdaConfigurationInputDto, SystemCommunicationEdaConfigurationInputUpdateDto, SystemCommunicationEdaConfigurationMapsFromArgsDto, SystemCommunicationEdaConfigurationMapsToArgsDto, SystemCommunicationEdaConfigurationMutationsCreateArgsDto, SystemCommunicationEdaConfigurationMutationsDto, SystemCommunicationEdaConfigurationMutationsUpdateArgsDto, SystemCommunicationEdaConfigurationRelatesFromArgsDto, SystemCommunicationEdaConfigurationRelatesToArgsDto, SystemCommunicationEdaConfigurationTaggedByArgsDto, SystemCommunicationEdaConfigurationUpdateDto, SystemCommunicationEdaConfigurationUpdateMessageDto, SystemCommunicationEdaConfigurationUsedByArgsDto, SystemCommunicationEnergyCommunityConfigurationAssociationsArgsDto, SystemCommunicationEnergyCommunityConfigurationConfiguredByArgsDto, SystemCommunicationEnergyCommunityConfigurationConnectionDto, SystemCommunicationEnergyCommunityConfigurationDto, SystemCommunicationEnergyCommunityConfigurationEdgeDto, SystemCommunicationEnergyCommunityConfigurationInputDto, SystemCommunicationEnergyCommunityConfigurationInputUpdateDto, SystemCommunicationEnergyCommunityConfigurationMapsFromArgsDto, SystemCommunicationEnergyCommunityConfigurationMapsToArgsDto, SystemCommunicationEnergyCommunityConfigurationMutationsCreateArgsDto, SystemCommunicationEnergyCommunityConfigurationMutationsDto, SystemCommunicationEnergyCommunityConfigurationMutationsUpdateArgsDto, SystemCommunicationEnergyCommunityConfigurationRelatesFromArgsDto, SystemCommunicationEnergyCommunityConfigurationRelatesToArgsDto, SystemCommunicationEnergyCommunityConfigurationTaggedByArgsDto, SystemCommunicationEnergyCommunityConfigurationUpdateDto, SystemCommunicationEnergyCommunityConfigurationUpdateMessageDto, SystemCommunicationEnergyCommunityConfigurationUsedByArgsDto, SystemCommunicationFinApiConfigurationAssociationsArgsDto, SystemCommunicationFinApiConfigurationConfiguredByArgsDto, SystemCommunicationFinApiConfigurationConnectionDto, SystemCommunicationFinApiConfigurationDto, SystemCommunicationFinApiConfigurationEdgeDto, SystemCommunicationFinApiConfigurationInputDto, SystemCommunicationFinApiConfigurationInputUpdateDto, SystemCommunicationFinApiConfigurationMapsFromArgsDto, SystemCommunicationFinApiConfigurationMapsToArgsDto, SystemCommunicationFinApiConfigurationMutationsCreateArgsDto, SystemCommunicationFinApiConfigurationMutationsDto, SystemCommunicationFinApiConfigurationMutationsUpdateArgsDto, SystemCommunicationFinApiConfigurationRelatesFromArgsDto, SystemCommunicationFinApiConfigurationRelatesToArgsDto, SystemCommunicationFinApiConfigurationTaggedByArgsDto, SystemCommunicationFinApiConfigurationUpdateDto, SystemCommunicationFinApiConfigurationUpdateMessageDto, SystemCommunicationFinApiConfigurationUsedByArgsDto, SystemCommunicationGrafanaConfigurationAssociationsArgsDto, SystemCommunicationGrafanaConfigurationConfiguredByArgsDto, SystemCommunicationGrafanaConfigurationConnectionDto, SystemCommunicationGrafanaConfigurationDto, SystemCommunicationGrafanaConfigurationEdgeDto, SystemCommunicationGrafanaConfigurationInputDto, SystemCommunicationGrafanaConfigurationInputUpdateDto, SystemCommunicationGrafanaConfigurationMapsFromArgsDto, SystemCommunicationGrafanaConfigurationMapsToArgsDto, SystemCommunicationGrafanaConfigurationMutationsCreateArgsDto, SystemCommunicationGrafanaConfigurationMutationsDto, SystemCommunicationGrafanaConfigurationMutationsUpdateArgsDto, SystemCommunicationGrafanaConfigurationRelatesFromArgsDto, SystemCommunicationGrafanaConfigurationRelatesToArgsDto, SystemCommunicationGrafanaConfigurationTaggedByArgsDto, SystemCommunicationGrafanaConfigurationUpdateDto, SystemCommunicationGrafanaConfigurationUpdateMessageDto, SystemCommunicationGrafanaConfigurationUsedByArgsDto, SystemCommunicationHelmRepositoryConfigurationAssociationsArgsDto, SystemCommunicationHelmRepositoryConfigurationConfiguredByArgsDto, SystemCommunicationHelmRepositoryConfigurationConnectionDto, SystemCommunicationHelmRepositoryConfigurationDto, SystemCommunicationHelmRepositoryConfigurationEdgeDto, SystemCommunicationHelmRepositoryConfigurationHelmRepositoryUsedByArgsDto, SystemCommunicationHelmRepositoryConfigurationInputDto, SystemCommunicationHelmRepositoryConfigurationInputUpdateDto, SystemCommunicationHelmRepositoryConfigurationMapsFromArgsDto, SystemCommunicationHelmRepositoryConfigurationMapsToArgsDto, SystemCommunicationHelmRepositoryConfigurationMutationsCreateArgsDto, SystemCommunicationHelmRepositoryConfigurationMutationsDto, SystemCommunicationHelmRepositoryConfigurationMutationsUpdateArgsDto, SystemCommunicationHelmRepositoryConfigurationRelatesFromArgsDto, SystemCommunicationHelmRepositoryConfigurationRelatesToArgsDto, SystemCommunicationHelmRepositoryConfigurationTaggedByArgsDto, SystemCommunicationHelmRepositoryConfigurationUpdateDto, SystemCommunicationHelmRepositoryConfigurationUpdateMessageDto, SystemCommunicationHelmRepositoryConfigurationUsedByArgsDto, SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionConnectionDto, SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionDto, SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionEdgeDto, SystemCommunicationLoxoneConfigurationAssociationsArgsDto, SystemCommunicationLoxoneConfigurationConfiguredByArgsDto, SystemCommunicationLoxoneConfigurationConnectionDto, SystemCommunicationLoxoneConfigurationDto, SystemCommunicationLoxoneConfigurationEdgeDto, SystemCommunicationLoxoneConfigurationInputDto, SystemCommunicationLoxoneConfigurationInputUpdateDto, SystemCommunicationLoxoneConfigurationMapsFromArgsDto, SystemCommunicationLoxoneConfigurationMapsToArgsDto, SystemCommunicationLoxoneConfigurationMutationsCreateArgsDto, SystemCommunicationLoxoneConfigurationMutationsDto, SystemCommunicationLoxoneConfigurationMutationsUpdateArgsDto, SystemCommunicationLoxoneConfigurationRelatesFromArgsDto, SystemCommunicationLoxoneConfigurationRelatesToArgsDto, SystemCommunicationLoxoneConfigurationTaggedByArgsDto, SystemCommunicationLoxoneConfigurationUpdateDto, SystemCommunicationLoxoneConfigurationUpdateMessageDto, SystemCommunicationLoxoneConfigurationUsedByArgsDto, SystemCommunicationMappingTargetDto, SystemCommunicationMappingTargetInputDto, SystemCommunicationMicrosoftGraphConfigurationAssociationsArgsDto, SystemCommunicationMicrosoftGraphConfigurationConfiguredByArgsDto, SystemCommunicationMicrosoftGraphConfigurationConnectionDto, SystemCommunicationMicrosoftGraphConfigurationDto, SystemCommunicationMicrosoftGraphConfigurationEdgeDto, SystemCommunicationMicrosoftGraphConfigurationInputDto, SystemCommunicationMicrosoftGraphConfigurationInputUpdateDto, SystemCommunicationMicrosoftGraphConfigurationMapsFromArgsDto, SystemCommunicationMicrosoftGraphConfigurationMapsToArgsDto, SystemCommunicationMicrosoftGraphConfigurationMutationsCreateArgsDto, SystemCommunicationMicrosoftGraphConfigurationMutationsDto, SystemCommunicationMicrosoftGraphConfigurationMutationsUpdateArgsDto, SystemCommunicationMicrosoftGraphConfigurationRelatesFromArgsDto, SystemCommunicationMicrosoftGraphConfigurationRelatesToArgsDto, SystemCommunicationMicrosoftGraphConfigurationTaggedByArgsDto, SystemCommunicationMicrosoftGraphConfigurationUpdateDto, SystemCommunicationMicrosoftGraphConfigurationUpdateMessageDto, SystemCommunicationMicrosoftGraphConfigurationUsedByArgsDto, SystemCommunicationPipelineAssociationsArgsDto, SystemCommunicationPipelineConfiguredByArgsDto, SystemCommunicationPipelineConnectionDto, SystemCommunicationPipelineDto, SystemCommunicationPipelineEdgeDto, SystemCommunicationPipelineExecutedByArgsDto, SystemCommunicationPipelineExecutedPipelineArgsDto, SystemCommunicationPipelineExecutionAdapterExecutionsArgsDto, SystemCommunicationPipelineExecutionAssociationsArgsDto, SystemCommunicationPipelineExecutionConfiguredByArgsDto, SystemCommunicationPipelineExecutionConnectionDto, SystemCommunicationPipelineExecutionDto, SystemCommunicationPipelineExecutionEdgeDto, SystemCommunicationPipelineExecutionInputDto, SystemCommunicationPipelineExecutionInputUpdateDto, SystemCommunicationPipelineExecutionMapsFromArgsDto, SystemCommunicationPipelineExecutionMapsToArgsDto, SystemCommunicationPipelineExecutionMutationsCreateArgsDto, SystemCommunicationPipelineExecutionMutationsDto, SystemCommunicationPipelineExecutionMutationsUpdateArgsDto, SystemCommunicationPipelineExecutionPipelineExecutionsArgsDto, SystemCommunicationPipelineExecutionRelatesFromArgsDto, SystemCommunicationPipelineExecutionRelatesToArgsDto, SystemCommunicationPipelineExecutionTaggedByArgsDto, SystemCommunicationPipelineExecutionUpdateDto, SystemCommunicationPipelineExecutionUpdateMessageDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnectionDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionEdgeDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnectionDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionEdgeDto, SystemCommunicationPipelineInputDto, SystemCommunicationPipelineInputUpdateDto, SystemCommunicationPipelineIsUsingArgsDto, SystemCommunicationPipelineMapsFromArgsDto, SystemCommunicationPipelineMapsToArgsDto, SystemCommunicationPipelineMutationsCreateArgsDto, SystemCommunicationPipelineMutationsDto, SystemCommunicationPipelineMutationsUpdateArgsDto, SystemCommunicationPipelineParentArgsDto, SystemCommunicationPipelineReceivesDataFromArgsDto, SystemCommunicationPipelineRelatesFromArgsDto, SystemCommunicationPipelineRelatesToArgsDto, SystemCommunicationPipelineSendsDataToArgsDto, SystemCommunicationPipelineStatisticsAssociationsArgsDto, SystemCommunicationPipelineStatisticsConfiguredByArgsDto, SystemCommunicationPipelineStatisticsConnectionDto, SystemCommunicationPipelineStatisticsDto, SystemCommunicationPipelineStatisticsEdgeDto, SystemCommunicationPipelineStatisticsForPipelineArgsDto, SystemCommunicationPipelineStatisticsInputDto, SystemCommunicationPipelineStatisticsInputUpdateDto, SystemCommunicationPipelineStatisticsMapsFromArgsDto, SystemCommunicationPipelineStatisticsMapsToArgsDto, SystemCommunicationPipelineStatisticsMutationsCreateArgsDto, SystemCommunicationPipelineStatisticsMutationsDto, SystemCommunicationPipelineStatisticsMutationsUpdateArgsDto, SystemCommunicationPipelineStatisticsPipelineStatisticsArgsDto, SystemCommunicationPipelineStatisticsRelatesFromArgsDto, SystemCommunicationPipelineStatisticsRelatesToArgsDto, SystemCommunicationPipelineStatisticsTaggedByArgsDto, SystemCommunicationPipelineStatisticsUpdateDto, SystemCommunicationPipelineStatisticsUpdateMessageDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnectionDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionEdgeDto, SystemCommunicationPipelineTaggedByArgsDto, SystemCommunicationPipelineTriggerAssociationsArgsDto, SystemCommunicationPipelineTriggerConfiguredByArgsDto, SystemCommunicationPipelineTriggerConnectionDto, SystemCommunicationPipelineTriggerDto, SystemCommunicationPipelineTriggerEdgeDto, SystemCommunicationPipelineTriggerInputDto, SystemCommunicationPipelineTriggerInputUpdateDto, SystemCommunicationPipelineTriggerMapsFromArgsDto, SystemCommunicationPipelineTriggerMapsToArgsDto, SystemCommunicationPipelineTriggerMutationsCreateArgsDto, SystemCommunicationPipelineTriggerMutationsDto, SystemCommunicationPipelineTriggerMutationsUpdateArgsDto, SystemCommunicationPipelineTriggerParentArgsDto, SystemCommunicationPipelineTriggerRelatesFromArgsDto, SystemCommunicationPipelineTriggerRelatesToArgsDto, SystemCommunicationPipelineTriggerTaggedByArgsDto, SystemCommunicationPipelineTriggerTriggeredByArgsDto, SystemCommunicationPipelineTriggerUpdateDto, SystemCommunicationPipelineTriggerUpdateMessageDto, SystemCommunicationPipelineTrigger_TriggersUnionConnectionDto, SystemCommunicationPipelineTrigger_TriggersUnionDto, SystemCommunicationPipelineTrigger_TriggersUnionEdgeDto, SystemCommunicationPipelineTriggersArgsDto, SystemCommunicationPipelineUpdateDto, SystemCommunicationPipelineUpdateMessageDto, SystemCommunicationPipeline_ChildrenUnionConnectionDto, SystemCommunicationPipeline_ChildrenUnionDto, SystemCommunicationPipeline_ChildrenUnionEdgeDto, SystemCommunicationPipeline_ExecutesUnionConnectionDto, SystemCommunicationPipeline_ExecutesUnionDto, SystemCommunicationPipeline_ExecutesUnionEdgeDto, SystemCommunicationPipeline_PipelineExecutionsUnionConnectionDto, SystemCommunicationPipeline_PipelineExecutionsUnionDto, SystemCommunicationPipeline_PipelineExecutionsUnionEdgeDto, SystemCommunicationPipeline_PipelineStatisticsUnionConnectionDto, SystemCommunicationPipeline_PipelineStatisticsUnionDto, SystemCommunicationPipeline_PipelineStatisticsUnionEdgeDto, SystemCommunicationPipeline_ReceivesDataFromUnionConnectionDto, SystemCommunicationPipeline_ReceivesDataFromUnionDto, SystemCommunicationPipeline_ReceivesDataFromUnionEdgeDto, SystemCommunicationPipeline_SendsDataToUnionConnectionDto, SystemCommunicationPipeline_SendsDataToUnionDto, SystemCommunicationPipeline_SendsDataToUnionEdgeDto, SystemCommunicationPipeline_TriggeredByUnionConnectionDto, SystemCommunicationPipeline_TriggeredByUnionDto, SystemCommunicationPipeline_TriggeredByUnionEdgeDto, SystemCommunicationPipeline_UsedByUnionConnectionDto, SystemCommunicationPipeline_UsedByUnionDto, SystemCommunicationPipeline_UsedByUnionEdgeDto, SystemCommunicationPoolAssociationsArgsDto, SystemCommunicationPoolConfiguredByArgsDto, SystemCommunicationPoolConnectionDto, SystemCommunicationPoolDto, SystemCommunicationPoolEdgeDto, SystemCommunicationPoolInputDto, SystemCommunicationPoolInputUpdateDto, SystemCommunicationPoolManagesArgsDto, SystemCommunicationPoolMapsFromArgsDto, SystemCommunicationPoolMapsToArgsDto, SystemCommunicationPoolMutationsCreateArgsDto, SystemCommunicationPoolMutationsDto, SystemCommunicationPoolMutationsUpdateArgsDto, SystemCommunicationPoolRelatesFromArgsDto, SystemCommunicationPoolRelatesToArgsDto, SystemCommunicationPoolTaggedByArgsDto, SystemCommunicationPoolUpdateDto, SystemCommunicationPoolUpdateMessageDto, SystemCommunicationPool_ManagedByUnionConnectionDto, SystemCommunicationPool_ManagedByUnionDto, SystemCommunicationPool_ManagedByUnionEdgeDto, SystemCommunicationSapConfigurationAssociationsArgsDto, SystemCommunicationSapConfigurationConfiguredByArgsDto, SystemCommunicationSapConfigurationConnectionDto, SystemCommunicationSapConfigurationDto, SystemCommunicationSapConfigurationEdgeDto, SystemCommunicationSapConfigurationInputDto, SystemCommunicationSapConfigurationInputUpdateDto, SystemCommunicationSapConfigurationMapsFromArgsDto, SystemCommunicationSapConfigurationMapsToArgsDto, SystemCommunicationSapConfigurationMutationsCreateArgsDto, SystemCommunicationSapConfigurationMutationsDto, SystemCommunicationSapConfigurationMutationsUpdateArgsDto, SystemCommunicationSapConfigurationRelatesFromArgsDto, SystemCommunicationSapConfigurationRelatesToArgsDto, SystemCommunicationSapConfigurationTaggedByArgsDto, SystemCommunicationSapConfigurationUpdateDto, SystemCommunicationSapConfigurationUpdateMessageDto, SystemCommunicationSapConfigurationUsedByArgsDto, SystemCommunicationServiceAccountConfigurationAssociationsArgsDto, SystemCommunicationServiceAccountConfigurationConfiguredByArgsDto, SystemCommunicationServiceAccountConfigurationConnectionDto, SystemCommunicationServiceAccountConfigurationDto, SystemCommunicationServiceAccountConfigurationEdgeDto, SystemCommunicationServiceAccountConfigurationInputDto, SystemCommunicationServiceAccountConfigurationInputUpdateDto, SystemCommunicationServiceAccountConfigurationMapsFromArgsDto, SystemCommunicationServiceAccountConfigurationMapsToArgsDto, SystemCommunicationServiceAccountConfigurationMutationsCreateArgsDto, SystemCommunicationServiceAccountConfigurationMutationsDto, SystemCommunicationServiceAccountConfigurationMutationsUpdateArgsDto, SystemCommunicationServiceAccountConfigurationRelatesFromArgsDto, SystemCommunicationServiceAccountConfigurationRelatesToArgsDto, SystemCommunicationServiceAccountConfigurationTaggedByArgsDto, SystemCommunicationServiceAccountConfigurationUpdateDto, SystemCommunicationServiceAccountConfigurationUpdateMessageDto, SystemCommunicationServiceAccountConfigurationUsedByArgsDto, SystemCommunicationSftpConfigurationAssociationsArgsDto, SystemCommunicationSftpConfigurationConfiguredByArgsDto, SystemCommunicationSftpConfigurationConnectionDto, SystemCommunicationSftpConfigurationDto, SystemCommunicationSftpConfigurationEdgeDto, SystemCommunicationSftpConfigurationInputDto, SystemCommunicationSftpConfigurationInputUpdateDto, SystemCommunicationSftpConfigurationMapsFromArgsDto, SystemCommunicationSftpConfigurationMapsToArgsDto, SystemCommunicationSftpConfigurationMutationsCreateArgsDto, SystemCommunicationSftpConfigurationMutationsDto, SystemCommunicationSftpConfigurationMutationsUpdateArgsDto, SystemCommunicationSftpConfigurationRelatesFromArgsDto, SystemCommunicationSftpConfigurationRelatesToArgsDto, SystemCommunicationSftpConfigurationTaggedByArgsDto, SystemCommunicationSftpConfigurationUpdateDto, SystemCommunicationSftpConfigurationUpdateMessageDto, SystemCommunicationSftpConfigurationUsedByArgsDto, SystemCommunicationTagAssociationsArgsDto, SystemCommunicationTagConfiguredByArgsDto, SystemCommunicationTagConnectionDto, SystemCommunicationTagDto, SystemCommunicationTagEdgeDto, SystemCommunicationTagInputDto, SystemCommunicationTagInputUpdateDto, SystemCommunicationTagIsTaggingArgsDto, SystemCommunicationTagMapsFromArgsDto, SystemCommunicationTagMapsToArgsDto, SystemCommunicationTagMutationsCreateArgsDto, SystemCommunicationTagMutationsDto, SystemCommunicationTagMutationsUpdateArgsDto, SystemCommunicationTagRelatesFromArgsDto, SystemCommunicationTagRelatesToArgsDto, SystemCommunicationTagTaggedByArgsDto, SystemCommunicationTagUpdateDto, SystemCommunicationTagUpdateMessageDto, SystemCommunicationTag_TaggedByUnionConnectionDto, SystemCommunicationTag_TaggedByUnionDto, SystemCommunicationTag_TaggedByUnionEdgeDto, SystemCommunicationUiThemeColorsDto, SystemCommunicationUiThemeColorsInputDto, SystemCommunicationValueOverrideDto, SystemCommunicationValueOverrideInputDto, SystemConfigurationAssociationsArgsDto, SystemConfigurationConfiguredByArgsDto, SystemConfigurationConnectionDto, SystemConfigurationDto, SystemConfigurationEdgeDto, SystemConfigurationInterfaceConfiguredByArgsDto, SystemConfigurationInterfaceDto, SystemConfigurationInterfaceMapsFromArgsDto, SystemConfigurationInterfaceMapsToArgsDto, SystemConfigurationInterfaceRelatesFromArgsDto, SystemConfigurationInterfaceRelatesToArgsDto, SystemConfigurationInterfaceTaggedByArgsDto, SystemConfigurationInterfaceUsedByArgsDto, SystemConfigurationMapsFromArgsDto, SystemConfigurationMapsToArgsDto, SystemConfigurationRelatesFromArgsDto, SystemConfigurationRelatesToArgsDto, SystemConfigurationTaggedByArgsDto, SystemConfigurationUpdateDto, SystemConfigurationUpdateMessageDto, SystemConfigurationUsedByArgsDto, SystemConfiguration_IsUsingUnionConnectionDto, SystemConfiguration_IsUsingUnionDto, SystemConfiguration_IsUsingUnionEdgeDto, SystemDownsamplingSdQueryAssociationsArgsDto, SystemDownsamplingSdQueryConfiguredByArgsDto, SystemDownsamplingSdQueryConnectionDto, SystemDownsamplingSdQueryDto, SystemDownsamplingSdQueryEdgeDto, SystemDownsamplingSdQueryInputDto, SystemDownsamplingSdQueryInputUpdateDto, SystemDownsamplingSdQueryMapsFromArgsDto, SystemDownsamplingSdQueryMapsToArgsDto, SystemDownsamplingSdQueryMutationsCreateArgsDto, SystemDownsamplingSdQueryMutationsDto, SystemDownsamplingSdQueryMutationsUpdateArgsDto, SystemDownsamplingSdQueryRelatesFromArgsDto, SystemDownsamplingSdQueryRelatesToArgsDto, SystemDownsamplingSdQueryTaggedByArgsDto, SystemDownsamplingSdQueryUpdateDto, SystemDownsamplingSdQueryUpdateMessageDto, SystemEntityAssociationsArgsDto, SystemEntityConfiguredByArgsDto, SystemEntityConnectionDto, SystemEntityDto, SystemEntityEdgeDto, SystemEntityInterfaceConfiguredByArgsDto, SystemEntityInterfaceDto, SystemEntityInterfaceMapsFromArgsDto, SystemEntityInterfaceMapsToArgsDto, SystemEntityInterfaceRelatesFromArgsDto, SystemEntityInterfaceRelatesToArgsDto, SystemEntityInterfaceTaggedByArgsDto, SystemEntityMapsFromArgsDto, SystemEntityMapsToArgsDto, SystemEntityRelatesFromArgsDto, SystemEntityRelatesToArgsDto, SystemEntityTaggedByArgsDto, SystemEntityUpdateDto, SystemEntityUpdateMessageDto, SystemEntity_ConfiguresUnionConnectionDto, SystemEntity_ConfiguresUnionDto, SystemEntity_ConfiguresUnionEdgeDto, SystemEntity_IsTaggingUnionConnectionDto, SystemEntity_IsTaggingUnionDto, SystemEntity_IsTaggingUnionEdgeDto, SystemEntity_MappedAsSourceUnionConnectionDto, SystemEntity_MappedAsSourceUnionDto, SystemEntity_MappedAsSourceUnionEdgeDto, SystemEntity_MappedAsTargetUnionConnectionDto, SystemEntity_MappedAsTargetUnionDto, SystemEntity_MappedAsTargetUnionEdgeDto, SystemEntity_RelatesFromUnionConnectionDto, SystemEntity_RelatesFromUnionDto, SystemEntity_RelatesFromUnionEdgeDto, SystemEntity_RelatesToUnionConnectionDto, SystemEntity_RelatesToUnionDto, SystemEntity_RelatesToUnionEdgeDto, SystemFieldFilterDto, SystemFieldFilterInputDto, SystemGroupingAggregationRtQueryAssociationsArgsDto, SystemGroupingAggregationRtQueryConfiguredByArgsDto, SystemGroupingAggregationRtQueryConnectionDto, SystemGroupingAggregationRtQueryDto, SystemGroupingAggregationRtQueryEdgeDto, SystemGroupingAggregationRtQueryInputDto, SystemGroupingAggregationRtQueryInputUpdateDto, SystemGroupingAggregationRtQueryMapsFromArgsDto, SystemGroupingAggregationRtQueryMapsToArgsDto, SystemGroupingAggregationRtQueryMutationsCreateArgsDto, SystemGroupingAggregationRtQueryMutationsDto, SystemGroupingAggregationRtQueryMutationsUpdateArgsDto, SystemGroupingAggregationRtQueryRelatesFromArgsDto, SystemGroupingAggregationRtQueryRelatesToArgsDto, SystemGroupingAggregationRtQueryTaggedByArgsDto, SystemGroupingAggregationRtQueryUpdateDto, SystemGroupingAggregationRtQueryUpdateMessageDto, SystemGroupingAggregationSdQueryAssociationsArgsDto, SystemGroupingAggregationSdQueryConfiguredByArgsDto, SystemGroupingAggregationSdQueryConnectionDto, SystemGroupingAggregationSdQueryDto, SystemGroupingAggregationSdQueryEdgeDto, SystemGroupingAggregationSdQueryInputDto, SystemGroupingAggregationSdQueryInputUpdateDto, SystemGroupingAggregationSdQueryMapsFromArgsDto, SystemGroupingAggregationSdQueryMapsToArgsDto, SystemGroupingAggregationSdQueryMutationsCreateArgsDto, SystemGroupingAggregationSdQueryMutationsDto, SystemGroupingAggregationSdQueryMutationsUpdateArgsDto, SystemGroupingAggregationSdQueryRelatesFromArgsDto, SystemGroupingAggregationSdQueryRelatesToArgsDto, SystemGroupingAggregationSdQueryTaggedByArgsDto, SystemGroupingAggregationSdQueryUpdateDto, SystemGroupingAggregationSdQueryUpdateMessageDto, SystemIdentityApiResourceAssociationsArgsDto, SystemIdentityApiResourceConfiguredByArgsDto, SystemIdentityApiResourceConnectionDto, SystemIdentityApiResourceDto, SystemIdentityApiResourceEdgeDto, SystemIdentityApiResourceInputDto, SystemIdentityApiResourceInputUpdateDto, SystemIdentityApiResourceMapsFromArgsDto, SystemIdentityApiResourceMapsToArgsDto, SystemIdentityApiResourceMutationsCreateArgsDto, SystemIdentityApiResourceMutationsDto, SystemIdentityApiResourceMutationsUpdateArgsDto, SystemIdentityApiResourceRelatesFromArgsDto, SystemIdentityApiResourceRelatesToArgsDto, SystemIdentityApiResourceTaggedByArgsDto, SystemIdentityApiResourceUpdateDto, SystemIdentityApiResourceUpdateMessageDto, SystemIdentityApiScopeAssociationsArgsDto, SystemIdentityApiScopeConfiguredByArgsDto, SystemIdentityApiScopeConnectionDto, SystemIdentityApiScopeDto, SystemIdentityApiScopeEdgeDto, SystemIdentityApiScopeInputDto, SystemIdentityApiScopeInputUpdateDto, SystemIdentityApiScopeMapsFromArgsDto, SystemIdentityApiScopeMapsToArgsDto, SystemIdentityApiScopeMutationsCreateArgsDto, SystemIdentityApiScopeMutationsDto, SystemIdentityApiScopeMutationsUpdateArgsDto, SystemIdentityApiScopeRelatesFromArgsDto, SystemIdentityApiScopeRelatesToArgsDto, SystemIdentityApiScopeTaggedByArgsDto, SystemIdentityApiScopeUpdateDto, SystemIdentityApiScopeUpdateMessageDto, SystemIdentityAzureEntraIdIdentityProviderAssociationsArgsDto, SystemIdentityAzureEntraIdIdentityProviderConfiguredByArgsDto, SystemIdentityAzureEntraIdIdentityProviderConnectionDto, SystemIdentityAzureEntraIdIdentityProviderDto, SystemIdentityAzureEntraIdIdentityProviderEdgeDto, SystemIdentityAzureEntraIdIdentityProviderInputDto, SystemIdentityAzureEntraIdIdentityProviderInputUpdateDto, SystemIdentityAzureEntraIdIdentityProviderMapsFromArgsDto, SystemIdentityAzureEntraIdIdentityProviderMapsToArgsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsCreateArgsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsUpdateArgsDto, SystemIdentityAzureEntraIdIdentityProviderRelatesFromArgsDto, SystemIdentityAzureEntraIdIdentityProviderRelatesToArgsDto, SystemIdentityAzureEntraIdIdentityProviderTaggedByArgsDto, SystemIdentityAzureEntraIdIdentityProviderUpdateDto, SystemIdentityAzureEntraIdIdentityProviderUpdateMessageDto, SystemIdentityClientAssociationsArgsDto, SystemIdentityClientClaimDto, SystemIdentityClientClaimInputDto, SystemIdentityClientConfiguredByArgsDto, SystemIdentityClientConnectionDto, SystemIdentityClientDto, SystemIdentityClientEdgeDto, SystemIdentityClientInputDto, SystemIdentityClientInputUpdateDto, SystemIdentityClientMapsFromArgsDto, SystemIdentityClientMapsToArgsDto, SystemIdentityClientMutationsCreateArgsDto, SystemIdentityClientMutationsDto, SystemIdentityClientMutationsUpdateArgsDto, SystemIdentityClientRelatesFromArgsDto, SystemIdentityClientRelatesToArgsDto, SystemIdentityClientTaggedByArgsDto, SystemIdentityClientUpdateDto, SystemIdentityClientUpdateMessageDto, SystemIdentityEmailDomainGroupRuleAssociationsArgsDto, SystemIdentityEmailDomainGroupRuleConfiguredByArgsDto, SystemIdentityEmailDomainGroupRuleConnectionDto, SystemIdentityEmailDomainGroupRuleDto, SystemIdentityEmailDomainGroupRuleEdgeDto, SystemIdentityEmailDomainGroupRuleInputDto, SystemIdentityEmailDomainGroupRuleInputUpdateDto, SystemIdentityEmailDomainGroupRuleMapsFromArgsDto, SystemIdentityEmailDomainGroupRuleMapsToArgsDto, SystemIdentityEmailDomainGroupRuleMutationsCreateArgsDto, SystemIdentityEmailDomainGroupRuleMutationsDto, SystemIdentityEmailDomainGroupRuleMutationsUpdateArgsDto, SystemIdentityEmailDomainGroupRuleRelatesFromArgsDto, SystemIdentityEmailDomainGroupRuleRelatesToArgsDto, SystemIdentityEmailDomainGroupRuleTaggedByArgsDto, SystemIdentityEmailDomainGroupRuleUpdateDto, SystemIdentityEmailDomainGroupRuleUpdateMessageDto, SystemIdentityExternalTenantUserMappingAssociationsArgsDto, SystemIdentityExternalTenantUserMappingConfiguredByArgsDto, SystemIdentityExternalTenantUserMappingConnectionDto, SystemIdentityExternalTenantUserMappingDto, SystemIdentityExternalTenantUserMappingEdgeDto, SystemIdentityExternalTenantUserMappingInputDto, SystemIdentityExternalTenantUserMappingInputUpdateDto, SystemIdentityExternalTenantUserMappingMapsFromArgsDto, SystemIdentityExternalTenantUserMappingMapsToArgsDto, SystemIdentityExternalTenantUserMappingMemberOfGroupsArgsDto, SystemIdentityExternalTenantUserMappingMutationsCreateArgsDto, SystemIdentityExternalTenantUserMappingMutationsDto, SystemIdentityExternalTenantUserMappingMutationsUpdateArgsDto, SystemIdentityExternalTenantUserMappingRelatesFromArgsDto, SystemIdentityExternalTenantUserMappingRelatesToArgsDto, SystemIdentityExternalTenantUserMappingTaggedByArgsDto, SystemIdentityExternalTenantUserMappingUpdateDto, SystemIdentityExternalTenantUserMappingUpdateMessageDto, SystemIdentityFacebookIdentityProviderAssociationsArgsDto, SystemIdentityFacebookIdentityProviderConfiguredByArgsDto, SystemIdentityFacebookIdentityProviderConnectionDto, SystemIdentityFacebookIdentityProviderDto, SystemIdentityFacebookIdentityProviderEdgeDto, SystemIdentityFacebookIdentityProviderInputDto, SystemIdentityFacebookIdentityProviderInputUpdateDto, SystemIdentityFacebookIdentityProviderMapsFromArgsDto, SystemIdentityFacebookIdentityProviderMapsToArgsDto, SystemIdentityFacebookIdentityProviderMutationsCreateArgsDto, SystemIdentityFacebookIdentityProviderMutationsDto, SystemIdentityFacebookIdentityProviderMutationsUpdateArgsDto, SystemIdentityFacebookIdentityProviderRelatesFromArgsDto, SystemIdentityFacebookIdentityProviderRelatesToArgsDto, SystemIdentityFacebookIdentityProviderTaggedByArgsDto, SystemIdentityFacebookIdentityProviderUpdateDto, SystemIdentityFacebookIdentityProviderUpdateMessageDto, SystemIdentityGoogleIdentityProviderAssociationsArgsDto, SystemIdentityGoogleIdentityProviderConfiguredByArgsDto, SystemIdentityGoogleIdentityProviderConnectionDto, SystemIdentityGoogleIdentityProviderDto, SystemIdentityGoogleIdentityProviderEdgeDto, SystemIdentityGoogleIdentityProviderInputDto, SystemIdentityGoogleIdentityProviderInputUpdateDto, SystemIdentityGoogleIdentityProviderMapsFromArgsDto, SystemIdentityGoogleIdentityProviderMapsToArgsDto, SystemIdentityGoogleIdentityProviderMutationsCreateArgsDto, SystemIdentityGoogleIdentityProviderMutationsDto, SystemIdentityGoogleIdentityProviderMutationsUpdateArgsDto, SystemIdentityGoogleIdentityProviderRelatesFromArgsDto, SystemIdentityGoogleIdentityProviderRelatesToArgsDto, SystemIdentityGoogleIdentityProviderTaggedByArgsDto, SystemIdentityGoogleIdentityProviderUpdateDto, SystemIdentityGoogleIdentityProviderUpdateMessageDto, SystemIdentityGroupAssignedRolesArgsDto, SystemIdentityGroupAssociationsArgsDto, SystemIdentityGroupChildGroupsArgsDto, SystemIdentityGroupConfiguredByArgsDto, SystemIdentityGroupConnectionDto, SystemIdentityGroupDto, SystemIdentityGroupEdgeDto, SystemIdentityGroupInputDto, SystemIdentityGroupInputUpdateDto, SystemIdentityGroupMapsFromArgsDto, SystemIdentityGroupMapsToArgsDto, SystemIdentityGroupMembersArgsDto, SystemIdentityGroupMutationsCreateArgsDto, SystemIdentityGroupMutationsDto, SystemIdentityGroupMutationsUpdateArgsDto, SystemIdentityGroupParentGroupsArgsDto, SystemIdentityGroupRelatesFromArgsDto, SystemIdentityGroupRelatesToArgsDto, SystemIdentityGroupTaggedByArgsDto, SystemIdentityGroupUpdateDto, SystemIdentityGroupUpdateMessageDto, SystemIdentityGroup_AssignedEntitiesUnionConnectionDto, SystemIdentityGroup_AssignedEntitiesUnionDto, SystemIdentityGroup_AssignedEntitiesUnionEdgeDto, SystemIdentityGroup_ChildGroupsUnionConnectionDto, SystemIdentityGroup_ChildGroupsUnionDto, SystemIdentityGroup_ChildGroupsUnionEdgeDto, SystemIdentityGroup_MemberOfGroupsUnionConnectionDto, SystemIdentityGroup_MemberOfGroupsUnionDto, SystemIdentityGroup_MemberOfGroupsUnionEdgeDto, SystemIdentityGroup_ParentGroupsUnionConnectionDto, SystemIdentityGroup_ParentGroupsUnionDto, SystemIdentityGroup_ParentGroupsUnionEdgeDto, SystemIdentityIdentityProviderAssociationsArgsDto, SystemIdentityIdentityProviderConfiguredByArgsDto, SystemIdentityIdentityProviderConnectionDto, SystemIdentityIdentityProviderDto, SystemIdentityIdentityProviderEdgeDto, SystemIdentityIdentityProviderInterfaceConfiguredByArgsDto, SystemIdentityIdentityProviderInterfaceDto, SystemIdentityIdentityProviderInterfaceMapsFromArgsDto, SystemIdentityIdentityProviderInterfaceMapsToArgsDto, SystemIdentityIdentityProviderInterfaceRelatesFromArgsDto, SystemIdentityIdentityProviderInterfaceRelatesToArgsDto, SystemIdentityIdentityProviderInterfaceTaggedByArgsDto, SystemIdentityIdentityProviderMapsFromArgsDto, SystemIdentityIdentityProviderMapsToArgsDto, SystemIdentityIdentityProviderRelatesFromArgsDto, SystemIdentityIdentityProviderRelatesToArgsDto, SystemIdentityIdentityProviderTaggedByArgsDto, SystemIdentityIdentityProviderUpdateDto, SystemIdentityIdentityProviderUpdateMessageDto, SystemIdentityIdentityResourceAssociationsArgsDto, SystemIdentityIdentityResourceConfiguredByArgsDto, SystemIdentityIdentityResourceConnectionDto, SystemIdentityIdentityResourceDto, SystemIdentityIdentityResourceEdgeDto, SystemIdentityIdentityResourceInputDto, SystemIdentityIdentityResourceInputUpdateDto, SystemIdentityIdentityResourceMapsFromArgsDto, SystemIdentityIdentityResourceMapsToArgsDto, SystemIdentityIdentityResourceMutationsCreateArgsDto, SystemIdentityIdentityResourceMutationsDto, SystemIdentityIdentityResourceMutationsUpdateArgsDto, SystemIdentityIdentityResourceRelatesFromArgsDto, SystemIdentityIdentityResourceRelatesToArgsDto, SystemIdentityIdentityResourceTaggedByArgsDto, SystemIdentityIdentityResourceUpdateDto, SystemIdentityIdentityResourceUpdateMessageDto, SystemIdentityMailNotificationConfigurationAssociationsArgsDto, SystemIdentityMailNotificationConfigurationConfiguredByArgsDto, SystemIdentityMailNotificationConfigurationConnectionDto, SystemIdentityMailNotificationConfigurationDto, SystemIdentityMailNotificationConfigurationEdgeDto, SystemIdentityMailNotificationConfigurationInputDto, SystemIdentityMailNotificationConfigurationInputUpdateDto, SystemIdentityMailNotificationConfigurationMapsFromArgsDto, SystemIdentityMailNotificationConfigurationMapsToArgsDto, SystemIdentityMailNotificationConfigurationMutationsCreateArgsDto, SystemIdentityMailNotificationConfigurationMutationsDto, SystemIdentityMailNotificationConfigurationMutationsUpdateArgsDto, SystemIdentityMailNotificationConfigurationRelatesFromArgsDto, SystemIdentityMailNotificationConfigurationRelatesToArgsDto, SystemIdentityMailNotificationConfigurationTaggedByArgsDto, SystemIdentityMailNotificationConfigurationUpdateDto, SystemIdentityMailNotificationConfigurationUpdateMessageDto, SystemIdentityMailNotificationConfigurationUsedByArgsDto, SystemIdentityMicrosoftAdIdentityProviderAssociationsArgsDto, SystemIdentityMicrosoftAdIdentityProviderConfiguredByArgsDto, SystemIdentityMicrosoftAdIdentityProviderConnectionDto, SystemIdentityMicrosoftAdIdentityProviderDto, SystemIdentityMicrosoftAdIdentityProviderEdgeDto, SystemIdentityMicrosoftAdIdentityProviderInputDto, SystemIdentityMicrosoftAdIdentityProviderInputUpdateDto, SystemIdentityMicrosoftAdIdentityProviderMapsFromArgsDto, SystemIdentityMicrosoftAdIdentityProviderMapsToArgsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsCreateArgsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsUpdateArgsDto, SystemIdentityMicrosoftAdIdentityProviderRelatesFromArgsDto, SystemIdentityMicrosoftAdIdentityProviderRelatesToArgsDto, SystemIdentityMicrosoftAdIdentityProviderTaggedByArgsDto, SystemIdentityMicrosoftAdIdentityProviderUpdateDto, SystemIdentityMicrosoftAdIdentityProviderUpdateMessageDto, SystemIdentityMicrosoftIdentityProviderAssociationsArgsDto, SystemIdentityMicrosoftIdentityProviderConfiguredByArgsDto, SystemIdentityMicrosoftIdentityProviderConnectionDto, SystemIdentityMicrosoftIdentityProviderDto, SystemIdentityMicrosoftIdentityProviderEdgeDto, SystemIdentityMicrosoftIdentityProviderInputDto, SystemIdentityMicrosoftIdentityProviderInputUpdateDto, SystemIdentityMicrosoftIdentityProviderMapsFromArgsDto, SystemIdentityMicrosoftIdentityProviderMapsToArgsDto, SystemIdentityMicrosoftIdentityProviderMutationsCreateArgsDto, SystemIdentityMicrosoftIdentityProviderMutationsDto, SystemIdentityMicrosoftIdentityProviderMutationsUpdateArgsDto, SystemIdentityMicrosoftIdentityProviderRelatesFromArgsDto, SystemIdentityMicrosoftIdentityProviderRelatesToArgsDto, SystemIdentityMicrosoftIdentityProviderTaggedByArgsDto, SystemIdentityMicrosoftIdentityProviderUpdateDto, SystemIdentityMicrosoftIdentityProviderUpdateMessageDto, SystemIdentityOctoTenantIdentityProviderAssociationsArgsDto, SystemIdentityOctoTenantIdentityProviderConfiguredByArgsDto, SystemIdentityOctoTenantIdentityProviderConnectionDto, SystemIdentityOctoTenantIdentityProviderDto, SystemIdentityOctoTenantIdentityProviderEdgeDto, SystemIdentityOctoTenantIdentityProviderInputDto, SystemIdentityOctoTenantIdentityProviderInputUpdateDto, SystemIdentityOctoTenantIdentityProviderMapsFromArgsDto, SystemIdentityOctoTenantIdentityProviderMapsToArgsDto, SystemIdentityOctoTenantIdentityProviderMutationsCreateArgsDto, SystemIdentityOctoTenantIdentityProviderMutationsDto, SystemIdentityOctoTenantIdentityProviderMutationsUpdateArgsDto, SystemIdentityOctoTenantIdentityProviderRelatesFromArgsDto, SystemIdentityOctoTenantIdentityProviderRelatesToArgsDto, SystemIdentityOctoTenantIdentityProviderTaggedByArgsDto, SystemIdentityOctoTenantIdentityProviderUpdateDto, SystemIdentityOctoTenantIdentityProviderUpdateMessageDto, SystemIdentityOpenLdapIdentityProviderAssociationsArgsDto, SystemIdentityOpenLdapIdentityProviderConfiguredByArgsDto, SystemIdentityOpenLdapIdentityProviderConnectionDto, SystemIdentityOpenLdapIdentityProviderDto, SystemIdentityOpenLdapIdentityProviderEdgeDto, SystemIdentityOpenLdapIdentityProviderInputDto, SystemIdentityOpenLdapIdentityProviderInputUpdateDto, SystemIdentityOpenLdapIdentityProviderMapsFromArgsDto, SystemIdentityOpenLdapIdentityProviderMapsToArgsDto, SystemIdentityOpenLdapIdentityProviderMutationsCreateArgsDto, SystemIdentityOpenLdapIdentityProviderMutationsDto, SystemIdentityOpenLdapIdentityProviderMutationsUpdateArgsDto, SystemIdentityOpenLdapIdentityProviderRelatesFromArgsDto, SystemIdentityOpenLdapIdentityProviderRelatesToArgsDto, SystemIdentityOpenLdapIdentityProviderTaggedByArgsDto, SystemIdentityOpenLdapIdentityProviderUpdateDto, SystemIdentityOpenLdapIdentityProviderUpdateMessageDto, SystemIdentityPermissionAssociationsArgsDto, SystemIdentityPermissionConfiguredByArgsDto, SystemIdentityPermissionConnectionDto, SystemIdentityPermissionDto, SystemIdentityPermissionEdgeDto, SystemIdentityPermissionInputDto, SystemIdentityPermissionInputUpdateDto, SystemIdentityPermissionMapsFromArgsDto, SystemIdentityPermissionMapsToArgsDto, SystemIdentityPermissionMutationsCreateArgsDto, SystemIdentityPermissionMutationsDto, SystemIdentityPermissionMutationsUpdateArgsDto, SystemIdentityPermissionRelatesFromArgsDto, SystemIdentityPermissionRelatesToArgsDto, SystemIdentityPermissionRoleAssociationsArgsDto, SystemIdentityPermissionRoleConfiguredByArgsDto, SystemIdentityPermissionRoleConnectionDto, SystemIdentityPermissionRoleDto, SystemIdentityPermissionRoleEdgeDto, SystemIdentityPermissionRoleInputDto, SystemIdentityPermissionRoleInputUpdateDto, SystemIdentityPermissionRoleMapsFromArgsDto, SystemIdentityPermissionRoleMapsToArgsDto, SystemIdentityPermissionRoleMutationsCreateArgsDto, SystemIdentityPermissionRoleMutationsDto, SystemIdentityPermissionRoleMutationsUpdateArgsDto, SystemIdentityPermissionRoleRelatesFromArgsDto, SystemIdentityPermissionRoleRelatesToArgsDto, SystemIdentityPermissionRoleTaggedByArgsDto, SystemIdentityPermissionRoleUpdateDto, SystemIdentityPermissionRoleUpdateMessageDto, SystemIdentityPermissionTaggedByArgsDto, SystemIdentityPermissionUpdateDto, SystemIdentityPermissionUpdateMessageDto, SystemIdentityPersistedGrantAssociationsArgsDto, SystemIdentityPersistedGrantConfiguredByArgsDto, SystemIdentityPersistedGrantConnectionDto, SystemIdentityPersistedGrantDto, SystemIdentityPersistedGrantEdgeDto, SystemIdentityPersistedGrantInputDto, SystemIdentityPersistedGrantInputUpdateDto, SystemIdentityPersistedGrantMapsFromArgsDto, SystemIdentityPersistedGrantMapsToArgsDto, SystemIdentityPersistedGrantMutationsCreateArgsDto, SystemIdentityPersistedGrantMutationsDto, SystemIdentityPersistedGrantMutationsUpdateArgsDto, SystemIdentityPersistedGrantRelatesFromArgsDto, SystemIdentityPersistedGrantRelatesToArgsDto, SystemIdentityPersistedGrantTaggedByArgsDto, SystemIdentityPersistedGrantUpdateDto, SystemIdentityPersistedGrantUpdateMessageDto, SystemIdentityResourceAssociationsArgsDto, SystemIdentityResourceConfiguredByArgsDto, SystemIdentityResourceConnectionDto, SystemIdentityResourceDto, SystemIdentityResourceEdgeDto, SystemIdentityResourceInterfaceConfiguredByArgsDto, SystemIdentityResourceInterfaceDto, SystemIdentityResourceInterfaceMapsFromArgsDto, SystemIdentityResourceInterfaceMapsToArgsDto, SystemIdentityResourceInterfaceRelatesFromArgsDto, SystemIdentityResourceInterfaceRelatesToArgsDto, SystemIdentityResourceInterfaceTaggedByArgsDto, SystemIdentityResourceMapsFromArgsDto, SystemIdentityResourceMapsToArgsDto, SystemIdentityResourceRelatesFromArgsDto, SystemIdentityResourceRelatesToArgsDto, SystemIdentityResourceTaggedByArgsDto, SystemIdentityResourceUpdateDto, SystemIdentityResourceUpdateMessageDto, SystemIdentityRoleAssignedEntitiesArgsDto, SystemIdentityRoleAssociationsArgsDto, SystemIdentityRoleClaimDto, SystemIdentityRoleClaimInputDto, SystemIdentityRoleConfiguredByArgsDto, SystemIdentityRoleConnectionDto, SystemIdentityRoleDto, SystemIdentityRoleEdgeDto, SystemIdentityRoleInputDto, SystemIdentityRoleInputUpdateDto, SystemIdentityRoleMapsFromArgsDto, SystemIdentityRoleMapsToArgsDto, SystemIdentityRoleMutationsCreateArgsDto, SystemIdentityRoleMutationsDto, SystemIdentityRoleMutationsUpdateArgsDto, SystemIdentityRoleRelatesFromArgsDto, SystemIdentityRoleRelatesToArgsDto, SystemIdentityRoleTaggedByArgsDto, SystemIdentityRoleUpdateDto, SystemIdentityRoleUpdateMessageDto, SystemIdentityRole_AssignedRolesUnionConnectionDto, SystemIdentityRole_AssignedRolesUnionDto, SystemIdentityRole_AssignedRolesUnionEdgeDto, SystemIdentitySecretDto, SystemIdentitySecretInputDto, SystemIdentityUserAssignedRolesArgsDto, SystemIdentityUserAssociationsArgsDto, SystemIdentityUserClaimDto, SystemIdentityUserClaimInputDto, SystemIdentityUserConfiguredByArgsDto, SystemIdentityUserConnectionDto, SystemIdentityUserDto, SystemIdentityUserEdgeDto, SystemIdentityUserInputDto, SystemIdentityUserInputUpdateDto, SystemIdentityUserLoginDto, SystemIdentityUserLoginInputDto, SystemIdentityUserMapsFromArgsDto, SystemIdentityUserMapsToArgsDto, SystemIdentityUserMemberOfGroupsArgsDto, SystemIdentityUserMutationsCreateArgsDto, SystemIdentityUserMutationsDto, SystemIdentityUserMutationsUpdateArgsDto, SystemIdentityUserRelatesFromArgsDto, SystemIdentityUserRelatesToArgsDto, SystemIdentityUserTaggedByArgsDto, SystemIdentityUserTokenDto, SystemIdentityUserTokenInputDto, SystemIdentityUserUpdateDto, SystemIdentityUserUpdateMessageDto, SystemIdentityUser_MembersUnionConnectionDto, SystemIdentityUser_MembersUnionDto, SystemIdentityUser_MembersUnionEdgeDto, SystemMigrationHistoryAssociationsArgsDto, SystemMigrationHistoryConfiguredByArgsDto, SystemMigrationHistoryConnectionDto, SystemMigrationHistoryDto, SystemMigrationHistoryEdgeDto, SystemMigrationHistoryInputDto, SystemMigrationHistoryInputUpdateDto, SystemMigrationHistoryMapsFromArgsDto, SystemMigrationHistoryMapsToArgsDto, SystemMigrationHistoryMutationsCreateArgsDto, SystemMigrationHistoryMutationsDto, SystemMigrationHistoryMutationsUpdateArgsDto, SystemMigrationHistoryRelatesFromArgsDto, SystemMigrationHistoryRelatesToArgsDto, SystemMigrationHistoryTaggedByArgsDto, SystemMigrationHistoryUpdateDto, SystemMigrationHistoryUpdateMessageDto, SystemNotificationCssTemplateConfigurationAssociationsArgsDto, SystemNotificationCssTemplateConfigurationConfiguredByArgsDto, SystemNotificationCssTemplateConfigurationConnectionDto, SystemNotificationCssTemplateConfigurationDto, SystemNotificationCssTemplateConfigurationEdgeDto, SystemNotificationCssTemplateConfigurationInputDto, SystemNotificationCssTemplateConfigurationInputUpdateDto, SystemNotificationCssTemplateConfigurationMapsFromArgsDto, SystemNotificationCssTemplateConfigurationMapsToArgsDto, SystemNotificationCssTemplateConfigurationMutationsCreateArgsDto, SystemNotificationCssTemplateConfigurationMutationsDto, SystemNotificationCssTemplateConfigurationMutationsUpdateArgsDto, SystemNotificationCssTemplateConfigurationRelatesFromArgsDto, SystemNotificationCssTemplateConfigurationRelatesToArgsDto, SystemNotificationCssTemplateConfigurationTaggedByArgsDto, SystemNotificationCssTemplateConfigurationUpdateDto, SystemNotificationCssTemplateConfigurationUpdateMessageDto, SystemNotificationCssTemplateConfigurationUsedByArgsDto, SystemNotificationEventAssociationsArgsDto, SystemNotificationEventConfiguredByArgsDto, SystemNotificationEventConnectionDto, SystemNotificationEventDto, SystemNotificationEventEdgeDto, SystemNotificationEventInputDto, SystemNotificationEventInputUpdateDto, SystemNotificationEventMapsFromArgsDto, SystemNotificationEventMapsToArgsDto, SystemNotificationEventMutationsCreateArgsDto, SystemNotificationEventMutationsDto, SystemNotificationEventMutationsUpdateArgsDto, SystemNotificationEventRelatesFromArgsDto, SystemNotificationEventRelatesToArgsDto, SystemNotificationEventTaggedByArgsDto, SystemNotificationEventUpdateDto, SystemNotificationEventUpdateMessageDto, SystemNotificationNotificationTemplateAssociationsArgsDto, SystemNotificationNotificationTemplateConfiguredByArgsDto, SystemNotificationNotificationTemplateConnectionDto, SystemNotificationNotificationTemplateDto, SystemNotificationNotificationTemplateEdgeDto, SystemNotificationNotificationTemplateInputDto, SystemNotificationNotificationTemplateInputUpdateDto, SystemNotificationNotificationTemplateMapsFromArgsDto, SystemNotificationNotificationTemplateMapsToArgsDto, SystemNotificationNotificationTemplateMutationsCreateArgsDto, SystemNotificationNotificationTemplateMutationsDto, SystemNotificationNotificationTemplateMutationsUpdateArgsDto, SystemNotificationNotificationTemplateRelatesFromArgsDto, SystemNotificationNotificationTemplateRelatesToArgsDto, SystemNotificationNotificationTemplateTaggedByArgsDto, SystemNotificationNotificationTemplateUpdateDto, SystemNotificationNotificationTemplateUpdateMessageDto, SystemNotificationStatefulEventAssociationsArgsDto, SystemNotificationStatefulEventConfiguredByArgsDto, SystemNotificationStatefulEventConnectionDto, SystemNotificationStatefulEventDto, SystemNotificationStatefulEventEdgeDto, SystemNotificationStatefulEventInputDto, SystemNotificationStatefulEventInputUpdateDto, SystemNotificationStatefulEventMapsFromArgsDto, SystemNotificationStatefulEventMapsToArgsDto, SystemNotificationStatefulEventMutationsCreateArgsDto, SystemNotificationStatefulEventMutationsDto, SystemNotificationStatefulEventMutationsUpdateArgsDto, SystemNotificationStatefulEventRelatesFromArgsDto, SystemNotificationStatefulEventRelatesToArgsDto, SystemNotificationStatefulEventTaggedByArgsDto, SystemNotificationStatefulEventUpdateDto, SystemNotificationStatefulEventUpdateMessageDto, SystemPersistentQueryAssociationsArgsDto, SystemPersistentQueryConfiguredByArgsDto, SystemPersistentQueryConnectionDto, SystemPersistentQueryDto, SystemPersistentQueryEdgeDto, SystemPersistentQueryInterfaceConfiguredByArgsDto, SystemPersistentQueryInterfaceDto, SystemPersistentQueryInterfaceMapsFromArgsDto, SystemPersistentQueryInterfaceMapsToArgsDto, SystemPersistentQueryInterfaceRelatesFromArgsDto, SystemPersistentQueryInterfaceRelatesToArgsDto, SystemPersistentQueryInterfaceTaggedByArgsDto, SystemPersistentQueryMapsFromArgsDto, SystemPersistentQueryMapsToArgsDto, SystemPersistentQueryRelatesFromArgsDto, SystemPersistentQueryRelatesToArgsDto, SystemPersistentQueryTaggedByArgsDto, SystemPersistentQueryUpdateDto, SystemPersistentQueryUpdateMessageDto, SystemReportingConnectionInfoAssociationsArgsDto, SystemReportingConnectionInfoConfiguredByArgsDto, SystemReportingConnectionInfoConnectionDto, SystemReportingConnectionInfoDto, SystemReportingConnectionInfoEdgeDto, SystemReportingConnectionInfoInputDto, SystemReportingConnectionInfoInputUpdateDto, SystemReportingConnectionInfoMapsFromArgsDto, SystemReportingConnectionInfoMapsToArgsDto, SystemReportingConnectionInfoMutationsCreateArgsDto, SystemReportingConnectionInfoMutationsDto, SystemReportingConnectionInfoMutationsUpdateArgsDto, SystemReportingConnectionInfoRelatesFromArgsDto, SystemReportingConnectionInfoRelatesToArgsDto, SystemReportingConnectionInfoTaggedByArgsDto, SystemReportingConnectionInfoUpdateDto, SystemReportingConnectionInfoUpdateMessageDto, SystemReportingConnectionInfoUsedByArgsDto, SystemReportingFileSystemContainerAssociationsArgsDto, SystemReportingFileSystemContainerConfiguredByArgsDto, SystemReportingFileSystemContainerConnectionDto, SystemReportingFileSystemContainerDto, SystemReportingFileSystemContainerEdgeDto, SystemReportingFileSystemContainerInterfaceConfiguredByArgsDto, SystemReportingFileSystemContainerInterfaceDto, SystemReportingFileSystemContainerInterfaceMapsFromArgsDto, SystemReportingFileSystemContainerInterfaceMapsToArgsDto, SystemReportingFileSystemContainerInterfaceParentArgsDto, SystemReportingFileSystemContainerInterfaceRelatesFromArgsDto, SystemReportingFileSystemContainerInterfaceRelatesToArgsDto, SystemReportingFileSystemContainerInterfaceTaggedByArgsDto, SystemReportingFileSystemContainerMapsFromArgsDto, SystemReportingFileSystemContainerMapsToArgsDto, SystemReportingFileSystemContainerParentArgsDto, SystemReportingFileSystemContainerRelatesFromArgsDto, SystemReportingFileSystemContainerRelatesToArgsDto, SystemReportingFileSystemContainerTaggedByArgsDto, SystemReportingFileSystemContainerUpdateDto, SystemReportingFileSystemContainerUpdateMessageDto, SystemReportingFileSystemContainer_ChildrenUnionConnectionDto, SystemReportingFileSystemContainer_ChildrenUnionDto, SystemReportingFileSystemContainer_ChildrenUnionEdgeDto, SystemReportingFileSystemEntityAssociationsArgsDto, SystemReportingFileSystemEntityConfiguredByArgsDto, SystemReportingFileSystemEntityConnectionDto, SystemReportingFileSystemEntityDto, SystemReportingFileSystemEntityEdgeDto, SystemReportingFileSystemEntityInterfaceConfiguredByArgsDto, SystemReportingFileSystemEntityInterfaceDto, SystemReportingFileSystemEntityInterfaceMapsFromArgsDto, SystemReportingFileSystemEntityInterfaceMapsToArgsDto, SystemReportingFileSystemEntityInterfaceRelatesFromArgsDto, SystemReportingFileSystemEntityInterfaceRelatesToArgsDto, SystemReportingFileSystemEntityInterfaceTaggedByArgsDto, SystemReportingFileSystemEntityMapsFromArgsDto, SystemReportingFileSystemEntityMapsToArgsDto, SystemReportingFileSystemEntityRelatesFromArgsDto, SystemReportingFileSystemEntityRelatesToArgsDto, SystemReportingFileSystemEntityTaggedByArgsDto, SystemReportingFileSystemEntityUpdateDto, SystemReportingFileSystemEntityUpdateMessageDto, SystemReportingFileSystemItemAssociationsArgsDto, SystemReportingFileSystemItemConfiguredByArgsDto, SystemReportingFileSystemItemConnectionDto, SystemReportingFileSystemItemDto, SystemReportingFileSystemItemEdgeDto, SystemReportingFileSystemItemInputDto, SystemReportingFileSystemItemInputUpdateDto, SystemReportingFileSystemItemMapsFromArgsDto, SystemReportingFileSystemItemMapsToArgsDto, SystemReportingFileSystemItemMutationsCreateArgsDto, SystemReportingFileSystemItemMutationsDto, SystemReportingFileSystemItemMutationsUpdateArgsDto, SystemReportingFileSystemItemParentArgsDto, SystemReportingFileSystemItemRelatesFromArgsDto, SystemReportingFileSystemItemRelatesToArgsDto, SystemReportingFileSystemItemTaggedByArgsDto, SystemReportingFileSystemItemUpdateDto, SystemReportingFileSystemItemUpdateMessageDto, SystemReportingFolderAssociationsArgsDto, SystemReportingFolderChildrenArgsDto, SystemReportingFolderConfiguredByArgsDto, SystemReportingFolderConnectionDto, SystemReportingFolderDto, SystemReportingFolderEdgeDto, SystemReportingFolderInputDto, SystemReportingFolderInputUpdateDto, SystemReportingFolderMapsFromArgsDto, SystemReportingFolderMapsToArgsDto, SystemReportingFolderMutationsCreateArgsDto, SystemReportingFolderMutationsDto, SystemReportingFolderMutationsUpdateArgsDto, SystemReportingFolderParentArgsDto, SystemReportingFolderRelatesFromArgsDto, SystemReportingFolderRelatesToArgsDto, SystemReportingFolderRootAssociationsArgsDto, SystemReportingFolderRootChildrenArgsDto, SystemReportingFolderRootConfiguredByArgsDto, SystemReportingFolderRootConnectionDto, SystemReportingFolderRootDto, SystemReportingFolderRootEdgeDto, SystemReportingFolderRootInputDto, SystemReportingFolderRootInputUpdateDto, SystemReportingFolderRootMapsFromArgsDto, SystemReportingFolderRootMapsToArgsDto, SystemReportingFolderRootMutationsCreateArgsDto, SystemReportingFolderRootMutationsDto, SystemReportingFolderRootMutationsUpdateArgsDto, SystemReportingFolderRootRelatesFromArgsDto, SystemReportingFolderRootRelatesToArgsDto, SystemReportingFolderRootTaggedByArgsDto, SystemReportingFolderRootUpdateDto, SystemReportingFolderRootUpdateMessageDto, SystemReportingFolderTaggedByArgsDto, SystemReportingFolderUpdateDto, SystemReportingFolderUpdateMessageDto, SystemReportingFolder_ParentUnionConnectionDto, SystemReportingFolder_ParentUnionDto, SystemReportingFolder_ParentUnionEdgeDto, SystemSimpleRtQueryAssociationsArgsDto, SystemSimpleRtQueryConfiguredByArgsDto, SystemSimpleRtQueryConnectionDto, SystemSimpleRtQueryDto, SystemSimpleRtQueryEdgeDto, SystemSimpleRtQueryInputDto, SystemSimpleRtQueryInputUpdateDto, SystemSimpleRtQueryMapsFromArgsDto, SystemSimpleRtQueryMapsToArgsDto, SystemSimpleRtQueryMutationsCreateArgsDto, SystemSimpleRtQueryMutationsDto, SystemSimpleRtQueryMutationsUpdateArgsDto, SystemSimpleRtQueryRelatesFromArgsDto, SystemSimpleRtQueryRelatesToArgsDto, SystemSimpleRtQueryTaggedByArgsDto, SystemSimpleRtQueryUpdateDto, SystemSimpleRtQueryUpdateMessageDto, SystemSimpleSdQueryAssociationsArgsDto, SystemSimpleSdQueryConfiguredByArgsDto, SystemSimpleSdQueryConnectionDto, SystemSimpleSdQueryDto, SystemSimpleSdQueryEdgeDto, SystemSimpleSdQueryInputDto, SystemSimpleSdQueryInputUpdateDto, SystemSimpleSdQueryMapsFromArgsDto, SystemSimpleSdQueryMapsToArgsDto, SystemSimpleSdQueryMutationsCreateArgsDto, SystemSimpleSdQueryMutationsDto, SystemSimpleSdQueryMutationsUpdateArgsDto, SystemSimpleSdQueryRelatesFromArgsDto, SystemSimpleSdQueryRelatesToArgsDto, SystemSimpleSdQueryTaggedByArgsDto, SystemSimpleSdQueryUpdateDto, SystemSimpleSdQueryUpdateMessageDto, SystemSortOrderItemDto, SystemSortOrderItemInputDto, SystemStreamDataArchiveAssociationsArgsDto, SystemStreamDataArchiveConfiguredByArgsDto, SystemStreamDataArchiveConnectionDto, SystemStreamDataArchiveDto, SystemStreamDataArchiveEdgeDto, SystemStreamDataArchiveInterfaceConfiguredByArgsDto, SystemStreamDataArchiveInterfaceDto, SystemStreamDataArchiveInterfaceMapsFromArgsDto, SystemStreamDataArchiveInterfaceMapsToArgsDto, SystemStreamDataArchiveInterfaceRelatesFromArgsDto, SystemStreamDataArchiveInterfaceRelatesToArgsDto, SystemStreamDataArchiveInterfaceTaggedByArgsDto, SystemStreamDataArchiveMapsFromArgsDto, SystemStreamDataArchiveMapsToArgsDto, SystemStreamDataArchiveRelatesFromArgsDto, SystemStreamDataArchiveRelatesToArgsDto, SystemStreamDataArchiveTaggedByArgsDto, SystemStreamDataArchiveUpdateDto, SystemStreamDataArchiveUpdateMessageDto, SystemStreamDataCkArchiveColumnDto, SystemStreamDataCkArchiveColumnInputDto, SystemStreamDataCkRollupAggregationDto, SystemStreamDataCkRollupAggregationInputDto, SystemStreamDataQueryAssociationsArgsDto, SystemStreamDataQueryConfiguredByArgsDto, SystemStreamDataQueryConnectionDto, SystemStreamDataQueryDto, SystemStreamDataQueryEdgeDto, SystemStreamDataQueryInterfaceConfiguredByArgsDto, SystemStreamDataQueryInterfaceDto, SystemStreamDataQueryInterfaceMapsFromArgsDto, SystemStreamDataQueryInterfaceMapsToArgsDto, SystemStreamDataQueryInterfaceRelatesFromArgsDto, SystemStreamDataQueryInterfaceRelatesToArgsDto, SystemStreamDataQueryInterfaceTaggedByArgsDto, SystemStreamDataQueryMapsFromArgsDto, SystemStreamDataQueryMapsToArgsDto, SystemStreamDataQueryRelatesFromArgsDto, SystemStreamDataQueryRelatesToArgsDto, SystemStreamDataQueryTaggedByArgsDto, SystemStreamDataQueryUpdateDto, SystemStreamDataQueryUpdateMessageDto, SystemStreamDataRawArchiveAssociationsArgsDto, SystemStreamDataRawArchiveConfiguredByArgsDto, SystemStreamDataRawArchiveConnectionDto, SystemStreamDataRawArchiveDto, SystemStreamDataRawArchiveEdgeDto, SystemStreamDataRawArchiveInputDto, SystemStreamDataRawArchiveInputUpdateDto, SystemStreamDataRawArchiveMapsFromArgsDto, SystemStreamDataRawArchiveMapsToArgsDto, SystemStreamDataRawArchiveMutationsCreateArgsDto, SystemStreamDataRawArchiveMutationsDto, SystemStreamDataRawArchiveMutationsUpdateArgsDto, SystemStreamDataRawArchiveRelatesFromArgsDto, SystemStreamDataRawArchiveRelatesToArgsDto, SystemStreamDataRawArchiveTaggedByArgsDto, SystemStreamDataRawArchiveUpdateDto, SystemStreamDataRawArchiveUpdateMessageDto, SystemStreamDataRollupArchiveAssociationsArgsDto, SystemStreamDataRollupArchiveConfiguredByArgsDto, SystemStreamDataRollupArchiveConnectionDto, SystemStreamDataRollupArchiveDto, SystemStreamDataRollupArchiveEdgeDto, SystemStreamDataRollupArchiveInputDto, SystemStreamDataRollupArchiveInputUpdateDto, SystemStreamDataRollupArchiveMapsFromArgsDto, SystemStreamDataRollupArchiveMapsToArgsDto, SystemStreamDataRollupArchiveMutationsCreateArgsDto, SystemStreamDataRollupArchiveMutationsDto, SystemStreamDataRollupArchiveMutationsUpdateArgsDto, SystemStreamDataRollupArchiveRelatesFromArgsDto, SystemStreamDataRollupArchiveRelatesToArgsDto, SystemStreamDataRollupArchiveTaggedByArgsDto, SystemStreamDataRollupArchiveUpdateDto, SystemStreamDataRollupArchiveUpdateMessageDto, SystemStreamDataTimeRangeArchiveAssociationsArgsDto, SystemStreamDataTimeRangeArchiveConfiguredByArgsDto, SystemStreamDataTimeRangeArchiveConnectionDto, SystemStreamDataTimeRangeArchiveDto, SystemStreamDataTimeRangeArchiveEdgeDto, SystemStreamDataTimeRangeArchiveInputDto, SystemStreamDataTimeRangeArchiveInputUpdateDto, SystemStreamDataTimeRangeArchiveMapsFromArgsDto, SystemStreamDataTimeRangeArchiveMapsToArgsDto, SystemStreamDataTimeRangeArchiveMutationsCreateArgsDto, SystemStreamDataTimeRangeArchiveMutationsDto, SystemStreamDataTimeRangeArchiveMutationsUpdateArgsDto, SystemStreamDataTimeRangeArchiveRelatesFromArgsDto, SystemStreamDataTimeRangeArchiveRelatesToArgsDto, SystemStreamDataTimeRangeArchiveTaggedByArgsDto, SystemStreamDataTimeRangeArchiveUpdateDto, SystemStreamDataTimeRangeArchiveUpdateMessageDto, SystemTenantAssociationsArgsDto, SystemTenantConfigurationAssociationsArgsDto, SystemTenantConfigurationConfiguredByArgsDto, SystemTenantConfigurationConnectionDto, SystemTenantConfigurationDto, SystemTenantConfigurationEdgeDto, SystemTenantConfigurationInputDto, SystemTenantConfigurationInputUpdateDto, SystemTenantConfigurationMapsFromArgsDto, SystemTenantConfigurationMapsToArgsDto, SystemTenantConfigurationMutationsCreateArgsDto, SystemTenantConfigurationMutationsDto, SystemTenantConfigurationMutationsUpdateArgsDto, SystemTenantConfigurationRelatesFromArgsDto, SystemTenantConfigurationRelatesToArgsDto, SystemTenantConfigurationTaggedByArgsDto, SystemTenantConfigurationUpdateDto, SystemTenantConfigurationUpdateMessageDto, SystemTenantConfigurationUsedByArgsDto, SystemTenantConfiguredByArgsDto, SystemTenantConnectionDto, SystemTenantDto, SystemTenantEdgeDto, SystemTenantInputDto, SystemTenantInputUpdateDto, SystemTenantMapsFromArgsDto, SystemTenantMapsToArgsDto, SystemTenantModeConfigurationAssociationsArgsDto, SystemTenantModeConfigurationConfiguredByArgsDto, SystemTenantModeConfigurationConnectionDto, SystemTenantModeConfigurationDto, SystemTenantModeConfigurationEdgeDto, SystemTenantModeConfigurationInputDto, SystemTenantModeConfigurationInputUpdateDto, SystemTenantModeConfigurationMapsFromArgsDto, SystemTenantModeConfigurationMapsToArgsDto, SystemTenantModeConfigurationMutationsCreateArgsDto, SystemTenantModeConfigurationMutationsDto, SystemTenantModeConfigurationMutationsUpdateArgsDto, SystemTenantModeConfigurationRelatesFromArgsDto, SystemTenantModeConfigurationRelatesToArgsDto, SystemTenantModeConfigurationTaggedByArgsDto, SystemTenantModeConfigurationUpdateDto, SystemTenantModeConfigurationUpdateMessageDto, SystemTenantModeConfigurationUsedByArgsDto, SystemTenantMutationsCreateArgsDto, SystemTenantMutationsDto, SystemTenantMutationsUpdateArgsDto, SystemTenantRelatesFromArgsDto, SystemTenantRelatesToArgsDto, SystemTenantTaggedByArgsDto, SystemTenantUpdateDto, SystemTenantUpdateMessageDto, SystemTextSearchFilterDto, SystemTextSearchFilterInputDto, SystemTimeRangeDto, SystemTimeRangeInputDto, SystemUiBrandingAssociationsArgsDto, SystemUiBrandingConfiguredByArgsDto, SystemUiBrandingConnectionDto, SystemUiBrandingDto, SystemUiBrandingEdgeDto, SystemUiBrandingInputDto, SystemUiBrandingInputUpdateDto, SystemUiBrandingMapsFromArgsDto, SystemUiBrandingMapsToArgsDto, SystemUiBrandingMutationsCreateArgsDto, SystemUiBrandingMutationsDto, SystemUiBrandingMutationsUpdateArgsDto, SystemUiBrandingRelatesFromArgsDto, SystemUiBrandingRelatesToArgsDto, SystemUiBrandingTaggedByArgsDto, SystemUiBrandingUpdateDto, SystemUiBrandingUpdateMessageDto, SystemUiDashboardAssociationsArgsDto, SystemUiDashboardChildrenArgsDto, SystemUiDashboardConfiguredByArgsDto, SystemUiDashboardConnectionDto, SystemUiDashboardDto, SystemUiDashboardEdgeDto, SystemUiDashboardInputDto, SystemUiDashboardInputUpdateDto, SystemUiDashboardMapsFromArgsDto, SystemUiDashboardMapsToArgsDto, SystemUiDashboardMutationsCreateArgsDto, SystemUiDashboardMutationsDto, SystemUiDashboardMutationsUpdateArgsDto, SystemUiDashboardRelatesFromArgsDto, SystemUiDashboardRelatesToArgsDto, SystemUiDashboardTaggedByArgsDto, SystemUiDashboardUpdateDto, SystemUiDashboardUpdateMessageDto, SystemUiDashboardWidgetAssociationsArgsDto, SystemUiDashboardWidgetConfiguredByArgsDto, SystemUiDashboardWidgetConnectionDto, SystemUiDashboardWidgetDto, SystemUiDashboardWidgetEdgeDto, SystemUiDashboardWidgetInputDto, SystemUiDashboardWidgetInputUpdateDto, SystemUiDashboardWidgetMapsFromArgsDto, SystemUiDashboardWidgetMapsToArgsDto, SystemUiDashboardWidgetMutationsCreateArgsDto, SystemUiDashboardWidgetMutationsDto, SystemUiDashboardWidgetMutationsUpdateArgsDto, SystemUiDashboardWidgetParentArgsDto, SystemUiDashboardWidgetRelatesFromArgsDto, SystemUiDashboardWidgetRelatesToArgsDto, SystemUiDashboardWidgetTaggedByArgsDto, SystemUiDashboardWidgetUpdateDto, SystemUiDashboardWidgetUpdateMessageDto, SystemUiDashboardWidget_ChildrenUnionConnectionDto, SystemUiDashboardWidget_ChildrenUnionDto, SystemUiDashboardWidget_ChildrenUnionEdgeDto, SystemUiDashboard_ParentUnionConnectionDto, SystemUiDashboard_ParentUnionDto, SystemUiDashboard_ParentUnionEdgeDto, SystemUiProcessDiagramAssociationsArgsDto, SystemUiProcessDiagramConfiguredByArgsDto, SystemUiProcessDiagramConnectionDto, SystemUiProcessDiagramDto, SystemUiProcessDiagramEdgeDto, SystemUiProcessDiagramInputDto, SystemUiProcessDiagramInputUpdateDto, SystemUiProcessDiagramMapsFromArgsDto, SystemUiProcessDiagramMapsToArgsDto, SystemUiProcessDiagramMutationsCreateArgsDto, SystemUiProcessDiagramMutationsDto, SystemUiProcessDiagramMutationsUpdateArgsDto, SystemUiProcessDiagramRelatesFromArgsDto, SystemUiProcessDiagramRelatesToArgsDto, SystemUiProcessDiagramTaggedByArgsDto, SystemUiProcessDiagramUpdateDto, SystemUiProcessDiagramUpdateMessageDto, SystemUiSymbolDefinitionAssociationsArgsDto, SystemUiSymbolDefinitionConfiguredByArgsDto, SystemUiSymbolDefinitionConnectionDto, SystemUiSymbolDefinitionDto, SystemUiSymbolDefinitionEdgeDto, SystemUiSymbolDefinitionInputDto, SystemUiSymbolDefinitionInputUpdateDto, SystemUiSymbolDefinitionMapsFromArgsDto, SystemUiSymbolDefinitionMapsToArgsDto, SystemUiSymbolDefinitionMutationsCreateArgsDto, SystemUiSymbolDefinitionMutationsDto, SystemUiSymbolDefinitionMutationsUpdateArgsDto, SystemUiSymbolDefinitionParentArgsDto, SystemUiSymbolDefinitionRelatesFromArgsDto, SystemUiSymbolDefinitionRelatesToArgsDto, SystemUiSymbolDefinitionTaggedByArgsDto, SystemUiSymbolDefinitionUpdateDto, SystemUiSymbolDefinitionUpdateMessageDto, SystemUiSymbolDefinition_ChildrenUnionConnectionDto, SystemUiSymbolDefinition_ChildrenUnionDto, SystemUiSymbolDefinition_ChildrenUnionEdgeDto, SystemUiSymbolLibraryAssociationsArgsDto, SystemUiSymbolLibraryChildrenArgsDto, SystemUiSymbolLibraryConfiguredByArgsDto, SystemUiSymbolLibraryConnectionDto, SystemUiSymbolLibraryDto, SystemUiSymbolLibraryEdgeDto, SystemUiSymbolLibraryInputDto, SystemUiSymbolLibraryInputUpdateDto, SystemUiSymbolLibraryMapsFromArgsDto, SystemUiSymbolLibraryMapsToArgsDto, SystemUiSymbolLibraryMutationsCreateArgsDto, SystemUiSymbolLibraryMutationsDto, SystemUiSymbolLibraryMutationsUpdateArgsDto, SystemUiSymbolLibraryRelatesFromArgsDto, SystemUiSymbolLibraryRelatesToArgsDto, SystemUiSymbolLibraryTaggedByArgsDto, SystemUiSymbolLibraryUpdateDto, SystemUiSymbolLibraryUpdateMessageDto, SystemUiSymbolLibrary_ParentUnionConnectionDto, SystemUiSymbolLibrary_ParentUnionDto, SystemUiSymbolLibrary_ParentUnionEdgeDto, SystemUiThemeGradientDto, SystemUiThemeGradientInputDto, SystemUiThemePaletteDto, SystemUiThemePaletteInputDto, SystemUiuiElementAssociationsArgsDto, SystemUiuiElementConfiguredByArgsDto, SystemUiuiElementConnectionDto, SystemUiuiElementDto, SystemUiuiElementEdgeDto, SystemUiuiElementInterfaceConfiguredByArgsDto, SystemUiuiElementInterfaceDto, SystemUiuiElementInterfaceMapsFromArgsDto, SystemUiuiElementInterfaceMapsToArgsDto, SystemUiuiElementInterfaceRelatesFromArgsDto, SystemUiuiElementInterfaceRelatesToArgsDto, SystemUiuiElementInterfaceTaggedByArgsDto, SystemUiuiElementMapsFromArgsDto, SystemUiuiElementMapsToArgsDto, SystemUiuiElementRelatesFromArgsDto, SystemUiuiElementRelatesToArgsDto, SystemUiuiElementTaggedByArgsDto, SystemUiuiElementUpdateDto, SystemUiuiElementUpdateMessageDto, TenantDto, TenantIdProvider, TusUploadOptions, TusUploadResult, UpdateGroupDto, UpgradeCheckResponseDto, UserDto };
|
|
41494
|
+
export type { AddInConfiguration, AdminPanelConfigurationDto, AggregationDto, ArchiveColumnSpecInputDto, ArchivePathInfoDto, ArchiveStorageStatsDto, ArchiveTransitionResultDto, AttributeItem, AttributeSelectorResult, BasicAddressDto, BasicAddressInputDto, BasicAmountDto, BasicAmountInputDto, BasicAssetAssociationsArgsDto, BasicAssetChildrenArgsDto, BasicAssetConfiguredByArgsDto, BasicAssetConnectionDto, BasicAssetDto, BasicAssetEdgeDto, BasicAssetEventsArgsDto, BasicAssetInputDto, BasicAssetInputUpdateDto, BasicAssetMapsFromArgsDto, BasicAssetMapsToArgsDto, BasicAssetMutationsCreateArgsDto, BasicAssetMutationsDto, BasicAssetMutationsUpdateArgsDto, BasicAssetParentArgsDto, BasicAssetRelatesFromArgsDto, BasicAssetRelatesToArgsDto, BasicAssetTaggedByArgsDto, BasicAssetUpdateDto, BasicAssetUpdateMessageDto, BasicAsset_EventSourceUnionConnectionDto, BasicAsset_EventSourceUnionDto, BasicAsset_EventSourceUnionEdgeDto, BasicAsset_RelatesFromUnionConnectionDto, BasicAsset_RelatesFromUnionDto, BasicAsset_RelatesFromUnionEdgeDto, BasicBankAccountDto, BasicBankAccountInputDto, BasicCityAssociationsArgsDto, BasicCityChildrenArgsDto, BasicCityConfiguredByArgsDto, BasicCityConnectionDto, BasicCityDto, BasicCityEdgeDto, BasicCityInputDto, BasicCityInputUpdateDto, BasicCityMapsFromArgsDto, BasicCityMapsToArgsDto, BasicCityMutationsCreateArgsDto, BasicCityMutationsDto, BasicCityMutationsUpdateArgsDto, BasicCityParentArgsDto, BasicCityRelatesFromArgsDto, BasicCityRelatesToArgsDto, BasicCityTaggedByArgsDto, BasicCityUpdateDto, BasicCityUpdateMessageDto, BasicContactDto, BasicContactInputDto, BasicCountryAssociationsArgsDto, BasicCountryChildrenArgsDto, BasicCountryConfiguredByArgsDto, BasicCountryConnectionDto, BasicCountryDto, BasicCountryEdgeDto, BasicCountryInputDto, BasicCountryInputUpdateDto, BasicCountryMapsFromArgsDto, BasicCountryMapsToArgsDto, BasicCountryMutationsCreateArgsDto, BasicCountryMutationsDto, BasicCountryMutationsUpdateArgsDto, BasicCountryParentArgsDto, BasicCountryRelatesFromArgsDto, BasicCountryRelatesToArgsDto, BasicCountryTaggedByArgsDto, BasicCountryUpdateDto, BasicCountryUpdateMessageDto, BasicDistrictAssociationsArgsDto, BasicDistrictChildrenArgsDto, BasicDistrictConfiguredByArgsDto, BasicDistrictConnectionDto, BasicDistrictDto, BasicDistrictEdgeDto, BasicDistrictInputDto, BasicDistrictInputUpdateDto, BasicDistrictMapsFromArgsDto, BasicDistrictMapsToArgsDto, BasicDistrictMutationsCreateArgsDto, BasicDistrictMutationsDto, BasicDistrictMutationsUpdateArgsDto, BasicDistrictParentArgsDto, BasicDistrictRelatesFromArgsDto, BasicDistrictRelatesToArgsDto, BasicDistrictTaggedByArgsDto, BasicDistrictUpdateDto, BasicDistrictUpdateMessageDto, BasicDocumentAssociationsArgsDto, BasicDocumentConfiguredByArgsDto, BasicDocumentConnectionDto, BasicDocumentDto, BasicDocumentEdgeDto, BasicDocumentInterfaceConfiguredByArgsDto, BasicDocumentInterfaceDto, BasicDocumentInterfaceMapsFromArgsDto, BasicDocumentInterfaceMapsToArgsDto, BasicDocumentInterfaceRelatesFromArgsDto, BasicDocumentInterfaceRelatesToArgsDto, BasicDocumentInterfaceTaggedByArgsDto, BasicDocumentMapsFromArgsDto, BasicDocumentMapsToArgsDto, BasicDocumentRelatesFromArgsDto, BasicDocumentRelatesToArgsDto, BasicDocumentTaggedByArgsDto, BasicDocumentUpdateDto, BasicDocumentUpdateMessageDto, BasicEMailDto, BasicEMailInputDto, BasicEmployeeAssociationsArgsDto, BasicEmployeeConfiguredByArgsDto, BasicEmployeeConnectionDto, BasicEmployeeDto, BasicEmployeeEdgeDto, BasicEmployeeInputDto, BasicEmployeeInputUpdateDto, BasicEmployeeMapsFromArgsDto, BasicEmployeeMapsToArgsDto, BasicEmployeeMutationsCreateArgsDto, BasicEmployeeMutationsDto, BasicEmployeeMutationsUpdateArgsDto, BasicEmployeeRelatesFromArgsDto, BasicEmployeeRelatesToArgsDto, BasicEmployeeTaggedByArgsDto, BasicEmployeeUpdateDto, BasicEmployeeUpdateMessageDto, BasicEnergyConsumerAssociationsArgsDto, BasicEnergyConsumerChildrenArgsDto, BasicEnergyConsumerConfiguredByArgsDto, BasicEnergyConsumerConnectionDto, BasicEnergyConsumerDto, BasicEnergyConsumerEdgeDto, BasicEnergyConsumerInputDto, BasicEnergyConsumerInputUpdateDto, BasicEnergyConsumerMapsFromArgsDto, BasicEnergyConsumerMapsToArgsDto, BasicEnergyConsumerMutationsCreateArgsDto, BasicEnergyConsumerMutationsDto, BasicEnergyConsumerMutationsUpdateArgsDto, BasicEnergyConsumerParentArgsDto, BasicEnergyConsumerRelatesFromArgsDto, BasicEnergyConsumerRelatesToArgsDto, BasicEnergyConsumerTaggedByArgsDto, BasicEnergyConsumerUpdateDto, BasicEnergyConsumerUpdateMessageDto, BasicEnergyEdaMessageAssociationsArgsDto, BasicEnergyEdaMessageConfiguredByArgsDto, BasicEnergyEdaMessageConnectionDto, BasicEnergyEdaMessageDto, BasicEnergyEdaMessageEdgeDto, BasicEnergyEdaMessageInputDto, BasicEnergyEdaMessageInputUpdateDto, BasicEnergyEdaMessageMapsFromArgsDto, BasicEnergyEdaMessageMapsToArgsDto, BasicEnergyEdaMessageMutationsCreateArgsDto, BasicEnergyEdaMessageMutationsDto, BasicEnergyEdaMessageMutationsUpdateArgsDto, BasicEnergyEdaMessageProcessArgsDto, BasicEnergyEdaMessageRelatesFromArgsDto, BasicEnergyEdaMessageRelatesToArgsDto, BasicEnergyEdaMessageTaggedByArgsDto, BasicEnergyEdaMessageUpdateDto, BasicEnergyEdaMessageUpdateMessageDto, BasicEnergyEdaMessage_MessagesUnionConnectionDto, BasicEnergyEdaMessage_MessagesUnionDto, BasicEnergyEdaMessage_MessagesUnionEdgeDto, BasicEnergyEdaMeteringPointAssociationsArgsDto, BasicEnergyEdaMeteringPointConfiguredByArgsDto, BasicEnergyEdaMeteringPointConnectionDto, BasicEnergyEdaMeteringPointDto, BasicEnergyEdaMeteringPointEdgeDto, BasicEnergyEdaMeteringPointInputDto, BasicEnergyEdaMeteringPointInputUpdateDto, BasicEnergyEdaMeteringPointMapsFromArgsDto, BasicEnergyEdaMeteringPointMapsToArgsDto, BasicEnergyEdaMeteringPointMutationsCreateArgsDto, BasicEnergyEdaMeteringPointMutationsDto, BasicEnergyEdaMeteringPointMutationsUpdateArgsDto, BasicEnergyEdaMeteringPointRelatesFromArgsDto, BasicEnergyEdaMeteringPointRelatesToArgsDto, BasicEnergyEdaMeteringPointTaggedByArgsDto, BasicEnergyEdaMeteringPointUpdateDto, BasicEnergyEdaMeteringPointUpdateMessageDto, BasicEnergyEdaProcessAssociationsArgsDto, BasicEnergyEdaProcessConfiguredByArgsDto, BasicEnergyEdaProcessConnectionDto, BasicEnergyEdaProcessDto, BasicEnergyEdaProcessEdgeDto, BasicEnergyEdaProcessInputDto, BasicEnergyEdaProcessInputUpdateDto, BasicEnergyEdaProcessMapsFromArgsDto, BasicEnergyEdaProcessMapsToArgsDto, BasicEnergyEdaProcessMessagesArgsDto, BasicEnergyEdaProcessMutationsCreateArgsDto, BasicEnergyEdaProcessMutationsDto, BasicEnergyEdaProcessMutationsUpdateArgsDto, BasicEnergyEdaProcessRelatesFromArgsDto, BasicEnergyEdaProcessRelatesToArgsDto, BasicEnergyEdaProcessTaggedByArgsDto, BasicEnergyEdaProcessUpdateDto, BasicEnergyEdaProcessUpdateMessageDto, BasicEnergyEdaProcess_ProcessUnionConnectionDto, BasicEnergyEdaProcess_ProcessUnionDto, BasicEnergyEdaProcess_ProcessUnionEdgeDto, BasicEnergyEnergyMeasurementAssociationsArgsDto, BasicEnergyEnergyMeasurementConfiguredByArgsDto, BasicEnergyEnergyMeasurementConnectionDto, BasicEnergyEnergyMeasurementDto, BasicEnergyEnergyMeasurementEdgeDto, BasicEnergyEnergyMeasurementInputDto, BasicEnergyEnergyMeasurementInputUpdateDto, BasicEnergyEnergyMeasurementMapsFromArgsDto, BasicEnergyEnergyMeasurementMapsToArgsDto, BasicEnergyEnergyMeasurementMutationsCreateArgsDto, BasicEnergyEnergyMeasurementMutationsDto, BasicEnergyEnergyMeasurementMutationsUpdateArgsDto, BasicEnergyEnergyMeasurementParentArgsDto, BasicEnergyEnergyMeasurementRelatesFromArgsDto, BasicEnergyEnergyMeasurementRelatesToArgsDto, BasicEnergyEnergyMeasurementTaggedByArgsDto, BasicEnergyEnergyMeasurementUpdateDto, BasicEnergyEnergyMeasurementUpdateMessageDto, BasicEnergyEnergyMeasurement_ChildrenUnionConnectionDto, BasicEnergyEnergyMeasurement_ChildrenUnionDto, BasicEnergyEnergyMeasurement_ChildrenUnionEdgeDto, BasicEnergyMeteringPointAssociationsArgsDto, BasicEnergyMeteringPointChildrenArgsDto, BasicEnergyMeteringPointConfiguredByArgsDto, BasicEnergyMeteringPointConnectionDto, BasicEnergyMeteringPointDto, BasicEnergyMeteringPointEdgeDto, BasicEnergyMeteringPointInterfaceChildrenArgsDto, BasicEnergyMeteringPointInterfaceConfiguredByArgsDto, BasicEnergyMeteringPointInterfaceDto, BasicEnergyMeteringPointInterfaceMapsFromArgsDto, BasicEnergyMeteringPointInterfaceMapsToArgsDto, BasicEnergyMeteringPointInterfaceParentArgsDto, BasicEnergyMeteringPointInterfaceRelatesFromArgsDto, BasicEnergyMeteringPointInterfaceRelatesToArgsDto, BasicEnergyMeteringPointInterfaceTaggedByArgsDto, BasicEnergyMeteringPointMapsFromArgsDto, BasicEnergyMeteringPointMapsToArgsDto, BasicEnergyMeteringPointParentArgsDto, BasicEnergyMeteringPointRelatesFromArgsDto, BasicEnergyMeteringPointRelatesToArgsDto, BasicEnergyMeteringPointTaggedByArgsDto, BasicEnergyMeteringPointUpdateDto, BasicEnergyMeteringPointUpdateMessageDto, BasicEnergyMeteringPoint_ChildrenUnionConnectionDto, BasicEnergyMeteringPoint_ChildrenUnionDto, BasicEnergyMeteringPoint_ChildrenUnionEdgeDto, BasicEnergyMeteringPoint_ParentUnionConnectionDto, BasicEnergyMeteringPoint_ParentUnionDto, BasicEnergyMeteringPoint_ParentUnionEdgeDto, BasicEnergyOperatingFacilityAssociationsArgsDto, BasicEnergyOperatingFacilityChildrenArgsDto, BasicEnergyOperatingFacilityConfiguredByArgsDto, BasicEnergyOperatingFacilityConnectionDto, BasicEnergyOperatingFacilityDto, BasicEnergyOperatingFacilityEdgeDto, BasicEnergyOperatingFacilityInputDto, BasicEnergyOperatingFacilityInputUpdateDto, BasicEnergyOperatingFacilityMapsFromArgsDto, BasicEnergyOperatingFacilityMapsToArgsDto, BasicEnergyOperatingFacilityMutationsCreateArgsDto, BasicEnergyOperatingFacilityMutationsDto, BasicEnergyOperatingFacilityMutationsUpdateArgsDto, BasicEnergyOperatingFacilityParentArgsDto, BasicEnergyOperatingFacilityRelatesFromArgsDto, BasicEnergyOperatingFacilityRelatesToArgsDto, BasicEnergyOperatingFacilityTaggedByArgsDto, BasicEnergyOperatingFacilityUpdateDto, BasicEnergyOperatingFacilityUpdateMessageDto, BasicEnergyOperatingFacility_ParentUnionConnectionDto, BasicEnergyOperatingFacility_ParentUnionDto, BasicEnergyOperatingFacility_ParentUnionEdgeDto, BasicEnergyProducerAssociationsArgsDto, BasicEnergyProducerChildrenArgsDto, BasicEnergyProducerConfiguredByArgsDto, BasicEnergyProducerConnectionDto, BasicEnergyProducerDto, BasicEnergyProducerEdgeDto, BasicEnergyProducerInputDto, BasicEnergyProducerInputUpdateDto, BasicEnergyProducerMapsFromArgsDto, BasicEnergyProducerMapsToArgsDto, BasicEnergyProducerMutationsCreateArgsDto, BasicEnergyProducerMutationsDto, BasicEnergyProducerMutationsUpdateArgsDto, BasicEnergyProducerParentArgsDto, BasicEnergyProducerRelatesFromArgsDto, BasicEnergyProducerRelatesToArgsDto, BasicEnergyProducerTaggedByArgsDto, BasicEnergyProducerUpdateDto, BasicEnergyProducerUpdateMessageDto, BasicFaxNumberDto, BasicFaxNumberInputDto, BasicMarkingDto, BasicMarkingInputDto, BasicNamePlateDto, BasicNamePlateInputDto, BasicNamedEntityAssociationsArgsDto, BasicNamedEntityConfiguredByArgsDto, BasicNamedEntityConnectionDto, BasicNamedEntityDto, BasicNamedEntityEdgeDto, BasicNamedEntityInterfaceConfiguredByArgsDto, BasicNamedEntityInterfaceDto, BasicNamedEntityInterfaceMapsFromArgsDto, BasicNamedEntityInterfaceMapsToArgsDto, BasicNamedEntityInterfaceRelatesFromArgsDto, BasicNamedEntityInterfaceRelatesToArgsDto, BasicNamedEntityInterfaceTaggedByArgsDto, BasicNamedEntityMapsFromArgsDto, BasicNamedEntityMapsToArgsDto, BasicNamedEntityRelatesFromArgsDto, BasicNamedEntityRelatesToArgsDto, BasicNamedEntityTaggedByArgsDto, BasicNamedEntityUpdateDto, BasicNamedEntityUpdateMessageDto, BasicPhoneNumberDto, BasicPhoneNumberInputDto, BasicStateAssociationsArgsDto, BasicStateChildrenArgsDto, BasicStateConfiguredByArgsDto, BasicStateConnectionDto, BasicStateDto, BasicStateEdgeDto, BasicStateInputDto, BasicStateInputUpdateDto, BasicStateMapsFromArgsDto, BasicStateMapsToArgsDto, BasicStateMutationsCreateArgsDto, BasicStateMutationsDto, BasicStateMutationsUpdateArgsDto, BasicStateParentArgsDto, BasicStateRelatesFromArgsDto, BasicStateRelatesToArgsDto, BasicStateTaggedByArgsDto, BasicStateUpdateDto, BasicStateUpdateMessageDto, BasicTimeRangeDto, BasicTimeRangeInputDto, BasicTreeAssociationsArgsDto, BasicTreeChildrenArgsDto, BasicTreeConfiguredByArgsDto, BasicTreeConnectionDto, BasicTreeDto, BasicTreeEdgeDto, BasicTreeInputDto, BasicTreeInputUpdateDto, BasicTreeMapsFromArgsDto, BasicTreeMapsToArgsDto, BasicTreeMutationsCreateArgsDto, BasicTreeMutationsDto, BasicTreeMutationsUpdateArgsDto, BasicTreeNodeAssociationsArgsDto, BasicTreeNodeChildrenArgsDto, BasicTreeNodeConfiguredByArgsDto, BasicTreeNodeConnectionDto, BasicTreeNodeDto, BasicTreeNodeEdgeDto, BasicTreeNodeInputDto, BasicTreeNodeInputUpdateDto, BasicTreeNodeMapsFromArgsDto, BasicTreeNodeMapsToArgsDto, BasicTreeNodeMutationsCreateArgsDto, BasicTreeNodeMutationsDto, BasicTreeNodeMutationsUpdateArgsDto, BasicTreeNodeParentArgsDto, BasicTreeNodeRelatesFromArgsDto, BasicTreeNodeRelatesToArgsDto, BasicTreeNodeTaggedByArgsDto, BasicTreeNodeUpdateDto, BasicTreeNodeUpdateMessageDto, BasicTreeNode_ChildrenUnionConnectionDto, BasicTreeNode_ChildrenUnionDto, BasicTreeNode_ChildrenUnionEdgeDto, BasicTreeNode_ParentUnionConnectionDto, BasicTreeNode_ParentUnionDto, BasicTreeNode_ParentUnionEdgeDto, BasicTreeNode_RelatesToUnionConnectionDto, BasicTreeNode_RelatesToUnionDto, BasicTreeNode_RelatesToUnionEdgeDto, BasicTreeRelatesFromArgsDto, BasicTreeRelatesToArgsDto, BasicTreeTaggedByArgsDto, BasicTreeUpdateDto, BasicTreeUpdateMessageDto, BasicTree_ParentUnionConnectionDto, BasicTree_ParentUnionDto, BasicTree_ParentUnionEdgeDto, BatchDependencyResolutionResponseDto, BatchImportResponseDto, BlueprintApplyResultDto, BlueprintBackupDto, BlueprintCatalogDto, BlueprintConflictDto, BlueprintConflictResolutionInputDto, BlueprintDto, BlueprintHistoryItemDto, BlueprintInstallationDto, BlueprintListResponseDto, BlueprintRestoreResultDto, BlueprintUninstallResultDto, BlueprintUpdateInfoDto, BlueprintUpdatePreviewDto, BlueprintUpdateRequestInputDto, BlueprintsMutationApplyUpdateArgsDto, BlueprintsMutationDto, BlueprintsMutationInstallArgsDto, BlueprintsMutationRollbackArgsDto, BlueprintsMutationUninstallArgsDto, BlueprintsQueryDto, BlueprintsQueryListArgsDto, BlueprintsQueryPreviewUpdateArgsDto, BlueprintsQuerySearchArgsDto, CkAssociationRoleDto, CkAssociationRoleDtoConnectionDto, CkAssociationRoleDtoEdgeDto, CkAssociationRoleIdDto, CkAttributeDto, CkAttributeDtoConnectionDto, CkAttributeDtoEdgeDto, CkAttributeIdDto, CkAttributeMetaDataDto, CkEnumDto, CkEnumDtoConnectionDto, CkEnumDtoEdgeDto, CkEnumIdDto, CkEnumMutationsDto, CkEnumMutationsUpdateValueExtensionsArgsDto, CkEnumUpdateDto, CkEnumValueDto, CkEnumValueInputDto, CkModelAttributesArgsDto, CkModelCatalogDto, CkModelCatalogItemDto, CkModelCatalogListResponseDto, CkModelDto, CkModelDtoConnectionDto, CkModelDtoEdgeDto, CkModelEnumsArgsDto, CkModelIdDto, CkModelLibraryStatusItemDto, CkModelLibraryStatusResponseDto, CkModelRecordsArgsDto, CkModelTypesArgsDto, CkRecordAttributesArgsDto, CkRecordDerivedRecordTypesArgsDto, CkRecordDto, CkRecordDtoConnectionDto, CkRecordDtoEdgeDto, CkRecordIdDto, CkTypeAssociationDirectionDto, CkTypeAssociationDto, CkTypeAssociationSourceDto, CkTypeAttributeDto, CkTypeAttributeDtoConnectionDto, CkTypeAttributeDtoEdgeDto, CkTypeAttributeInfo, CkTypeAttributesArgsDto, CkTypeAvailableQueryColumnsArgsDto, CkTypeDerivedTypesArgsDto, CkTypeDirectAndIndirectDerivedTypesArgsDto, CkTypeDto, CkTypeDtoConnectionDto, CkTypeDtoEdgeDto, CkTypeIdDto, CkTypeQueryColumnDto, CkTypeQueryColumnDtoConnectionDto, CkTypeQueryColumnDtoEdgeDto, CkTypeSelectorItem, CkTypeSelectorResult, ClientDto, ClientMirrorBackfillResponseDto, ClientMirrorDto, ClientMirrorProvisionResponseDto, ClientScope, ConfigurationDto, ConstructionKitMutationsDto, ConstructionKitMutationsEnumsArgsDto, ConstructionKitQueryAssociationRolesArgsDto, ConstructionKitQueryAttributesArgsDto, ConstructionKitQueryDto, ConstructionKitQueryEnumsArgsDto, ConstructionKitQueryModelsArgsDto, ConstructionKitQueryRecordsArgsDto, ConstructionKitQueryTypesArgsDto, CreateExternalTenantUserMappingDto, CreateGroupDto, CreateRollupArchiveInputDto, CreateTimeRangeArchiveInputDto, DebugMessage, DebugPointDataDto, DebugPointNode, DependencyResolutionItemDto, DependencyResolutionResponseDto, DeploymentResultDto, DiagnosticsModel, EmailDomainGroupRuleDto, EmailDomainGroupRulesResult, EnergyIqAddressDto, EnergyIqAddressInputDto, EnergyIqAirHandlingUnitAssociationsArgsDto, EnergyIqAirHandlingUnitChildrenArgsDto, EnergyIqAirHandlingUnitConfiguredByArgsDto, EnergyIqAirHandlingUnitConnectionDto, EnergyIqAirHandlingUnitDto, EnergyIqAirHandlingUnitEdgeDto, EnergyIqAirHandlingUnitInputDto, EnergyIqAirHandlingUnitInputUpdateDto, EnergyIqAirHandlingUnitMapsFromArgsDto, EnergyIqAirHandlingUnitMapsToArgsDto, EnergyIqAirHandlingUnitMutationsCreateArgsDto, EnergyIqAirHandlingUnitMutationsDto, EnergyIqAirHandlingUnitMutationsUpdateArgsDto, EnergyIqAirHandlingUnitParentArgsDto, EnergyIqAirHandlingUnitRelatesFromArgsDto, EnergyIqAirHandlingUnitRelatesToArgsDto, EnergyIqAirHandlingUnitServedByArgsDto, EnergyIqAirHandlingUnitServesSpacesArgsDto, EnergyIqAirHandlingUnitTaggedByArgsDto, EnergyIqAirHandlingUnitUpdateDto, EnergyIqAirHandlingUnitUpdateMessageDto, EnergyIqAirHandlingUnit_ServesSpacesUnionConnectionDto, EnergyIqAirHandlingUnit_ServesSpacesUnionDto, EnergyIqAirHandlingUnit_ServesSpacesUnionEdgeDto, EnergyIqBatteryStorageAssociationsArgsDto, EnergyIqBatteryStorageChildrenArgsDto, EnergyIqBatteryStorageConfiguredByArgsDto, EnergyIqBatteryStorageConnectionDto, EnergyIqBatteryStorageDto, EnergyIqBatteryStorageEdgeDto, EnergyIqBatteryStorageInputDto, EnergyIqBatteryStorageInputUpdateDto, EnergyIqBatteryStorageMapsFromArgsDto, EnergyIqBatteryStorageMapsToArgsDto, EnergyIqBatteryStorageMutationsCreateArgsDto, EnergyIqBatteryStorageMutationsDto, EnergyIqBatteryStorageMutationsUpdateArgsDto, EnergyIqBatteryStorageParentArgsDto, EnergyIqBatteryStorageRelatesFromArgsDto, EnergyIqBatteryStorageRelatesToArgsDto, EnergyIqBatteryStorageTaggedByArgsDto, EnergyIqBatteryStorageUpdateDto, EnergyIqBatteryStorageUpdateMessageDto, EnergyIqBoilerAssociationsArgsDto, EnergyIqBoilerChildrenArgsDto, EnergyIqBoilerConfiguredByArgsDto, EnergyIqBoilerConnectionDto, EnergyIqBoilerDto, EnergyIqBoilerEdgeDto, EnergyIqBoilerInputDto, EnergyIqBoilerInputUpdateDto, EnergyIqBoilerMapsFromArgsDto, EnergyIqBoilerMapsToArgsDto, EnergyIqBoilerMutationsCreateArgsDto, EnergyIqBoilerMutationsDto, EnergyIqBoilerMutationsUpdateArgsDto, EnergyIqBoilerParentArgsDto, EnergyIqBoilerRelatesFromArgsDto, EnergyIqBoilerRelatesToArgsDto, EnergyIqBoilerServedByArgsDto, EnergyIqBoilerServesSpacesArgsDto, EnergyIqBoilerTaggedByArgsDto, EnergyIqBoilerUpdateDto, EnergyIqBoilerUpdateMessageDto, EnergyIqBuildingAssociationsArgsDto, EnergyIqBuildingChildrenArgsDto, EnergyIqBuildingConfiguredByArgsDto, EnergyIqBuildingConnectionDto, EnergyIqBuildingDto, EnergyIqBuildingEdgeDto, EnergyIqBuildingElementAssociationsArgsDto, EnergyIqBuildingElementConfiguredByArgsDto, EnergyIqBuildingElementConnectionDto, EnergyIqBuildingElementContainedElementsArgsDto, EnergyIqBuildingElementDto, EnergyIqBuildingElementEdgeDto, EnergyIqBuildingElementInterfaceConfiguredByArgsDto, EnergyIqBuildingElementInterfaceContainedElementsArgsDto, EnergyIqBuildingElementInterfaceDto, EnergyIqBuildingElementInterfaceMapsFromArgsDto, EnergyIqBuildingElementInterfaceMapsToArgsDto, EnergyIqBuildingElementInterfaceRelatesFromArgsDto, EnergyIqBuildingElementInterfaceRelatesToArgsDto, EnergyIqBuildingElementInterfaceTaggedByArgsDto, EnergyIqBuildingElementMapsFromArgsDto, EnergyIqBuildingElementMapsToArgsDto, EnergyIqBuildingElementRelatesFromArgsDto, EnergyIqBuildingElementRelatesToArgsDto, EnergyIqBuildingElementTaggedByArgsDto, EnergyIqBuildingElementUpdateDto, EnergyIqBuildingElementUpdateMessageDto, EnergyIqBuildingElement_ContainedInSpaceUnionConnectionDto, EnergyIqBuildingElement_ContainedInSpaceUnionDto, EnergyIqBuildingElement_ContainedInSpaceUnionEdgeDto, EnergyIqBuildingInputDto, EnergyIqBuildingInputUpdateDto, EnergyIqBuildingMapsFromArgsDto, EnergyIqBuildingMapsToArgsDto, EnergyIqBuildingMutationsCreateArgsDto, EnergyIqBuildingMutationsDto, EnergyIqBuildingMutationsUpdateArgsDto, EnergyIqBuildingParentArgsDto, EnergyIqBuildingRelatesFromArgsDto, EnergyIqBuildingRelatesToArgsDto, EnergyIqBuildingStoreyAssociationsArgsDto, EnergyIqBuildingStoreyChildrenArgsDto, EnergyIqBuildingStoreyConfiguredByArgsDto, EnergyIqBuildingStoreyConnectionDto, EnergyIqBuildingStoreyDto, EnergyIqBuildingStoreyEdgeDto, EnergyIqBuildingStoreyInputDto, EnergyIqBuildingStoreyInputUpdateDto, EnergyIqBuildingStoreyMapsFromArgsDto, EnergyIqBuildingStoreyMapsToArgsDto, EnergyIqBuildingStoreyMutationsCreateArgsDto, EnergyIqBuildingStoreyMutationsDto, EnergyIqBuildingStoreyMutationsUpdateArgsDto, EnergyIqBuildingStoreyParentArgsDto, EnergyIqBuildingStoreyRelatesFromArgsDto, EnergyIqBuildingStoreyRelatesToArgsDto, EnergyIqBuildingStoreyTaggedByArgsDto, EnergyIqBuildingStoreyUpdateDto, EnergyIqBuildingStoreyUpdateMessageDto, EnergyIqBuildingTaggedByArgsDto, EnergyIqBuildingUpdateDto, EnergyIqBuildingUpdateMessageDto, EnergyIqChillerAssociationsArgsDto, EnergyIqChillerChildrenArgsDto, EnergyIqChillerConfiguredByArgsDto, EnergyIqChillerConnectionDto, EnergyIqChillerDto, EnergyIqChillerEdgeDto, EnergyIqChillerInputDto, EnergyIqChillerInputUpdateDto, EnergyIqChillerMapsFromArgsDto, EnergyIqChillerMapsToArgsDto, EnergyIqChillerMutationsCreateArgsDto, EnergyIqChillerMutationsDto, EnergyIqChillerMutationsUpdateArgsDto, EnergyIqChillerParentArgsDto, EnergyIqChillerRelatesFromArgsDto, EnergyIqChillerRelatesToArgsDto, EnergyIqChillerServedByArgsDto, EnergyIqChillerServesSpacesArgsDto, EnergyIqChillerTaggedByArgsDto, EnergyIqChillerUpdateDto, EnergyIqChillerUpdateMessageDto, EnergyIqDoorAssociationsArgsDto, EnergyIqDoorConfiguredByArgsDto, EnergyIqDoorConnectionDto, EnergyIqDoorContainedElementsArgsDto, EnergyIqDoorContainedInSpaceArgsDto, EnergyIqDoorDto, EnergyIqDoorEdgeDto, EnergyIqDoorInputDto, EnergyIqDoorInputUpdateDto, EnergyIqDoorMapsFromArgsDto, EnergyIqDoorMapsToArgsDto, EnergyIqDoorMutationsCreateArgsDto, EnergyIqDoorMutationsDto, EnergyIqDoorMutationsUpdateArgsDto, EnergyIqDoorRelatesFromArgsDto, EnergyIqDoorRelatesToArgsDto, EnergyIqDoorTaggedByArgsDto, EnergyIqDoorUpdateDto, EnergyIqDoorUpdateMessageDto, EnergyIqDoor_ContainedElementsUnionConnectionDto, EnergyIqDoor_ContainedElementsUnionDto, EnergyIqDoor_ContainedElementsUnionEdgeDto, EnergyIqHaystackRefDto, EnergyIqHaystackRefInputDto, EnergyIqInverterAssociationsArgsDto, EnergyIqInverterChildrenArgsDto, EnergyIqInverterConfiguredByArgsDto, EnergyIqInverterConnectionDto, EnergyIqInverterDto, EnergyIqInverterEdgeDto, EnergyIqInverterInputDto, EnergyIqInverterInputUpdateDto, EnergyIqInverterMapsFromArgsDto, EnergyIqInverterMapsToArgsDto, EnergyIqInverterMutationsCreateArgsDto, EnergyIqInverterMutationsDto, EnergyIqInverterMutationsUpdateArgsDto, EnergyIqInverterParentArgsDto, EnergyIqInverterRelatesFromArgsDto, EnergyIqInverterRelatesToArgsDto, EnergyIqInverterTaggedByArgsDto, EnergyIqInverterUpdateDto, EnergyIqInverterUpdateMessageDto, EnergyIqLuminaireAssociationsArgsDto, EnergyIqLuminaireConfiguredByArgsDto, EnergyIqLuminaireConnectionDto, EnergyIqLuminaireContainedElementsArgsDto, EnergyIqLuminaireContainedInSpaceArgsDto, EnergyIqLuminaireDto, EnergyIqLuminaireEdgeDto, EnergyIqLuminaireInputDto, EnergyIqLuminaireInputUpdateDto, EnergyIqLuminaireMapsFromArgsDto, EnergyIqLuminaireMapsToArgsDto, EnergyIqLuminaireMutationsCreateArgsDto, EnergyIqLuminaireMutationsDto, EnergyIqLuminaireMutationsUpdateArgsDto, EnergyIqLuminaireRelatesFromArgsDto, EnergyIqLuminaireRelatesToArgsDto, EnergyIqLuminaireTaggedByArgsDto, EnergyIqLuminaireUpdateDto, EnergyIqLuminaireUpdateMessageDto, EnergyIqPhotovoltaicSystemAssociationsArgsDto, EnergyIqPhotovoltaicSystemChildrenArgsDto, EnergyIqPhotovoltaicSystemConfiguredByArgsDto, EnergyIqPhotovoltaicSystemConnectionDto, EnergyIqPhotovoltaicSystemDto, EnergyIqPhotovoltaicSystemEdgeDto, EnergyIqPhotovoltaicSystemInputDto, EnergyIqPhotovoltaicSystemInputUpdateDto, EnergyIqPhotovoltaicSystemMapsFromArgsDto, EnergyIqPhotovoltaicSystemMapsToArgsDto, EnergyIqPhotovoltaicSystemMutationsCreateArgsDto, EnergyIqPhotovoltaicSystemMutationsDto, EnergyIqPhotovoltaicSystemMutationsUpdateArgsDto, EnergyIqPhotovoltaicSystemParentArgsDto, EnergyIqPhotovoltaicSystemRelatesFromArgsDto, EnergyIqPhotovoltaicSystemRelatesToArgsDto, EnergyIqPhotovoltaicSystemTaggedByArgsDto, EnergyIqPhotovoltaicSystemUpdateDto, EnergyIqPhotovoltaicSystemUpdateMessageDto, EnergyIqPumpAssociationsArgsDto, EnergyIqPumpChildrenArgsDto, EnergyIqPumpConfiguredByArgsDto, EnergyIqPumpConnectionDto, EnergyIqPumpDto, EnergyIqPumpEdgeDto, EnergyIqPumpInputDto, EnergyIqPumpInputUpdateDto, EnergyIqPumpMapsFromArgsDto, EnergyIqPumpMapsToArgsDto, EnergyIqPumpMutationsCreateArgsDto, EnergyIqPumpMutationsDto, EnergyIqPumpMutationsUpdateArgsDto, EnergyIqPumpParentArgsDto, EnergyIqPumpRelatesFromArgsDto, EnergyIqPumpRelatesToArgsDto, EnergyIqPumpServedByArgsDto, EnergyIqPumpServesSpacesArgsDto, EnergyIqPumpTaggedByArgsDto, EnergyIqPumpUpdateDto, EnergyIqPumpUpdateMessageDto, EnergyIqScheduleEntryDto, EnergyIqScheduleEntryInputDto, EnergyIqShadingDeviceAssociationsArgsDto, EnergyIqShadingDeviceConfiguredByArgsDto, EnergyIqShadingDeviceConnectionDto, EnergyIqShadingDeviceContainedElementsArgsDto, EnergyIqShadingDeviceContainedInSpaceArgsDto, EnergyIqShadingDeviceDto, EnergyIqShadingDeviceEdgeDto, EnergyIqShadingDeviceInputDto, EnergyIqShadingDeviceInputUpdateDto, EnergyIqShadingDeviceMapsFromArgsDto, EnergyIqShadingDeviceMapsToArgsDto, EnergyIqShadingDeviceMutationsCreateArgsDto, EnergyIqShadingDeviceMutationsDto, EnergyIqShadingDeviceMutationsUpdateArgsDto, EnergyIqShadingDeviceRelatesFromArgsDto, EnergyIqShadingDeviceRelatesToArgsDto, EnergyIqShadingDeviceTaggedByArgsDto, EnergyIqShadingDeviceUpdateDto, EnergyIqShadingDeviceUpdateMessageDto, EnergyIqSiteAssociationsArgsDto, EnergyIqSiteChildrenArgsDto, EnergyIqSiteConfiguredByArgsDto, EnergyIqSiteConnectionDto, EnergyIqSiteDto, EnergyIqSiteEdgeDto, EnergyIqSiteInputDto, EnergyIqSiteInputUpdateDto, EnergyIqSiteMapsFromArgsDto, EnergyIqSiteMapsToArgsDto, EnergyIqSiteMutationsCreateArgsDto, EnergyIqSiteMutationsDto, EnergyIqSiteMutationsUpdateArgsDto, EnergyIqSiteRelatesFromArgsDto, EnergyIqSiteRelatesToArgsDto, EnergyIqSiteTaggedByArgsDto, EnergyIqSiteUpdateDto, EnergyIqSiteUpdateMessageDto, EnergyIqSpaceAssociationsArgsDto, EnergyIqSpaceChildrenArgsDto, EnergyIqSpaceConfiguredByArgsDto, EnergyIqSpaceConnectionDto, EnergyIqSpaceContainedElementsArgsDto, EnergyIqSpaceContainedInSpaceArgsDto, EnergyIqSpaceDto, EnergyIqSpaceEdgeDto, EnergyIqSpaceInputDto, EnergyIqSpaceInputUpdateDto, EnergyIqSpaceMapsFromArgsDto, EnergyIqSpaceMapsToArgsDto, EnergyIqSpaceMutationsCreateArgsDto, EnergyIqSpaceMutationsDto, EnergyIqSpaceMutationsUpdateArgsDto, EnergyIqSpaceParentArgsDto, EnergyIqSpaceRelatesFromArgsDto, EnergyIqSpaceRelatesToArgsDto, EnergyIqSpaceServedByArgsDto, EnergyIqSpaceServesSpacesArgsDto, EnergyIqSpaceTaggedByArgsDto, EnergyIqSpaceUpdateDto, EnergyIqSpaceUpdateMessageDto, EnergyIqSpace_ContainedElementsUnionConnectionDto, EnergyIqSpace_ContainedElementsUnionDto, EnergyIqSpace_ContainedElementsUnionEdgeDto, EnergyIqSpace_ContainedInSpaceUnionConnectionDto, EnergyIqSpace_ContainedInSpaceUnionDto, EnergyIqSpace_ContainedInSpaceUnionEdgeDto, EnergyIqSpace_ServedByUnionConnectionDto, EnergyIqSpace_ServedByUnionDto, EnergyIqSpace_ServedByUnionEdgeDto, EnergyIqSpace_ServesSpacesUnionConnectionDto, EnergyIqSpace_ServesSpacesUnionDto, EnergyIqSpace_ServesSpacesUnionEdgeDto, EnergyIqTechnicalSystemAssociationsArgsDto, EnergyIqTechnicalSystemChildrenArgsDto, EnergyIqTechnicalSystemConfiguredByArgsDto, EnergyIqTechnicalSystemConnectionDto, EnergyIqTechnicalSystemDto, EnergyIqTechnicalSystemEdgeDto, EnergyIqTechnicalSystemInterfaceChildrenArgsDto, EnergyIqTechnicalSystemInterfaceConfiguredByArgsDto, EnergyIqTechnicalSystemInterfaceDto, EnergyIqTechnicalSystemInterfaceMapsFromArgsDto, EnergyIqTechnicalSystemInterfaceMapsToArgsDto, EnergyIqTechnicalSystemInterfaceParentArgsDto, EnergyIqTechnicalSystemInterfaceRelatesFromArgsDto, EnergyIqTechnicalSystemInterfaceRelatesToArgsDto, EnergyIqTechnicalSystemInterfaceServesSpacesArgsDto, EnergyIqTechnicalSystemInterfaceTaggedByArgsDto, EnergyIqTechnicalSystemMapsFromArgsDto, EnergyIqTechnicalSystemMapsToArgsDto, EnergyIqTechnicalSystemParentArgsDto, EnergyIqTechnicalSystemRelatesFromArgsDto, EnergyIqTechnicalSystemRelatesToArgsDto, EnergyIqTechnicalSystemServesSpacesArgsDto, EnergyIqTechnicalSystemTaggedByArgsDto, EnergyIqTechnicalSystemUpdateDto, EnergyIqTechnicalSystemUpdateMessageDto, EnergyIqTechnicalSystem_ServedByUnionConnectionDto, EnergyIqTechnicalSystem_ServedByUnionDto, EnergyIqTechnicalSystem_ServedByUnionEdgeDto, EnergyIqWallAssociationsArgsDto, EnergyIqWallConfiguredByArgsDto, EnergyIqWallConnectionDto, EnergyIqWallContainedElementsArgsDto, EnergyIqWallContainedInSpaceArgsDto, EnergyIqWallDto, EnergyIqWallEdgeDto, EnergyIqWallInputDto, EnergyIqWallInputUpdateDto, EnergyIqWallMapsFromArgsDto, EnergyIqWallMapsToArgsDto, EnergyIqWallMutationsCreateArgsDto, EnergyIqWallMutationsDto, EnergyIqWallMutationsUpdateArgsDto, EnergyIqWallRelatesFromArgsDto, EnergyIqWallRelatesToArgsDto, EnergyIqWallTaggedByArgsDto, EnergyIqWallUpdateDto, EnergyIqWallUpdateMessageDto, EnergyIqWindowAssociationsArgsDto, EnergyIqWindowConfiguredByArgsDto, EnergyIqWindowConnectionDto, EnergyIqWindowContainedElementsArgsDto, EnergyIqWindowContainedInSpaceArgsDto, EnergyIqWindowDto, EnergyIqWindowEdgeDto, EnergyIqWindowInputDto, EnergyIqWindowInputUpdateDto, EnergyIqWindowMapsFromArgsDto, EnergyIqWindowMapsToArgsDto, EnergyIqWindowMutationsCreateArgsDto, EnergyIqWindowMutationsDto, EnergyIqWindowMutationsUpdateArgsDto, EnergyIqWindowRelatesFromArgsDto, EnergyIqWindowRelatesToArgsDto, EnergyIqWindowTaggedByArgsDto, EnergyIqWindowUpdateDto, EnergyIqWindowUpdateMessageDto, EnergyIqpvStringAssociationsArgsDto, EnergyIqpvStringChildrenArgsDto, EnergyIqpvStringConfiguredByArgsDto, EnergyIqpvStringConnectionDto, EnergyIqpvStringDto, EnergyIqpvStringEdgeDto, EnergyIqpvStringInputDto, EnergyIqpvStringInputUpdateDto, EnergyIqpvStringMapsFromArgsDto, EnergyIqpvStringMapsToArgsDto, EnergyIqpvStringMutationsCreateArgsDto, EnergyIqpvStringMutationsDto, EnergyIqpvStringMutationsUpdateArgsDto, EnergyIqpvStringParentArgsDto, EnergyIqpvStringRelatesFromArgsDto, EnergyIqpvStringRelatesToArgsDto, EnergyIqpvStringTaggedByArgsDto, EnergyIqpvStringUpdateDto, EnergyIqpvStringUpdateMessageDto, Exact, ExportModelResponseDto, ExternalLoginDto, ExternalTenantUserMappingDto, FieldAggregationDto, FieldFilterDto, FieldGroupByAggregationInputDto, GeneratedPasswordDto, GetCkModelByIdQueryDto, GetCkModelByIdQueryVariablesDto, GetCkRecordAttributesQueryDto, GetCkRecordAttributesQueryVariablesDto, GetCkTypeAttributesQueryDto, GetCkTypeAttributesQueryVariablesDto, GetCkTypeAvailableQueryColumnsQueryDto, GetCkTypeAvailableQueryColumnsQueryVariablesDto, GetCkTypesQueryDto, GetCkTypesQueryVariablesDto, GetDerivedCkTypesQueryDto, GetDerivedCkTypesQueryVariablesDto, GetEntitiesByCkTypeQueryDto, GetEntitiesByCkTypeQueryVariablesDto, GlobalQueryOptionsDto, GrantTypes, GroupDto, HealthCheck, HealthCheckResult, IConfigurationService, IQueryVariablesDto, IdentityProviderDto, IdentityProvidersResult, ImportFromCatalogBatchRequestDto, ImportFromCatalogRequestDto, ImportModelResponseDto, Incremental, IndustryBasicAlarmAssociationsArgsDto, IndustryBasicAlarmConfiguredByArgsDto, IndustryBasicAlarmConnectionDto, IndustryBasicAlarmDto, IndustryBasicAlarmEdgeDto, IndustryBasicAlarmEventSourceArgsDto, IndustryBasicAlarmInputDto, IndustryBasicAlarmInputUpdateDto, IndustryBasicAlarmMapsFromArgsDto, IndustryBasicAlarmMapsToArgsDto, IndustryBasicAlarmMutationsCreateArgsDto, IndustryBasicAlarmMutationsDto, IndustryBasicAlarmMutationsUpdateArgsDto, IndustryBasicAlarmRelatesFromArgsDto, IndustryBasicAlarmRelatesToArgsDto, IndustryBasicAlarmTaggedByArgsDto, IndustryBasicAlarmUpdateDto, IndustryBasicAlarmUpdateMessageDto, IndustryBasicEventAssociationsArgsDto, IndustryBasicEventConfiguredByArgsDto, IndustryBasicEventConnectionDto, IndustryBasicEventDto, IndustryBasicEventEdgeDto, IndustryBasicEventEventSourceArgsDto, IndustryBasicEventInputDto, IndustryBasicEventInputUpdateDto, IndustryBasicEventMapsFromArgsDto, IndustryBasicEventMapsToArgsDto, IndustryBasicEventMutationsCreateArgsDto, IndustryBasicEventMutationsDto, IndustryBasicEventMutationsUpdateArgsDto, IndustryBasicEventRelatesFromArgsDto, IndustryBasicEventRelatesToArgsDto, IndustryBasicEventTaggedByArgsDto, IndustryBasicEventUpdateDto, IndustryBasicEventUpdateMessageDto, IndustryBasicEvent_EventsUnionConnectionDto, IndustryBasicEvent_EventsUnionDto, IndustryBasicEvent_EventsUnionEdgeDto, IndustryBasicMachineAssociationsArgsDto, IndustryBasicMachineChildrenArgsDto, IndustryBasicMachineConfiguredByArgsDto, IndustryBasicMachineConnectionDto, IndustryBasicMachineDto, IndustryBasicMachineEdgeDto, IndustryBasicMachineEventsArgsDto, IndustryBasicMachineInputDto, IndustryBasicMachineInputUpdateDto, IndustryBasicMachineMapsFromArgsDto, IndustryBasicMachineMapsToArgsDto, IndustryBasicMachineMutationsCreateArgsDto, IndustryBasicMachineMutationsDto, IndustryBasicMachineMutationsUpdateArgsDto, IndustryBasicMachineParentArgsDto, IndustryBasicMachineRelatesFromArgsDto, IndustryBasicMachineRelatesToArgsDto, IndustryBasicMachineRuntimeVariablesArgsDto, IndustryBasicMachineTaggedByArgsDto, IndustryBasicMachineUpdateDto, IndustryBasicMachineUpdateMessageDto, IndustryBasicMachine_MachineUnionConnectionDto, IndustryBasicMachine_MachineUnionDto, IndustryBasicMachine_MachineUnionEdgeDto, IndustryBasicRuntimeVariableAssociationsArgsDto, IndustryBasicRuntimeVariableConfiguredByArgsDto, IndustryBasicRuntimeVariableConnectionDto, IndustryBasicRuntimeVariableDto, IndustryBasicRuntimeVariableEdgeDto, IndustryBasicRuntimeVariableInputDto, IndustryBasicRuntimeVariableInputUpdateDto, IndustryBasicRuntimeVariableMachineArgsDto, IndustryBasicRuntimeVariableMapsFromArgsDto, IndustryBasicRuntimeVariableMapsToArgsDto, IndustryBasicRuntimeVariableMutationsCreateArgsDto, IndustryBasicRuntimeVariableMutationsDto, IndustryBasicRuntimeVariableMutationsUpdateArgsDto, IndustryBasicRuntimeVariableRelatesFromArgsDto, IndustryBasicRuntimeVariableRelatesToArgsDto, IndustryBasicRuntimeVariableTaggedByArgsDto, IndustryBasicRuntimeVariableUpdateDto, IndustryBasicRuntimeVariableUpdateMessageDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionConnectionDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionEdgeDto, IndustryEnergyDemandResponseEventAssociationsArgsDto, IndustryEnergyDemandResponseEventConfiguredByArgsDto, IndustryEnergyDemandResponseEventConnectionDto, IndustryEnergyDemandResponseEventDto, IndustryEnergyDemandResponseEventEdgeDto, IndustryEnergyDemandResponseEventInputDto, IndustryEnergyDemandResponseEventInputUpdateDto, IndustryEnergyDemandResponseEventMapsFromArgsDto, IndustryEnergyDemandResponseEventMapsToArgsDto, IndustryEnergyDemandResponseEventMutationsCreateArgsDto, IndustryEnergyDemandResponseEventMutationsDto, IndustryEnergyDemandResponseEventMutationsUpdateArgsDto, IndustryEnergyDemandResponseEventParentArgsDto, IndustryEnergyDemandResponseEventRelatesFromArgsDto, IndustryEnergyDemandResponseEventRelatesToArgsDto, IndustryEnergyDemandResponseEventTaggedByArgsDto, IndustryEnergyDemandResponseEventUpdateDto, IndustryEnergyDemandResponseEventUpdateMessageDto, IndustryEnergyEnergyConsumerAssociationsArgsDto, IndustryEnergyEnergyConsumerChildrenArgsDto, IndustryEnergyEnergyConsumerConfiguredByArgsDto, IndustryEnergyEnergyConsumerConnectionDto, IndustryEnergyEnergyConsumerDto, IndustryEnergyEnergyConsumerEdgeDto, IndustryEnergyEnergyConsumerEventsArgsDto, IndustryEnergyEnergyConsumerInputDto, IndustryEnergyEnergyConsumerInputUpdateDto, IndustryEnergyEnergyConsumerMapsFromArgsDto, IndustryEnergyEnergyConsumerMapsToArgsDto, IndustryEnergyEnergyConsumerMutationsCreateArgsDto, IndustryEnergyEnergyConsumerMutationsDto, IndustryEnergyEnergyConsumerMutationsUpdateArgsDto, IndustryEnergyEnergyConsumerParentArgsDto, IndustryEnergyEnergyConsumerRelatesFromArgsDto, IndustryEnergyEnergyConsumerRelatesToArgsDto, IndustryEnergyEnergyConsumerRuntimeVariablesArgsDto, IndustryEnergyEnergyConsumerTaggedByArgsDto, IndustryEnergyEnergyConsumerUpdateDto, IndustryEnergyEnergyConsumerUpdateMessageDto, IndustryEnergyEnergyCostAssociationsArgsDto, IndustryEnergyEnergyCostConfiguredByArgsDto, IndustryEnergyEnergyCostConnectionDto, IndustryEnergyEnergyCostDto, IndustryEnergyEnergyCostEdgeDto, IndustryEnergyEnergyCostInputDto, IndustryEnergyEnergyCostInputUpdateDto, IndustryEnergyEnergyCostMapsFromArgsDto, IndustryEnergyEnergyCostMapsToArgsDto, IndustryEnergyEnergyCostMutationsCreateArgsDto, IndustryEnergyEnergyCostMutationsDto, IndustryEnergyEnergyCostMutationsUpdateArgsDto, IndustryEnergyEnergyCostParentArgsDto, IndustryEnergyEnergyCostRelatesFromArgsDto, IndustryEnergyEnergyCostRelatesToArgsDto, IndustryEnergyEnergyCostTaggedByArgsDto, IndustryEnergyEnergyCostUpdateDto, IndustryEnergyEnergyCostUpdateMessageDto, IndustryEnergyEnergyForecastAssociationsArgsDto, IndustryEnergyEnergyForecastConfiguredByArgsDto, IndustryEnergyEnergyForecastConnectionDto, IndustryEnergyEnergyForecastDto, IndustryEnergyEnergyForecastEdgeDto, IndustryEnergyEnergyForecastInputDto, IndustryEnergyEnergyForecastInputUpdateDto, IndustryEnergyEnergyForecastMapsFromArgsDto, IndustryEnergyEnergyForecastMapsToArgsDto, IndustryEnergyEnergyForecastMutationsCreateArgsDto, IndustryEnergyEnergyForecastMutationsDto, IndustryEnergyEnergyForecastMutationsUpdateArgsDto, IndustryEnergyEnergyForecastParentArgsDto, IndustryEnergyEnergyForecastRelatesFromArgsDto, IndustryEnergyEnergyForecastRelatesToArgsDto, IndustryEnergyEnergyForecastTaggedByArgsDto, IndustryEnergyEnergyForecastUpdateDto, IndustryEnergyEnergyForecastUpdateMessageDto, IndustryEnergyEnergyMeterAssociationsArgsDto, IndustryEnergyEnergyMeterChildrenArgsDto, IndustryEnergyEnergyMeterConfiguredByArgsDto, IndustryEnergyEnergyMeterConnectionDto, IndustryEnergyEnergyMeterDto, IndustryEnergyEnergyMeterEdgeDto, IndustryEnergyEnergyMeterEventsArgsDto, IndustryEnergyEnergyMeterInputDto, IndustryEnergyEnergyMeterInputUpdateDto, IndustryEnergyEnergyMeterMapsFromArgsDto, IndustryEnergyEnergyMeterMapsToArgsDto, IndustryEnergyEnergyMeterMutationsCreateArgsDto, IndustryEnergyEnergyMeterMutationsDto, IndustryEnergyEnergyMeterMutationsUpdateArgsDto, IndustryEnergyEnergyMeterParentArgsDto, IndustryEnergyEnergyMeterRelatesFromArgsDto, IndustryEnergyEnergyMeterRelatesToArgsDto, IndustryEnergyEnergyMeterRuntimeVariablesArgsDto, IndustryEnergyEnergyMeterTaggedByArgsDto, IndustryEnergyEnergyMeterUpdateDto, IndustryEnergyEnergyMeterUpdateMessageDto, IndustryEnergyEnergyPerformanceIndicatorAssociationsArgsDto, IndustryEnergyEnergyPerformanceIndicatorConfiguredByArgsDto, IndustryEnergyEnergyPerformanceIndicatorConnectionDto, IndustryEnergyEnergyPerformanceIndicatorDto, IndustryEnergyEnergyPerformanceIndicatorEdgeDto, IndustryEnergyEnergyPerformanceIndicatorInputDto, IndustryEnergyEnergyPerformanceIndicatorInputUpdateDto, IndustryEnergyEnergyPerformanceIndicatorMapsFromArgsDto, IndustryEnergyEnergyPerformanceIndicatorMapsToArgsDto, IndustryEnergyEnergyPerformanceIndicatorMutationsCreateArgsDto, IndustryEnergyEnergyPerformanceIndicatorMutationsDto, IndustryEnergyEnergyPerformanceIndicatorMutationsUpdateArgsDto, IndustryEnergyEnergyPerformanceIndicatorParentArgsDto, IndustryEnergyEnergyPerformanceIndicatorRelatesFromArgsDto, IndustryEnergyEnergyPerformanceIndicatorRelatesToArgsDto, IndustryEnergyEnergyPerformanceIndicatorTaggedByArgsDto, IndustryEnergyEnergyPerformanceIndicatorUpdateDto, IndustryEnergyEnergyPerformanceIndicatorUpdateMessageDto, IndustryEnergyEnergyStorageAssociationsArgsDto, IndustryEnergyEnergyStorageChildrenArgsDto, IndustryEnergyEnergyStorageConfiguredByArgsDto, IndustryEnergyEnergyStorageConnectionDto, IndustryEnergyEnergyStorageDto, IndustryEnergyEnergyStorageEdgeDto, IndustryEnergyEnergyStorageEventsArgsDto, IndustryEnergyEnergyStorageInputDto, IndustryEnergyEnergyStorageInputUpdateDto, IndustryEnergyEnergyStorageMapsFromArgsDto, IndustryEnergyEnergyStorageMapsToArgsDto, IndustryEnergyEnergyStorageMutationsCreateArgsDto, IndustryEnergyEnergyStorageMutationsDto, IndustryEnergyEnergyStorageMutationsUpdateArgsDto, IndustryEnergyEnergyStorageParentArgsDto, IndustryEnergyEnergyStorageRelatesFromArgsDto, IndustryEnergyEnergyStorageRelatesToArgsDto, IndustryEnergyEnergyStorageRuntimeVariablesArgsDto, IndustryEnergyEnergyStorageTaggedByArgsDto, IndustryEnergyEnergyStorageUpdateDto, IndustryEnergyEnergyStorageUpdateMessageDto, IndustryEnergyInverterAssociationsArgsDto, IndustryEnergyInverterChildrenArgsDto, IndustryEnergyInverterConfiguredByArgsDto, IndustryEnergyInverterConnectionDto, IndustryEnergyInverterDto, IndustryEnergyInverterEdgeDto, IndustryEnergyInverterEventsArgsDto, IndustryEnergyInverterInputDto, IndustryEnergyInverterInputUpdateDto, IndustryEnergyInverterMapsFromArgsDto, IndustryEnergyInverterMapsToArgsDto, IndustryEnergyInverterMutationsCreateArgsDto, IndustryEnergyInverterMutationsDto, IndustryEnergyInverterMutationsUpdateArgsDto, IndustryEnergyInverterParentArgsDto, IndustryEnergyInverterRelatesFromArgsDto, IndustryEnergyInverterRelatesToArgsDto, IndustryEnergyInverterRuntimeVariablesArgsDto, IndustryEnergyInverterTaggedByArgsDto, IndustryEnergyInverterUpdateDto, IndustryEnergyInverterUpdateMessageDto, IndustryEnergyPhaseInfoDto, IndustryEnergyPhaseInfoInputDto, IndustryEnergyPhotovoltaicSystemAssociationsArgsDto, IndustryEnergyPhotovoltaicSystemChildrenArgsDto, IndustryEnergyPhotovoltaicSystemConfiguredByArgsDto, IndustryEnergyPhotovoltaicSystemConnectionDto, IndustryEnergyPhotovoltaicSystemDto, IndustryEnergyPhotovoltaicSystemEdgeDto, IndustryEnergyPhotovoltaicSystemEventsArgsDto, IndustryEnergyPhotovoltaicSystemInputDto, IndustryEnergyPhotovoltaicSystemInputUpdateDto, IndustryEnergyPhotovoltaicSystemMapsFromArgsDto, IndustryEnergyPhotovoltaicSystemMapsToArgsDto, IndustryEnergyPhotovoltaicSystemModuleAssociationsArgsDto, IndustryEnergyPhotovoltaicSystemModuleChildrenArgsDto, IndustryEnergyPhotovoltaicSystemModuleConfiguredByArgsDto, IndustryEnergyPhotovoltaicSystemModuleConnectionDto, IndustryEnergyPhotovoltaicSystemModuleDto, IndustryEnergyPhotovoltaicSystemModuleEdgeDto, IndustryEnergyPhotovoltaicSystemModuleEventsArgsDto, IndustryEnergyPhotovoltaicSystemModuleInputDto, IndustryEnergyPhotovoltaicSystemModuleInputUpdateDto, IndustryEnergyPhotovoltaicSystemModuleMapsFromArgsDto, IndustryEnergyPhotovoltaicSystemModuleMapsToArgsDto, IndustryEnergyPhotovoltaicSystemModuleMutationsCreateArgsDto, IndustryEnergyPhotovoltaicSystemModuleMutationsDto, IndustryEnergyPhotovoltaicSystemModuleMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicSystemModuleParentArgsDto, IndustryEnergyPhotovoltaicSystemModuleRelatesFromArgsDto, IndustryEnergyPhotovoltaicSystemModuleRelatesToArgsDto, IndustryEnergyPhotovoltaicSystemModuleRuntimeVariablesArgsDto, IndustryEnergyPhotovoltaicSystemModuleTaggedByArgsDto, IndustryEnergyPhotovoltaicSystemModuleUpdateDto, IndustryEnergyPhotovoltaicSystemModuleUpdateMessageDto, IndustryEnergyPhotovoltaicSystemMutationsCreateArgsDto, IndustryEnergyPhotovoltaicSystemMutationsDto, IndustryEnergyPhotovoltaicSystemMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicSystemParentArgsDto, IndustryEnergyPhotovoltaicSystemRelatesFromArgsDto, IndustryEnergyPhotovoltaicSystemRelatesToArgsDto, IndustryEnergyPhotovoltaicSystemStringAssociationsArgsDto, IndustryEnergyPhotovoltaicSystemStringChildrenArgsDto, IndustryEnergyPhotovoltaicSystemStringConfiguredByArgsDto, IndustryEnergyPhotovoltaicSystemStringConnectionDto, IndustryEnergyPhotovoltaicSystemStringDto, IndustryEnergyPhotovoltaicSystemStringEdgeDto, IndustryEnergyPhotovoltaicSystemStringEventsArgsDto, IndustryEnergyPhotovoltaicSystemStringInputDto, IndustryEnergyPhotovoltaicSystemStringInputUpdateDto, IndustryEnergyPhotovoltaicSystemStringMapsFromArgsDto, IndustryEnergyPhotovoltaicSystemStringMapsToArgsDto, IndustryEnergyPhotovoltaicSystemStringMutationsCreateArgsDto, IndustryEnergyPhotovoltaicSystemStringMutationsDto, IndustryEnergyPhotovoltaicSystemStringMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicSystemStringParentArgsDto, IndustryEnergyPhotovoltaicSystemStringRelatesFromArgsDto, IndustryEnergyPhotovoltaicSystemStringRelatesToArgsDto, IndustryEnergyPhotovoltaicSystemStringTaggedByArgsDto, IndustryEnergyPhotovoltaicSystemStringUpdateDto, IndustryEnergyPhotovoltaicSystemStringUpdateMessageDto, IndustryEnergyPhotovoltaicSystemTaggedByArgsDto, IndustryEnergyPhotovoltaicSystemUpdateDto, IndustryEnergyPhotovoltaicSystemUpdateMessageDto, InputMaybe, JobDto, JobResponseDto, LargeBinaryInfoDto, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MergeUsersRequestDto, MigrationHistoryEntryDto, MigrationHistoryResponseDto, MovePipelineResultDto, MovePipelinesToAdapterRequestDto, MovePipelinesToAdapterResponseDto, NearGeospatialFilterDto, NodeDescriptorDto, OctoMutationDto, OctoQueryAvailableArchivePathsArgsDto, OctoQueryDto, OctoSdkDemoCustomerAssociationsArgsDto, OctoSdkDemoCustomerConfiguredByArgsDto, OctoSdkDemoCustomerConnectionDto, OctoSdkDemoCustomerDto, OctoSdkDemoCustomerEdgeDto, OctoSdkDemoCustomerInputDto, OctoSdkDemoCustomerInputUpdateDto, OctoSdkDemoCustomerMapsFromArgsDto, OctoSdkDemoCustomerMapsToArgsDto, OctoSdkDemoCustomerMutationsCreateArgsDto, OctoSdkDemoCustomerMutationsDto, OctoSdkDemoCustomerMutationsUpdateArgsDto, OctoSdkDemoCustomerNoteDto, OctoSdkDemoCustomerNoteInputDto, OctoSdkDemoCustomerOwnsArgsDto, OctoSdkDemoCustomerRelatesFromArgsDto, OctoSdkDemoCustomerRelatesToArgsDto, OctoSdkDemoCustomerTaggedByArgsDto, OctoSdkDemoCustomerUpdateDto, OctoSdkDemoCustomerUpdateMessageDto, OctoSdkDemoCustomer_OwnedByUnionConnectionDto, OctoSdkDemoCustomer_OwnedByUnionDto, OctoSdkDemoCustomer_OwnedByUnionEdgeDto, OctoSdkDemoMeteringPointAssociationsArgsDto, OctoSdkDemoMeteringPointChildrenArgsDto, OctoSdkDemoMeteringPointConfiguredByArgsDto, OctoSdkDemoMeteringPointConnectionDto, OctoSdkDemoMeteringPointDto, OctoSdkDemoMeteringPointEdgeDto, OctoSdkDemoMeteringPointEventsArgsDto, OctoSdkDemoMeteringPointInputDto, OctoSdkDemoMeteringPointInputUpdateDto, OctoSdkDemoMeteringPointMapsFromArgsDto, OctoSdkDemoMeteringPointMapsToArgsDto, OctoSdkDemoMeteringPointMutationsCreateArgsDto, OctoSdkDemoMeteringPointMutationsDto, OctoSdkDemoMeteringPointMutationsUpdateArgsDto, OctoSdkDemoMeteringPointParentArgsDto, OctoSdkDemoMeteringPointRelatesFromArgsDto, OctoSdkDemoMeteringPointRelatesToArgsDto, OctoSdkDemoMeteringPointTaggedByArgsDto, OctoSdkDemoMeteringPointUpdateDto, OctoSdkDemoMeteringPointUpdateMessageDto, OctoSdkDemoOperatingFacilityAssociationsArgsDto, OctoSdkDemoOperatingFacilityChildrenArgsDto, OctoSdkDemoOperatingFacilityConfiguredByArgsDto, OctoSdkDemoOperatingFacilityConnectionDto, OctoSdkDemoOperatingFacilityDto, OctoSdkDemoOperatingFacilityEdgeDto, OctoSdkDemoOperatingFacilityInputDto, OctoSdkDemoOperatingFacilityInputUpdateDto, OctoSdkDemoOperatingFacilityMapsFromArgsDto, OctoSdkDemoOperatingFacilityMapsToArgsDto, OctoSdkDemoOperatingFacilityMutationsCreateArgsDto, OctoSdkDemoOperatingFacilityMutationsDto, OctoSdkDemoOperatingFacilityMutationsUpdateArgsDto, OctoSdkDemoOperatingFacilityOwnedByArgsDto, OctoSdkDemoOperatingFacilityParentArgsDto, OctoSdkDemoOperatingFacilityRelatesFromArgsDto, OctoSdkDemoOperatingFacilityRelatesToArgsDto, OctoSdkDemoOperatingFacilityTaggedByArgsDto, OctoSdkDemoOperatingFacilityUpdateDto, OctoSdkDemoOperatingFacilityUpdateMessageDto, OctoSdkDemoOperatingFacility_OwnsUnionConnectionDto, OctoSdkDemoOperatingFacility_OwnsUnionDto, OctoSdkDemoOperatingFacility_OwnsUnionEdgeDto, OctoSubscriptionsBasicAssetEventsArgsDto, OctoSubscriptionsBasicCityEventsArgsDto, OctoSubscriptionsBasicCountryEventsArgsDto, OctoSubscriptionsBasicDistrictEventsArgsDto, OctoSubscriptionsBasicDocumentEventsArgsDto, OctoSubscriptionsBasicEmployeeEventsArgsDto, OctoSubscriptionsBasicEnergyConsumerEventsArgsDto, OctoSubscriptionsBasicEnergyEdaMessageEventsArgsDto, OctoSubscriptionsBasicEnergyEdaMeteringPointEventsArgsDto, OctoSubscriptionsBasicEnergyEdaProcessEventsArgsDto, OctoSubscriptionsBasicEnergyEnergyMeasurementEventsArgsDto, OctoSubscriptionsBasicEnergyMeteringPointEventsArgsDto, OctoSubscriptionsBasicEnergyOperatingFacilityEventsArgsDto, OctoSubscriptionsBasicEnergyProducerEventsArgsDto, OctoSubscriptionsBasicNamedEntityEventsArgsDto, OctoSubscriptionsBasicStateEventsArgsDto, OctoSubscriptionsBasicTreeEventsArgsDto, OctoSubscriptionsBasicTreeNodeEventsArgsDto, OctoSubscriptionsDto, OctoSubscriptionsEnergyIqAirHandlingUnitEventsArgsDto, OctoSubscriptionsEnergyIqBatteryStorageEventsArgsDto, OctoSubscriptionsEnergyIqBoilerEventsArgsDto, OctoSubscriptionsEnergyIqBuildingElementEventsArgsDto, OctoSubscriptionsEnergyIqBuildingEventsArgsDto, OctoSubscriptionsEnergyIqBuildingStoreyEventsArgsDto, OctoSubscriptionsEnergyIqChillerEventsArgsDto, OctoSubscriptionsEnergyIqDoorEventsArgsDto, OctoSubscriptionsEnergyIqInverterEventsArgsDto, OctoSubscriptionsEnergyIqLuminaireEventsArgsDto, OctoSubscriptionsEnergyIqPhotovoltaicSystemEventsArgsDto, OctoSubscriptionsEnergyIqPumpEventsArgsDto, OctoSubscriptionsEnergyIqShadingDeviceEventsArgsDto, OctoSubscriptionsEnergyIqSiteEventsArgsDto, OctoSubscriptionsEnergyIqSpaceEventsArgsDto, OctoSubscriptionsEnergyIqTechnicalSystemEventsArgsDto, OctoSubscriptionsEnergyIqWallEventsArgsDto, OctoSubscriptionsEnergyIqWindowEventsArgsDto, OctoSubscriptionsEnergyIqpvStringEventsArgsDto, OctoSubscriptionsIndustryBasicAlarmEventsArgsDto, OctoSubscriptionsIndustryBasicEventEventsArgsDto, OctoSubscriptionsIndustryBasicMachineEventsArgsDto, OctoSubscriptionsIndustryBasicRuntimeVariableEventsArgsDto, OctoSubscriptionsIndustryEnergyDemandResponseEventEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyConsumerEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyCostEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyForecastEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyMeterEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyPerformanceIndicatorEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyStorageEventsArgsDto, OctoSubscriptionsIndustryEnergyInverterEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemModuleEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemStringEventsArgsDto, OctoSubscriptionsOctoSdkDemoCustomerEventsArgsDto, OctoSubscriptionsOctoSdkDemoMeteringPointEventsArgsDto, OctoSubscriptionsOctoSdkDemoOperatingFacilityEventsArgsDto, OctoSubscriptionsSystemAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemAggregationSdQueryEventsArgsDto, OctoSubscriptionsSystemAutoIncrementEventsArgsDto, OctoSubscriptionsSystemBotAttributeAggregateConfigurationEventsArgsDto, OctoSubscriptionsSystemBotFixupEventsArgsDto, OctoSubscriptionsSystemCommunicationAdapterEventsArgsDto, OctoSubscriptionsSystemCommunicationAiConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationApplicationEventsArgsDto, OctoSubscriptionsSystemCommunicationDataFlowEventsArgsDto, OctoSubscriptionsSystemCommunicationDataPointMappingEventsArgsDto, OctoSubscriptionsSystemCommunicationDeployableEntityEventsArgsDto, OctoSubscriptionsSystemCommunicationDeployableWorkloadEventsArgsDto, OctoSubscriptionsSystemCommunicationDiscordConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEMailReceiverConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEMailSenderConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEdaConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEnergyCommunityConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationFinApiConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationGrafanaConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationHelmRepositoryConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationLoxoneConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationMicrosoftGraphConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineExecutionEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineStatisticsEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineTriggerEventsArgsDto, OctoSubscriptionsSystemCommunicationPoolEventsArgsDto, OctoSubscriptionsSystemCommunicationSapConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationServiceAccountConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationSftpConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationTagEventsArgsDto, OctoSubscriptionsSystemConfigurationEventsArgsDto, OctoSubscriptionsSystemDownsamplingSdQueryEventsArgsDto, OctoSubscriptionsSystemEntityEventsArgsDto, OctoSubscriptionsSystemGroupingAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemGroupingAggregationSdQueryEventsArgsDto, OctoSubscriptionsSystemIdentityApiResourceEventsArgsDto, OctoSubscriptionsSystemIdentityApiScopeEventsArgsDto, OctoSubscriptionsSystemIdentityAzureEntraIdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityClientEventsArgsDto, OctoSubscriptionsSystemIdentityEmailDomainGroupRuleEventsArgsDto, OctoSubscriptionsSystemIdentityExternalTenantUserMappingEventsArgsDto, OctoSubscriptionsSystemIdentityFacebookIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityGoogleIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityGroupEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityMailNotificationConfigurationEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftAdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityOctoTenantIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityOpenLdapIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionRoleEventsArgsDto, OctoSubscriptionsSystemIdentityPersistedGrantEventsArgsDto, OctoSubscriptionsSystemIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityRoleEventsArgsDto, OctoSubscriptionsSystemIdentityUserEventsArgsDto, OctoSubscriptionsSystemMigrationHistoryEventsArgsDto, OctoSubscriptionsSystemNotificationCssTemplateConfigurationEventsArgsDto, OctoSubscriptionsSystemNotificationEventEventsArgsDto, OctoSubscriptionsSystemNotificationNotificationTemplateEventsArgsDto, OctoSubscriptionsSystemNotificationStatefulEventEventsArgsDto, OctoSubscriptionsSystemPersistentQueryEventsArgsDto, OctoSubscriptionsSystemReportingConnectionInfoEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemContainerEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemEntityEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemItemEventsArgsDto, OctoSubscriptionsSystemReportingFolderEventsArgsDto, OctoSubscriptionsSystemReportingFolderRootEventsArgsDto, OctoSubscriptionsSystemSimpleRtQueryEventsArgsDto, OctoSubscriptionsSystemSimpleSdQueryEventsArgsDto, OctoSubscriptionsSystemStreamDataArchiveEventsArgsDto, OctoSubscriptionsSystemStreamDataQueryEventsArgsDto, OctoSubscriptionsSystemStreamDataRawArchiveEventsArgsDto, OctoSubscriptionsSystemStreamDataRollupArchiveEventsArgsDto, OctoSubscriptionsSystemStreamDataTimeRangeArchiveEventsArgsDto, OctoSubscriptionsSystemTenantConfigurationEventsArgsDto, OctoSubscriptionsSystemTenantEventsArgsDto, OctoSubscriptionsSystemTenantModeConfigurationEventsArgsDto, OctoSubscriptionsSystemUiBrandingEventsArgsDto, OctoSubscriptionsSystemUiDashboardEventsArgsDto, OctoSubscriptionsSystemUiDashboardWidgetEventsArgsDto, OctoSubscriptionsSystemUiProcessDiagramEventsArgsDto, OctoSubscriptionsSystemUiSymbolDefinitionEventsArgsDto, OctoSubscriptionsSystemUiSymbolLibraryEventsArgsDto, OctoSubscriptionsSystemUiuiElementEventsArgsDto, PageInfoDto, PipelineExecutionDataDto, PipelineNodePropertiesDto, PointInputDto, PositionInputDto, ProgressDialogRef, ProgressWindowOptions, QueryAggregationResultConnectionDto, QueryAggregationResultDto, QueryAggregationResultEdgeDto, RegisterUserDto, ResultAggregationInputDto, RoleDto, RollupAggregationInputDto, RollupArchiveInfoDto, RollupQueryMetadataDto, RtAggregationQueryRowCellsArgsDto, RtAggregationQueryRowDto, RtAssociationAttributesArgsDto, RtAssociationDto, RtAssociationDtoConnectionDto, RtAssociationDtoEdgeDto, RtAssociationInputDto, RtEntityAssociationInputDto, RtEntityAttributeDto, RtEntityAttributeDtoConnectionDto, RtEntityAttributeDtoEdgeDto, RtEntityAttributeInputDto, RtEntityAttributesArgsDto, RtEntityDto, RtEntityGenericAssociationDefinitionsArgsDto, RtEntityGenericAssociationDto, RtEntityGenericAssociationTargetsArgsDto, RtEntityGenericDtoConnectionDto, RtEntityGenericDtoEdgeDto, RtEntityIdDto, RtEntityInputDto, RtEntityMutationsCreateArgsDto, RtEntityMutationsDeleteArgsDto, RtEntityMutationsDto, RtEntityMutationsUpdateArgsDto, RtEntityUpdateDto, RtGroupingAggregationQueryRowCellsArgsDto, RtGroupingAggregationQueryRowDto, RtQueryAggregationsArgsDto, RtQueryCellDto, RtQueryCellDtoConnectionDto, RtQueryCellDtoEdgeDto, RtQueryCellInputDto, RtQueryColumnDto, RtQueryColumnInputDto, RtQueryDto, RtQueryDtoConnectionDto, RtQueryDtoEdgeDto, RtQueryMutationsCreateArgsDto, RtQueryMutationsDeleteArgsDto, RtQueryMutationsDto, RtQueryMutationsUpdateArgsDto, RtQueryRowCellsArgsDto, RtQueryRowDto, RtQueryRowDtoConnectionDto, RtQueryRowDtoEdgeDto, RtQueryRowInputDto, RtQueryRowUpdateDto, RtQueryRowsArgsDto, RtSimpleQueryRowCellsArgsDto, RtSimpleQueryRowDto, RtTransientAggregationArgsDto, RtTransientDto, RtTransientGroupingAggregationArgsDto, RtTransientQueryAggregationsArgsDto, RtTransientQueryDto, RtTransientQueryDtoConnectionDto, RtTransientQueryDtoEdgeDto, RtTransientQueryRowsArgsDto, RtTransientSimpleArgsDto, RuntimeDto, RuntimeEntityItem, RuntimeModelQueryBasicAssetArgsDto, RuntimeModelQueryBasicCityArgsDto, RuntimeModelQueryBasicCountryArgsDto, RuntimeModelQueryBasicDistrictArgsDto, RuntimeModelQueryBasicDocumentArgsDto, RuntimeModelQueryBasicEmployeeArgsDto, RuntimeModelQueryBasicEnergyConsumerArgsDto, RuntimeModelQueryBasicEnergyEdaMessageArgsDto, RuntimeModelQueryBasicEnergyEdaMeteringPointArgsDto, RuntimeModelQueryBasicEnergyEdaProcessArgsDto, RuntimeModelQueryBasicEnergyEnergyMeasurementArgsDto, RuntimeModelQueryBasicEnergyMeteringPointArgsDto, RuntimeModelQueryBasicEnergyOperatingFacilityArgsDto, RuntimeModelQueryBasicEnergyProducerArgsDto, RuntimeModelQueryBasicNamedEntityArgsDto, RuntimeModelQueryBasicStateArgsDto, RuntimeModelQueryBasicTreeArgsDto, RuntimeModelQueryBasicTreeNodeArgsDto, RuntimeModelQueryDto, RuntimeModelQueryEnergyIqAirHandlingUnitArgsDto, RuntimeModelQueryEnergyIqBatteryStorageArgsDto, RuntimeModelQueryEnergyIqBoilerArgsDto, RuntimeModelQueryEnergyIqBuildingArgsDto, RuntimeModelQueryEnergyIqBuildingElementArgsDto, RuntimeModelQueryEnergyIqBuildingStoreyArgsDto, RuntimeModelQueryEnergyIqChillerArgsDto, RuntimeModelQueryEnergyIqDoorArgsDto, RuntimeModelQueryEnergyIqInverterArgsDto, RuntimeModelQueryEnergyIqLuminaireArgsDto, RuntimeModelQueryEnergyIqPhotovoltaicSystemArgsDto, RuntimeModelQueryEnergyIqPumpArgsDto, RuntimeModelQueryEnergyIqShadingDeviceArgsDto, RuntimeModelQueryEnergyIqSiteArgsDto, RuntimeModelQueryEnergyIqSpaceArgsDto, RuntimeModelQueryEnergyIqTechnicalSystemArgsDto, RuntimeModelQueryEnergyIqWallArgsDto, RuntimeModelQueryEnergyIqWindowArgsDto, RuntimeModelQueryEnergyIqpvStringArgsDto, RuntimeModelQueryIndustryBasicAlarmArgsDto, RuntimeModelQueryIndustryBasicEventArgsDto, RuntimeModelQueryIndustryBasicMachineArgsDto, RuntimeModelQueryIndustryBasicRuntimeVariableArgsDto, RuntimeModelQueryIndustryEnergyDemandResponseEventArgsDto, RuntimeModelQueryIndustryEnergyEnergyConsumerArgsDto, RuntimeModelQueryIndustryEnergyEnergyCostArgsDto, RuntimeModelQueryIndustryEnergyEnergyForecastArgsDto, RuntimeModelQueryIndustryEnergyEnergyMeterArgsDto, RuntimeModelQueryIndustryEnergyEnergyPerformanceIndicatorArgsDto, RuntimeModelQueryIndustryEnergyEnergyStorageArgsDto, RuntimeModelQueryIndustryEnergyInverterArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemModuleArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemStringArgsDto, RuntimeModelQueryOctoSdkDemoCustomerArgsDto, RuntimeModelQueryOctoSdkDemoMeteringPointArgsDto, RuntimeModelQueryOctoSdkDemoOperatingFacilityArgsDto, RuntimeModelQueryRuntimeEntitiesArgsDto, RuntimeModelQueryRuntimeQueryArgsDto, RuntimeModelQuerySystemAggregationRtQueryArgsDto, RuntimeModelQuerySystemAggregationSdQueryArgsDto, RuntimeModelQuerySystemAutoIncrementArgsDto, RuntimeModelQuerySystemBotAttributeAggregateConfigurationArgsDto, RuntimeModelQuerySystemBotFixupArgsDto, RuntimeModelQuerySystemCommunicationAdapterArgsDto, RuntimeModelQuerySystemCommunicationAiConfigurationArgsDto, RuntimeModelQuerySystemCommunicationApplicationArgsDto, RuntimeModelQuerySystemCommunicationDataFlowArgsDto, RuntimeModelQuerySystemCommunicationDataPointMappingArgsDto, RuntimeModelQuerySystemCommunicationDeployableEntityArgsDto, RuntimeModelQuerySystemCommunicationDeployableWorkloadArgsDto, RuntimeModelQuerySystemCommunicationDiscordConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEMailReceiverConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEMailSenderConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEdaConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEnergyCommunityConfigurationArgsDto, RuntimeModelQuerySystemCommunicationFinApiConfigurationArgsDto, RuntimeModelQuerySystemCommunicationGrafanaConfigurationArgsDto, RuntimeModelQuerySystemCommunicationHelmRepositoryConfigurationArgsDto, RuntimeModelQuerySystemCommunicationLoxoneConfigurationArgsDto, RuntimeModelQuerySystemCommunicationMicrosoftGraphConfigurationArgsDto, RuntimeModelQuerySystemCommunicationPipelineArgsDto, RuntimeModelQuerySystemCommunicationPipelineExecutionArgsDto, RuntimeModelQuerySystemCommunicationPipelineStatisticsArgsDto, RuntimeModelQuerySystemCommunicationPipelineTriggerArgsDto, RuntimeModelQuerySystemCommunicationPoolArgsDto, RuntimeModelQuerySystemCommunicationSapConfigurationArgsDto, RuntimeModelQuerySystemCommunicationServiceAccountConfigurationArgsDto, RuntimeModelQuerySystemCommunicationSftpConfigurationArgsDto, RuntimeModelQuerySystemCommunicationTagArgsDto, RuntimeModelQuerySystemConfigurationArgsDto, RuntimeModelQuerySystemDownsamplingSdQueryArgsDto, RuntimeModelQuerySystemEntityArgsDto, RuntimeModelQuerySystemGroupingAggregationRtQueryArgsDto, RuntimeModelQuerySystemGroupingAggregationSdQueryArgsDto, RuntimeModelQuerySystemIdentityApiResourceArgsDto, RuntimeModelQuerySystemIdentityApiScopeArgsDto, RuntimeModelQuerySystemIdentityAzureEntraIdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityClientArgsDto, RuntimeModelQuerySystemIdentityEmailDomainGroupRuleArgsDto, RuntimeModelQuerySystemIdentityExternalTenantUserMappingArgsDto, RuntimeModelQuerySystemIdentityFacebookIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityGoogleIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityGroupArgsDto, RuntimeModelQuerySystemIdentityIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityMailNotificationConfigurationArgsDto, RuntimeModelQuerySystemIdentityMicrosoftAdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityMicrosoftIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityOctoTenantIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityOpenLdapIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityPermissionArgsDto, RuntimeModelQuerySystemIdentityPermissionRoleArgsDto, RuntimeModelQuerySystemIdentityPersistedGrantArgsDto, RuntimeModelQuerySystemIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityRoleArgsDto, RuntimeModelQuerySystemIdentityUserArgsDto, RuntimeModelQuerySystemMigrationHistoryArgsDto, RuntimeModelQuerySystemNotificationCssTemplateConfigurationArgsDto, RuntimeModelQuerySystemNotificationEventArgsDto, RuntimeModelQuerySystemNotificationNotificationTemplateArgsDto, RuntimeModelQuerySystemNotificationStatefulEventArgsDto, RuntimeModelQuerySystemPersistentQueryArgsDto, RuntimeModelQuerySystemReportingConnectionInfoArgsDto, RuntimeModelQuerySystemReportingFileSystemContainerArgsDto, RuntimeModelQuerySystemReportingFileSystemEntityArgsDto, RuntimeModelQuerySystemReportingFileSystemItemArgsDto, RuntimeModelQuerySystemReportingFolderArgsDto, RuntimeModelQuerySystemReportingFolderRootArgsDto, RuntimeModelQuerySystemSimpleRtQueryArgsDto, RuntimeModelQuerySystemSimpleSdQueryArgsDto, RuntimeModelQuerySystemStreamDataArchiveArgsDto, RuntimeModelQuerySystemStreamDataQueryArgsDto, RuntimeModelQuerySystemStreamDataRawArchiveArgsDto, RuntimeModelQuerySystemStreamDataRollupArchiveArgsDto, RuntimeModelQuerySystemStreamDataTimeRangeArchiveArgsDto, RuntimeModelQuerySystemTenantArgsDto, RuntimeModelQuerySystemTenantConfigurationArgsDto, RuntimeModelQuerySystemTenantModeConfigurationArgsDto, RuntimeModelQuerySystemUiBrandingArgsDto, RuntimeModelQuerySystemUiDashboardArgsDto, RuntimeModelQuerySystemUiDashboardWidgetArgsDto, RuntimeModelQuerySystemUiProcessDiagramArgsDto, RuntimeModelQuerySystemUiSymbolDefinitionArgsDto, RuntimeModelQuerySystemUiSymbolLibraryArgsDto, RuntimeModelQuerySystemUiuiElementArgsDto, RuntimeRuntimeQueryArgsDto, Scalars, SearchFilterDto, SortDto, StatisticsDto, StreamDataArgumentsDto, StreamDataModelQueryArchivesStorageStatsArgsDto, StreamDataModelQueryDto, StreamDataModelQueryRollupQueryMetadataArgsDto, StreamDataModelQueryRollupsForArgsDto, StreamDataModelQueryStreamDataQueryArgsDto, StreamDataMutationsActivateArchiveArgsDto, StreamDataMutationsCreateRollupArchiveArgsDto, StreamDataMutationsCreateTimeRangeArchiveArgsDto, StreamDataMutationsDeleteArchiveArgsDto, StreamDataMutationsDisableArchiveArgsDto, StreamDataMutationsDto, StreamDataMutationsEnableArchiveArgsDto, StreamDataMutationsFreezeRollupArchiveArgsDto, StreamDataMutationsRetryArchiveActivationArgsDto, StreamDataMutationsRewindRollupWatermarkArgsDto, StreamDataMutationsUnfreezeRollupArchiveArgsDto, StreamDataQueryAggregationsArgsDto, StreamDataQueryColumnInputDto, StreamDataQueryDto, StreamDataQueryDtoConnectionDto, StreamDataQueryDtoEdgeDto, StreamDataQueryRowCellsArgsDto, StreamDataQueryRowDto, StreamDataQueryRowDtoConnectionDto, StreamDataQueryRowDtoEdgeDto, StreamDataQueryRowsArgsDto, StreamDataTransientAggregationArgsDto, StreamDataTransientDownsamplingArgsDto, StreamDataTransientDto, StreamDataTransientGroupingAggregationArgsDto, StreamDataTransientQueryAggregationsArgsDto, StreamDataTransientQueryDto, StreamDataTransientQueryDtoConnectionDto, StreamDataTransientQueryDtoEdgeDto, StreamDataTransientQueryRowsArgsDto, StreamDataTransientSimpleArgsDto, SystemAggregationQueryColumnDto, SystemAggregationQueryColumnInputDto, SystemAggregationRtQueryAssociationsArgsDto, SystemAggregationRtQueryConfiguredByArgsDto, SystemAggregationRtQueryConnectionDto, SystemAggregationRtQueryDto, SystemAggregationRtQueryEdgeDto, SystemAggregationRtQueryInputDto, SystemAggregationRtQueryInputUpdateDto, SystemAggregationRtQueryMapsFromArgsDto, SystemAggregationRtQueryMapsToArgsDto, SystemAggregationRtQueryMutationsCreateArgsDto, SystemAggregationRtQueryMutationsDto, SystemAggregationRtQueryMutationsUpdateArgsDto, SystemAggregationRtQueryRelatesFromArgsDto, SystemAggregationRtQueryRelatesToArgsDto, SystemAggregationRtQueryTaggedByArgsDto, SystemAggregationRtQueryUpdateDto, SystemAggregationRtQueryUpdateMessageDto, SystemAggregationSdQueryAssociationsArgsDto, SystemAggregationSdQueryConfiguredByArgsDto, SystemAggregationSdQueryConnectionDto, SystemAggregationSdQueryDto, SystemAggregationSdQueryEdgeDto, SystemAggregationSdQueryInputDto, SystemAggregationSdQueryInputUpdateDto, SystemAggregationSdQueryMapsFromArgsDto, SystemAggregationSdQueryMapsToArgsDto, SystemAggregationSdQueryMutationsCreateArgsDto, SystemAggregationSdQueryMutationsDto, SystemAggregationSdQueryMutationsUpdateArgsDto, SystemAggregationSdQueryRelatesFromArgsDto, SystemAggregationSdQueryRelatesToArgsDto, SystemAggregationSdQueryTaggedByArgsDto, SystemAggregationSdQueryUpdateDto, SystemAggregationSdQueryUpdateMessageDto, SystemAttributeSearchFilterDto, SystemAttributeSearchFilterInputDto, SystemAutoIncrementAssociationsArgsDto, SystemAutoIncrementConfiguredByArgsDto, SystemAutoIncrementConnectionDto, SystemAutoIncrementDto, SystemAutoIncrementEdgeDto, SystemAutoIncrementInputDto, SystemAutoIncrementInputUpdateDto, SystemAutoIncrementMapsFromArgsDto, SystemAutoIncrementMapsToArgsDto, SystemAutoIncrementMutationsCreateArgsDto, SystemAutoIncrementMutationsDto, SystemAutoIncrementMutationsUpdateArgsDto, SystemAutoIncrementRelatesFromArgsDto, SystemAutoIncrementRelatesToArgsDto, SystemAutoIncrementTaggedByArgsDto, SystemAutoIncrementUpdateDto, SystemAutoIncrementUpdateMessageDto, SystemBotAttributeAggregateConfigurationAssociationsArgsDto, SystemBotAttributeAggregateConfigurationConfiguredByArgsDto, SystemBotAttributeAggregateConfigurationConfiguresArgsDto, SystemBotAttributeAggregateConfigurationConnectionDto, SystemBotAttributeAggregateConfigurationDto, SystemBotAttributeAggregateConfigurationEdgeDto, SystemBotAttributeAggregateConfigurationInputDto, SystemBotAttributeAggregateConfigurationInputUpdateDto, SystemBotAttributeAggregateConfigurationMapsFromArgsDto, SystemBotAttributeAggregateConfigurationMapsToArgsDto, SystemBotAttributeAggregateConfigurationMutationsCreateArgsDto, SystemBotAttributeAggregateConfigurationMutationsDto, SystemBotAttributeAggregateConfigurationMutationsUpdateArgsDto, SystemBotAttributeAggregateConfigurationRelatesFromArgsDto, SystemBotAttributeAggregateConfigurationRelatesToArgsDto, SystemBotAttributeAggregateConfigurationTaggedByArgsDto, SystemBotAttributeAggregateConfigurationUpdateDto, SystemBotAttributeAggregateConfigurationUpdateMessageDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionEdgeDto, SystemBotFixupAssociationsArgsDto, SystemBotFixupConfiguredByArgsDto, SystemBotFixupConnectionDto, SystemBotFixupDto, SystemBotFixupEdgeDto, SystemBotFixupInputDto, SystemBotFixupInputUpdateDto, SystemBotFixupMapsFromArgsDto, SystemBotFixupMapsToArgsDto, SystemBotFixupMutationsCreateArgsDto, SystemBotFixupMutationsDto, SystemBotFixupMutationsUpdateArgsDto, SystemBotFixupRelatesFromArgsDto, SystemBotFixupRelatesToArgsDto, SystemBotFixupTaggedByArgsDto, SystemBotFixupUpdateDto, SystemBotFixupUpdateMessageDto, SystemCommunicationAdapterAssociationsArgsDto, SystemCommunicationAdapterConfiguredByArgsDto, SystemCommunicationAdapterConnectionDto, SystemCommunicationAdapterDto, SystemCommunicationAdapterEdgeDto, SystemCommunicationAdapterExecutesArgsDto, SystemCommunicationAdapterExecutingAdapterArgsDto, SystemCommunicationAdapterHelmRepositoryArgsDto, SystemCommunicationAdapterInputDto, SystemCommunicationAdapterInputUpdateDto, SystemCommunicationAdapterManagedByArgsDto, SystemCommunicationAdapterMapsFromArgsDto, SystemCommunicationAdapterMapsToArgsDto, SystemCommunicationAdapterMutationsCreateArgsDto, SystemCommunicationAdapterMutationsDto, SystemCommunicationAdapterMutationsUpdateArgsDto, SystemCommunicationAdapterRelatesFromArgsDto, SystemCommunicationAdapterRelatesToArgsDto, SystemCommunicationAdapterTaggedByArgsDto, SystemCommunicationAdapterUpdateDto, SystemCommunicationAdapterUpdateMessageDto, SystemCommunicationAdapter_AdapterExecutionsUnionConnectionDto, SystemCommunicationAdapter_AdapterExecutionsUnionDto, SystemCommunicationAdapter_AdapterExecutionsUnionEdgeDto, SystemCommunicationAdapter_ExecutedByUnionConnectionDto, SystemCommunicationAdapter_ExecutedByUnionDto, SystemCommunicationAdapter_ExecutedByUnionEdgeDto, SystemCommunicationAiConfigurationAssociationsArgsDto, SystemCommunicationAiConfigurationConfiguredByArgsDto, SystemCommunicationAiConfigurationConnectionDto, SystemCommunicationAiConfigurationDto, SystemCommunicationAiConfigurationEdgeDto, SystemCommunicationAiConfigurationInputDto, SystemCommunicationAiConfigurationInputUpdateDto, SystemCommunicationAiConfigurationMapsFromArgsDto, SystemCommunicationAiConfigurationMapsToArgsDto, SystemCommunicationAiConfigurationMutationsCreateArgsDto, SystemCommunicationAiConfigurationMutationsDto, SystemCommunicationAiConfigurationMutationsUpdateArgsDto, SystemCommunicationAiConfigurationRelatesFromArgsDto, SystemCommunicationAiConfigurationRelatesToArgsDto, SystemCommunicationAiConfigurationTaggedByArgsDto, SystemCommunicationAiConfigurationUpdateDto, SystemCommunicationAiConfigurationUpdateMessageDto, SystemCommunicationAiConfigurationUsedByArgsDto, SystemCommunicationApplicationAssociationsArgsDto, SystemCommunicationApplicationConfiguredByArgsDto, SystemCommunicationApplicationConnectionDto, SystemCommunicationApplicationDto, SystemCommunicationApplicationEdgeDto, SystemCommunicationApplicationHelmRepositoryArgsDto, SystemCommunicationApplicationInputDto, SystemCommunicationApplicationInputUpdateDto, SystemCommunicationApplicationManagedByArgsDto, SystemCommunicationApplicationMapsFromArgsDto, SystemCommunicationApplicationMapsToArgsDto, SystemCommunicationApplicationMutationsCreateArgsDto, SystemCommunicationApplicationMutationsDto, SystemCommunicationApplicationMutationsUpdateArgsDto, SystemCommunicationApplicationRelatesFromArgsDto, SystemCommunicationApplicationRelatesToArgsDto, SystemCommunicationApplicationTaggedByArgsDto, SystemCommunicationApplicationUpdateDto, SystemCommunicationApplicationUpdateMessageDto, SystemCommunicationDataFlowAssociationsArgsDto, SystemCommunicationDataFlowChildrenArgsDto, SystemCommunicationDataFlowConfiguredByArgsDto, SystemCommunicationDataFlowConnectionDto, SystemCommunicationDataFlowDto, SystemCommunicationDataFlowEdgeDto, SystemCommunicationDataFlowInputDto, SystemCommunicationDataFlowInputUpdateDto, SystemCommunicationDataFlowMapsFromArgsDto, SystemCommunicationDataFlowMapsToArgsDto, SystemCommunicationDataFlowMutationsCreateArgsDto, SystemCommunicationDataFlowMutationsDto, SystemCommunicationDataFlowMutationsUpdateArgsDto, SystemCommunicationDataFlowRelatesFromArgsDto, SystemCommunicationDataFlowRelatesToArgsDto, SystemCommunicationDataFlowTaggedByArgsDto, SystemCommunicationDataFlowUpdateDto, SystemCommunicationDataFlowUpdateMessageDto, SystemCommunicationDataFlow_ParentUnionConnectionDto, SystemCommunicationDataFlow_ParentUnionDto, SystemCommunicationDataFlow_ParentUnionEdgeDto, SystemCommunicationDataPointDto, SystemCommunicationDataPointInputDto, SystemCommunicationDataPointMappingAssociationsArgsDto, SystemCommunicationDataPointMappingConfiguredByArgsDto, SystemCommunicationDataPointMappingConnectionDto, SystemCommunicationDataPointMappingDto, SystemCommunicationDataPointMappingEdgeDto, SystemCommunicationDataPointMappingInputDto, SystemCommunicationDataPointMappingInputUpdateDto, SystemCommunicationDataPointMappingMappedAsSourceArgsDto, SystemCommunicationDataPointMappingMappedAsTargetArgsDto, SystemCommunicationDataPointMappingMapsFromArgsDto, SystemCommunicationDataPointMappingMapsToArgsDto, SystemCommunicationDataPointMappingMutationsCreateArgsDto, SystemCommunicationDataPointMappingMutationsDto, SystemCommunicationDataPointMappingMutationsUpdateArgsDto, SystemCommunicationDataPointMappingRelatesFromArgsDto, SystemCommunicationDataPointMappingRelatesToArgsDto, SystemCommunicationDataPointMappingTaggedByArgsDto, SystemCommunicationDataPointMappingUpdateDto, SystemCommunicationDataPointMappingUpdateMessageDto, SystemCommunicationDataPointMapping_MapsFromUnionConnectionDto, SystemCommunicationDataPointMapping_MapsFromUnionDto, SystemCommunicationDataPointMapping_MapsFromUnionEdgeDto, SystemCommunicationDataPointMapping_MapsToUnionConnectionDto, SystemCommunicationDataPointMapping_MapsToUnionDto, SystemCommunicationDataPointMapping_MapsToUnionEdgeDto, SystemCommunicationDeployableEntityAssociationsArgsDto, SystemCommunicationDeployableEntityConfiguredByArgsDto, SystemCommunicationDeployableEntityConnectionDto, SystemCommunicationDeployableEntityDto, SystemCommunicationDeployableEntityEdgeDto, SystemCommunicationDeployableEntityInterfaceConfiguredByArgsDto, SystemCommunicationDeployableEntityInterfaceDto, SystemCommunicationDeployableEntityInterfaceMapsFromArgsDto, SystemCommunicationDeployableEntityInterfaceMapsToArgsDto, SystemCommunicationDeployableEntityInterfaceRelatesFromArgsDto, SystemCommunicationDeployableEntityInterfaceRelatesToArgsDto, SystemCommunicationDeployableEntityInterfaceTaggedByArgsDto, SystemCommunicationDeployableEntityMapsFromArgsDto, SystemCommunicationDeployableEntityMapsToArgsDto, SystemCommunicationDeployableEntityRelatesFromArgsDto, SystemCommunicationDeployableEntityRelatesToArgsDto, SystemCommunicationDeployableEntityTaggedByArgsDto, SystemCommunicationDeployableEntityUpdateDto, SystemCommunicationDeployableEntityUpdateMessageDto, SystemCommunicationDeployableWorkloadAssociationsArgsDto, SystemCommunicationDeployableWorkloadConfiguredByArgsDto, SystemCommunicationDeployableWorkloadConnectionDto, SystemCommunicationDeployableWorkloadDto, SystemCommunicationDeployableWorkloadEdgeDto, SystemCommunicationDeployableWorkloadHelmRepositoryArgsDto, SystemCommunicationDeployableWorkloadInterfaceConfiguredByArgsDto, SystemCommunicationDeployableWorkloadInterfaceDto, SystemCommunicationDeployableWorkloadInterfaceHelmRepositoryArgsDto, SystemCommunicationDeployableWorkloadInterfaceManagedByArgsDto, SystemCommunicationDeployableWorkloadInterfaceMapsFromArgsDto, SystemCommunicationDeployableWorkloadInterfaceMapsToArgsDto, SystemCommunicationDeployableWorkloadInterfaceRelatesFromArgsDto, SystemCommunicationDeployableWorkloadInterfaceRelatesToArgsDto, SystemCommunicationDeployableWorkloadInterfaceTaggedByArgsDto, SystemCommunicationDeployableWorkloadManagedByArgsDto, SystemCommunicationDeployableWorkloadMapsFromArgsDto, SystemCommunicationDeployableWorkloadMapsToArgsDto, SystemCommunicationDeployableWorkloadRelatesFromArgsDto, SystemCommunicationDeployableWorkloadRelatesToArgsDto, SystemCommunicationDeployableWorkloadTaggedByArgsDto, SystemCommunicationDeployableWorkloadUpdateDto, SystemCommunicationDeployableWorkloadUpdateMessageDto, SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionConnectionDto, SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionDto, SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionEdgeDto, SystemCommunicationDeployableWorkload_ManagesUnionConnectionDto, SystemCommunicationDeployableWorkload_ManagesUnionDto, SystemCommunicationDeployableWorkload_ManagesUnionEdgeDto, SystemCommunicationDiscordConfigurationAssociationsArgsDto, SystemCommunicationDiscordConfigurationConfiguredByArgsDto, SystemCommunicationDiscordConfigurationConnectionDto, SystemCommunicationDiscordConfigurationDto, SystemCommunicationDiscordConfigurationEdgeDto, SystemCommunicationDiscordConfigurationInputDto, SystemCommunicationDiscordConfigurationInputUpdateDto, SystemCommunicationDiscordConfigurationMapsFromArgsDto, SystemCommunicationDiscordConfigurationMapsToArgsDto, SystemCommunicationDiscordConfigurationMutationsCreateArgsDto, SystemCommunicationDiscordConfigurationMutationsDto, SystemCommunicationDiscordConfigurationMutationsUpdateArgsDto, SystemCommunicationDiscordConfigurationRelatesFromArgsDto, SystemCommunicationDiscordConfigurationRelatesToArgsDto, SystemCommunicationDiscordConfigurationTaggedByArgsDto, SystemCommunicationDiscordConfigurationUpdateDto, SystemCommunicationDiscordConfigurationUpdateMessageDto, SystemCommunicationDiscordConfigurationUsedByArgsDto, SystemCommunicationEMailReceiverConfigurationAssociationsArgsDto, SystemCommunicationEMailReceiverConfigurationConfiguredByArgsDto, SystemCommunicationEMailReceiverConfigurationConnectionDto, SystemCommunicationEMailReceiverConfigurationDto, SystemCommunicationEMailReceiverConfigurationEdgeDto, SystemCommunicationEMailReceiverConfigurationInputDto, SystemCommunicationEMailReceiverConfigurationInputUpdateDto, SystemCommunicationEMailReceiverConfigurationMapsFromArgsDto, SystemCommunicationEMailReceiverConfigurationMapsToArgsDto, SystemCommunicationEMailReceiverConfigurationMutationsCreateArgsDto, SystemCommunicationEMailReceiverConfigurationMutationsDto, SystemCommunicationEMailReceiverConfigurationMutationsUpdateArgsDto, SystemCommunicationEMailReceiverConfigurationRelatesFromArgsDto, SystemCommunicationEMailReceiverConfigurationRelatesToArgsDto, SystemCommunicationEMailReceiverConfigurationTaggedByArgsDto, SystemCommunicationEMailReceiverConfigurationUpdateDto, SystemCommunicationEMailReceiverConfigurationUpdateMessageDto, SystemCommunicationEMailReceiverConfigurationUsedByArgsDto, SystemCommunicationEMailSenderConfigurationAssociationsArgsDto, SystemCommunicationEMailSenderConfigurationConfiguredByArgsDto, SystemCommunicationEMailSenderConfigurationConnectionDto, SystemCommunicationEMailSenderConfigurationDto, SystemCommunicationEMailSenderConfigurationEdgeDto, SystemCommunicationEMailSenderConfigurationInputDto, SystemCommunicationEMailSenderConfigurationInputUpdateDto, SystemCommunicationEMailSenderConfigurationMapsFromArgsDto, SystemCommunicationEMailSenderConfigurationMapsToArgsDto, SystemCommunicationEMailSenderConfigurationMutationsCreateArgsDto, SystemCommunicationEMailSenderConfigurationMutationsDto, SystemCommunicationEMailSenderConfigurationMutationsUpdateArgsDto, SystemCommunicationEMailSenderConfigurationRelatesFromArgsDto, SystemCommunicationEMailSenderConfigurationRelatesToArgsDto, SystemCommunicationEMailSenderConfigurationTaggedByArgsDto, SystemCommunicationEMailSenderConfigurationUpdateDto, SystemCommunicationEMailSenderConfigurationUpdateMessageDto, SystemCommunicationEMailSenderConfigurationUsedByArgsDto, SystemCommunicationEdaConfigurationAssociationsArgsDto, SystemCommunicationEdaConfigurationConfiguredByArgsDto, SystemCommunicationEdaConfigurationConnectionDto, SystemCommunicationEdaConfigurationDto, SystemCommunicationEdaConfigurationEdgeDto, SystemCommunicationEdaConfigurationInputDto, SystemCommunicationEdaConfigurationInputUpdateDto, SystemCommunicationEdaConfigurationMapsFromArgsDto, SystemCommunicationEdaConfigurationMapsToArgsDto, SystemCommunicationEdaConfigurationMutationsCreateArgsDto, SystemCommunicationEdaConfigurationMutationsDto, SystemCommunicationEdaConfigurationMutationsUpdateArgsDto, SystemCommunicationEdaConfigurationRelatesFromArgsDto, SystemCommunicationEdaConfigurationRelatesToArgsDto, SystemCommunicationEdaConfigurationTaggedByArgsDto, SystemCommunicationEdaConfigurationUpdateDto, SystemCommunicationEdaConfigurationUpdateMessageDto, SystemCommunicationEdaConfigurationUsedByArgsDto, SystemCommunicationEnergyCommunityConfigurationAssociationsArgsDto, SystemCommunicationEnergyCommunityConfigurationConfiguredByArgsDto, SystemCommunicationEnergyCommunityConfigurationConnectionDto, SystemCommunicationEnergyCommunityConfigurationDto, SystemCommunicationEnergyCommunityConfigurationEdgeDto, SystemCommunicationEnergyCommunityConfigurationInputDto, SystemCommunicationEnergyCommunityConfigurationInputUpdateDto, SystemCommunicationEnergyCommunityConfigurationMapsFromArgsDto, SystemCommunicationEnergyCommunityConfigurationMapsToArgsDto, SystemCommunicationEnergyCommunityConfigurationMutationsCreateArgsDto, SystemCommunicationEnergyCommunityConfigurationMutationsDto, SystemCommunicationEnergyCommunityConfigurationMutationsUpdateArgsDto, SystemCommunicationEnergyCommunityConfigurationRelatesFromArgsDto, SystemCommunicationEnergyCommunityConfigurationRelatesToArgsDto, SystemCommunicationEnergyCommunityConfigurationTaggedByArgsDto, SystemCommunicationEnergyCommunityConfigurationUpdateDto, SystemCommunicationEnergyCommunityConfigurationUpdateMessageDto, SystemCommunicationEnergyCommunityConfigurationUsedByArgsDto, SystemCommunicationFinApiConfigurationAssociationsArgsDto, SystemCommunicationFinApiConfigurationConfiguredByArgsDto, SystemCommunicationFinApiConfigurationConnectionDto, SystemCommunicationFinApiConfigurationDto, SystemCommunicationFinApiConfigurationEdgeDto, SystemCommunicationFinApiConfigurationInputDto, SystemCommunicationFinApiConfigurationInputUpdateDto, SystemCommunicationFinApiConfigurationMapsFromArgsDto, SystemCommunicationFinApiConfigurationMapsToArgsDto, SystemCommunicationFinApiConfigurationMutationsCreateArgsDto, SystemCommunicationFinApiConfigurationMutationsDto, SystemCommunicationFinApiConfigurationMutationsUpdateArgsDto, SystemCommunicationFinApiConfigurationRelatesFromArgsDto, SystemCommunicationFinApiConfigurationRelatesToArgsDto, SystemCommunicationFinApiConfigurationTaggedByArgsDto, SystemCommunicationFinApiConfigurationUpdateDto, SystemCommunicationFinApiConfigurationUpdateMessageDto, SystemCommunicationFinApiConfigurationUsedByArgsDto, SystemCommunicationGrafanaConfigurationAssociationsArgsDto, SystemCommunicationGrafanaConfigurationConfiguredByArgsDto, SystemCommunicationGrafanaConfigurationConnectionDto, SystemCommunicationGrafanaConfigurationDto, SystemCommunicationGrafanaConfigurationEdgeDto, SystemCommunicationGrafanaConfigurationInputDto, SystemCommunicationGrafanaConfigurationInputUpdateDto, SystemCommunicationGrafanaConfigurationMapsFromArgsDto, SystemCommunicationGrafanaConfigurationMapsToArgsDto, SystemCommunicationGrafanaConfigurationMutationsCreateArgsDto, SystemCommunicationGrafanaConfigurationMutationsDto, SystemCommunicationGrafanaConfigurationMutationsUpdateArgsDto, SystemCommunicationGrafanaConfigurationRelatesFromArgsDto, SystemCommunicationGrafanaConfigurationRelatesToArgsDto, SystemCommunicationGrafanaConfigurationTaggedByArgsDto, SystemCommunicationGrafanaConfigurationUpdateDto, SystemCommunicationGrafanaConfigurationUpdateMessageDto, SystemCommunicationGrafanaConfigurationUsedByArgsDto, SystemCommunicationHelmRepositoryConfigurationAssociationsArgsDto, SystemCommunicationHelmRepositoryConfigurationConfiguredByArgsDto, SystemCommunicationHelmRepositoryConfigurationConnectionDto, SystemCommunicationHelmRepositoryConfigurationDto, SystemCommunicationHelmRepositoryConfigurationEdgeDto, SystemCommunicationHelmRepositoryConfigurationHelmRepositoryUsedByArgsDto, SystemCommunicationHelmRepositoryConfigurationInputDto, SystemCommunicationHelmRepositoryConfigurationInputUpdateDto, SystemCommunicationHelmRepositoryConfigurationMapsFromArgsDto, SystemCommunicationHelmRepositoryConfigurationMapsToArgsDto, SystemCommunicationHelmRepositoryConfigurationMutationsCreateArgsDto, SystemCommunicationHelmRepositoryConfigurationMutationsDto, SystemCommunicationHelmRepositoryConfigurationMutationsUpdateArgsDto, SystemCommunicationHelmRepositoryConfigurationRelatesFromArgsDto, SystemCommunicationHelmRepositoryConfigurationRelatesToArgsDto, SystemCommunicationHelmRepositoryConfigurationTaggedByArgsDto, SystemCommunicationHelmRepositoryConfigurationUpdateDto, SystemCommunicationHelmRepositoryConfigurationUpdateMessageDto, SystemCommunicationHelmRepositoryConfigurationUsedByArgsDto, SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionConnectionDto, SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionDto, SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionEdgeDto, SystemCommunicationLoxoneConfigurationAssociationsArgsDto, SystemCommunicationLoxoneConfigurationConfiguredByArgsDto, SystemCommunicationLoxoneConfigurationConnectionDto, SystemCommunicationLoxoneConfigurationDto, SystemCommunicationLoxoneConfigurationEdgeDto, SystemCommunicationLoxoneConfigurationInputDto, SystemCommunicationLoxoneConfigurationInputUpdateDto, SystemCommunicationLoxoneConfigurationMapsFromArgsDto, SystemCommunicationLoxoneConfigurationMapsToArgsDto, SystemCommunicationLoxoneConfigurationMutationsCreateArgsDto, SystemCommunicationLoxoneConfigurationMutationsDto, SystemCommunicationLoxoneConfigurationMutationsUpdateArgsDto, SystemCommunicationLoxoneConfigurationRelatesFromArgsDto, SystemCommunicationLoxoneConfigurationRelatesToArgsDto, SystemCommunicationLoxoneConfigurationTaggedByArgsDto, SystemCommunicationLoxoneConfigurationUpdateDto, SystemCommunicationLoxoneConfigurationUpdateMessageDto, SystemCommunicationLoxoneConfigurationUsedByArgsDto, SystemCommunicationMappingTargetDto, SystemCommunicationMappingTargetInputDto, SystemCommunicationMicrosoftGraphConfigurationAssociationsArgsDto, SystemCommunicationMicrosoftGraphConfigurationConfiguredByArgsDto, SystemCommunicationMicrosoftGraphConfigurationConnectionDto, SystemCommunicationMicrosoftGraphConfigurationDto, SystemCommunicationMicrosoftGraphConfigurationEdgeDto, SystemCommunicationMicrosoftGraphConfigurationInputDto, SystemCommunicationMicrosoftGraphConfigurationInputUpdateDto, SystemCommunicationMicrosoftGraphConfigurationMapsFromArgsDto, SystemCommunicationMicrosoftGraphConfigurationMapsToArgsDto, SystemCommunicationMicrosoftGraphConfigurationMutationsCreateArgsDto, SystemCommunicationMicrosoftGraphConfigurationMutationsDto, SystemCommunicationMicrosoftGraphConfigurationMutationsUpdateArgsDto, SystemCommunicationMicrosoftGraphConfigurationRelatesFromArgsDto, SystemCommunicationMicrosoftGraphConfigurationRelatesToArgsDto, SystemCommunicationMicrosoftGraphConfigurationTaggedByArgsDto, SystemCommunicationMicrosoftGraphConfigurationUpdateDto, SystemCommunicationMicrosoftGraphConfigurationUpdateMessageDto, SystemCommunicationMicrosoftGraphConfigurationUsedByArgsDto, SystemCommunicationPipelineAssociationsArgsDto, SystemCommunicationPipelineConfiguredByArgsDto, SystemCommunicationPipelineConnectionDto, SystemCommunicationPipelineDto, SystemCommunicationPipelineEdgeDto, SystemCommunicationPipelineExecutedByArgsDto, SystemCommunicationPipelineExecutedPipelineArgsDto, SystemCommunicationPipelineExecutionAdapterExecutionsArgsDto, SystemCommunicationPipelineExecutionAssociationsArgsDto, SystemCommunicationPipelineExecutionConfiguredByArgsDto, SystemCommunicationPipelineExecutionConnectionDto, SystemCommunicationPipelineExecutionDto, SystemCommunicationPipelineExecutionEdgeDto, SystemCommunicationPipelineExecutionInputDto, SystemCommunicationPipelineExecutionInputUpdateDto, SystemCommunicationPipelineExecutionMapsFromArgsDto, SystemCommunicationPipelineExecutionMapsToArgsDto, SystemCommunicationPipelineExecutionMutationsCreateArgsDto, SystemCommunicationPipelineExecutionMutationsDto, SystemCommunicationPipelineExecutionMutationsUpdateArgsDto, SystemCommunicationPipelineExecutionPipelineExecutionsArgsDto, SystemCommunicationPipelineExecutionRelatesFromArgsDto, SystemCommunicationPipelineExecutionRelatesToArgsDto, SystemCommunicationPipelineExecutionTaggedByArgsDto, SystemCommunicationPipelineExecutionUpdateDto, SystemCommunicationPipelineExecutionUpdateMessageDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnectionDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionEdgeDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnectionDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionEdgeDto, SystemCommunicationPipelineInputDto, SystemCommunicationPipelineInputUpdateDto, SystemCommunicationPipelineIsUsingArgsDto, SystemCommunicationPipelineMapsFromArgsDto, SystemCommunicationPipelineMapsToArgsDto, SystemCommunicationPipelineMutationsCreateArgsDto, SystemCommunicationPipelineMutationsDto, SystemCommunicationPipelineMutationsUpdateArgsDto, SystemCommunicationPipelineParentArgsDto, SystemCommunicationPipelineReceivesDataFromArgsDto, SystemCommunicationPipelineRelatesFromArgsDto, SystemCommunicationPipelineRelatesToArgsDto, SystemCommunicationPipelineSendsDataToArgsDto, SystemCommunicationPipelineStatisticsAssociationsArgsDto, SystemCommunicationPipelineStatisticsConfiguredByArgsDto, SystemCommunicationPipelineStatisticsConnectionDto, SystemCommunicationPipelineStatisticsDto, SystemCommunicationPipelineStatisticsEdgeDto, SystemCommunicationPipelineStatisticsForPipelineArgsDto, SystemCommunicationPipelineStatisticsInputDto, SystemCommunicationPipelineStatisticsInputUpdateDto, SystemCommunicationPipelineStatisticsMapsFromArgsDto, SystemCommunicationPipelineStatisticsMapsToArgsDto, SystemCommunicationPipelineStatisticsMutationsCreateArgsDto, SystemCommunicationPipelineStatisticsMutationsDto, SystemCommunicationPipelineStatisticsMutationsUpdateArgsDto, SystemCommunicationPipelineStatisticsPipelineStatisticsArgsDto, SystemCommunicationPipelineStatisticsRelatesFromArgsDto, SystemCommunicationPipelineStatisticsRelatesToArgsDto, SystemCommunicationPipelineStatisticsTaggedByArgsDto, SystemCommunicationPipelineStatisticsUpdateDto, SystemCommunicationPipelineStatisticsUpdateMessageDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnectionDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionEdgeDto, SystemCommunicationPipelineTaggedByArgsDto, SystemCommunicationPipelineTriggerAssociationsArgsDto, SystemCommunicationPipelineTriggerConfiguredByArgsDto, SystemCommunicationPipelineTriggerConnectionDto, SystemCommunicationPipelineTriggerDto, SystemCommunicationPipelineTriggerEdgeDto, SystemCommunicationPipelineTriggerInputDto, SystemCommunicationPipelineTriggerInputUpdateDto, SystemCommunicationPipelineTriggerMapsFromArgsDto, SystemCommunicationPipelineTriggerMapsToArgsDto, SystemCommunicationPipelineTriggerMutationsCreateArgsDto, SystemCommunicationPipelineTriggerMutationsDto, SystemCommunicationPipelineTriggerMutationsUpdateArgsDto, SystemCommunicationPipelineTriggerParentArgsDto, SystemCommunicationPipelineTriggerRelatesFromArgsDto, SystemCommunicationPipelineTriggerRelatesToArgsDto, SystemCommunicationPipelineTriggerTaggedByArgsDto, SystemCommunicationPipelineTriggerTriggeredByArgsDto, SystemCommunicationPipelineTriggerUpdateDto, SystemCommunicationPipelineTriggerUpdateMessageDto, SystemCommunicationPipelineTrigger_TriggersUnionConnectionDto, SystemCommunicationPipelineTrigger_TriggersUnionDto, SystemCommunicationPipelineTrigger_TriggersUnionEdgeDto, SystemCommunicationPipelineTriggersArgsDto, SystemCommunicationPipelineUpdateDto, SystemCommunicationPipelineUpdateMessageDto, SystemCommunicationPipeline_ChildrenUnionConnectionDto, SystemCommunicationPipeline_ChildrenUnionDto, SystemCommunicationPipeline_ChildrenUnionEdgeDto, SystemCommunicationPipeline_ExecutesUnionConnectionDto, SystemCommunicationPipeline_ExecutesUnionDto, SystemCommunicationPipeline_ExecutesUnionEdgeDto, SystemCommunicationPipeline_PipelineExecutionsUnionConnectionDto, SystemCommunicationPipeline_PipelineExecutionsUnionDto, SystemCommunicationPipeline_PipelineExecutionsUnionEdgeDto, SystemCommunicationPipeline_PipelineStatisticsUnionConnectionDto, SystemCommunicationPipeline_PipelineStatisticsUnionDto, SystemCommunicationPipeline_PipelineStatisticsUnionEdgeDto, SystemCommunicationPipeline_ReceivesDataFromUnionConnectionDto, SystemCommunicationPipeline_ReceivesDataFromUnionDto, SystemCommunicationPipeline_ReceivesDataFromUnionEdgeDto, SystemCommunicationPipeline_SendsDataToUnionConnectionDto, SystemCommunicationPipeline_SendsDataToUnionDto, SystemCommunicationPipeline_SendsDataToUnionEdgeDto, SystemCommunicationPipeline_TriggeredByUnionConnectionDto, SystemCommunicationPipeline_TriggeredByUnionDto, SystemCommunicationPipeline_TriggeredByUnionEdgeDto, SystemCommunicationPipeline_UsedByUnionConnectionDto, SystemCommunicationPipeline_UsedByUnionDto, SystemCommunicationPipeline_UsedByUnionEdgeDto, SystemCommunicationPoolAssociationsArgsDto, SystemCommunicationPoolConfiguredByArgsDto, SystemCommunicationPoolConnectionDto, SystemCommunicationPoolDto, SystemCommunicationPoolEdgeDto, SystemCommunicationPoolInputDto, SystemCommunicationPoolInputUpdateDto, SystemCommunicationPoolManagesArgsDto, SystemCommunicationPoolMapsFromArgsDto, SystemCommunicationPoolMapsToArgsDto, SystemCommunicationPoolMutationsCreateArgsDto, SystemCommunicationPoolMutationsDto, SystemCommunicationPoolMutationsUpdateArgsDto, SystemCommunicationPoolRelatesFromArgsDto, SystemCommunicationPoolRelatesToArgsDto, SystemCommunicationPoolTaggedByArgsDto, SystemCommunicationPoolUpdateDto, SystemCommunicationPoolUpdateMessageDto, SystemCommunicationPool_ManagedByUnionConnectionDto, SystemCommunicationPool_ManagedByUnionDto, SystemCommunicationPool_ManagedByUnionEdgeDto, SystemCommunicationSapConfigurationAssociationsArgsDto, SystemCommunicationSapConfigurationConfiguredByArgsDto, SystemCommunicationSapConfigurationConnectionDto, SystemCommunicationSapConfigurationDto, SystemCommunicationSapConfigurationEdgeDto, SystemCommunicationSapConfigurationInputDto, SystemCommunicationSapConfigurationInputUpdateDto, SystemCommunicationSapConfigurationMapsFromArgsDto, SystemCommunicationSapConfigurationMapsToArgsDto, SystemCommunicationSapConfigurationMutationsCreateArgsDto, SystemCommunicationSapConfigurationMutationsDto, SystemCommunicationSapConfigurationMutationsUpdateArgsDto, SystemCommunicationSapConfigurationRelatesFromArgsDto, SystemCommunicationSapConfigurationRelatesToArgsDto, SystemCommunicationSapConfigurationTaggedByArgsDto, SystemCommunicationSapConfigurationUpdateDto, SystemCommunicationSapConfigurationUpdateMessageDto, SystemCommunicationSapConfigurationUsedByArgsDto, SystemCommunicationServiceAccountConfigurationAssociationsArgsDto, SystemCommunicationServiceAccountConfigurationConfiguredByArgsDto, SystemCommunicationServiceAccountConfigurationConnectionDto, SystemCommunicationServiceAccountConfigurationDto, SystemCommunicationServiceAccountConfigurationEdgeDto, SystemCommunicationServiceAccountConfigurationInputDto, SystemCommunicationServiceAccountConfigurationInputUpdateDto, SystemCommunicationServiceAccountConfigurationMapsFromArgsDto, SystemCommunicationServiceAccountConfigurationMapsToArgsDto, SystemCommunicationServiceAccountConfigurationMutationsCreateArgsDto, SystemCommunicationServiceAccountConfigurationMutationsDto, SystemCommunicationServiceAccountConfigurationMutationsUpdateArgsDto, SystemCommunicationServiceAccountConfigurationRelatesFromArgsDto, SystemCommunicationServiceAccountConfigurationRelatesToArgsDto, SystemCommunicationServiceAccountConfigurationTaggedByArgsDto, SystemCommunicationServiceAccountConfigurationUpdateDto, SystemCommunicationServiceAccountConfigurationUpdateMessageDto, SystemCommunicationServiceAccountConfigurationUsedByArgsDto, SystemCommunicationSftpConfigurationAssociationsArgsDto, SystemCommunicationSftpConfigurationConfiguredByArgsDto, SystemCommunicationSftpConfigurationConnectionDto, SystemCommunicationSftpConfigurationDto, SystemCommunicationSftpConfigurationEdgeDto, SystemCommunicationSftpConfigurationInputDto, SystemCommunicationSftpConfigurationInputUpdateDto, SystemCommunicationSftpConfigurationMapsFromArgsDto, SystemCommunicationSftpConfigurationMapsToArgsDto, SystemCommunicationSftpConfigurationMutationsCreateArgsDto, SystemCommunicationSftpConfigurationMutationsDto, SystemCommunicationSftpConfigurationMutationsUpdateArgsDto, SystemCommunicationSftpConfigurationRelatesFromArgsDto, SystemCommunicationSftpConfigurationRelatesToArgsDto, SystemCommunicationSftpConfigurationTaggedByArgsDto, SystemCommunicationSftpConfigurationUpdateDto, SystemCommunicationSftpConfigurationUpdateMessageDto, SystemCommunicationSftpConfigurationUsedByArgsDto, SystemCommunicationTagAssociationsArgsDto, SystemCommunicationTagConfiguredByArgsDto, SystemCommunicationTagConnectionDto, SystemCommunicationTagDto, SystemCommunicationTagEdgeDto, SystemCommunicationTagInputDto, SystemCommunicationTagInputUpdateDto, SystemCommunicationTagIsTaggingArgsDto, SystemCommunicationTagMapsFromArgsDto, SystemCommunicationTagMapsToArgsDto, SystemCommunicationTagMutationsCreateArgsDto, SystemCommunicationTagMutationsDto, SystemCommunicationTagMutationsUpdateArgsDto, SystemCommunicationTagRelatesFromArgsDto, SystemCommunicationTagRelatesToArgsDto, SystemCommunicationTagTaggedByArgsDto, SystemCommunicationTagUpdateDto, SystemCommunicationTagUpdateMessageDto, SystemCommunicationTag_TaggedByUnionConnectionDto, SystemCommunicationTag_TaggedByUnionDto, SystemCommunicationTag_TaggedByUnionEdgeDto, SystemCommunicationUiThemeColorsDto, SystemCommunicationUiThemeColorsInputDto, SystemCommunicationValueOverrideDto, SystemCommunicationValueOverrideInputDto, SystemConfigurationAssociationsArgsDto, SystemConfigurationConfiguredByArgsDto, SystemConfigurationConnectionDto, SystemConfigurationDto, SystemConfigurationEdgeDto, SystemConfigurationInterfaceConfiguredByArgsDto, SystemConfigurationInterfaceDto, SystemConfigurationInterfaceMapsFromArgsDto, SystemConfigurationInterfaceMapsToArgsDto, SystemConfigurationInterfaceRelatesFromArgsDto, SystemConfigurationInterfaceRelatesToArgsDto, SystemConfigurationInterfaceTaggedByArgsDto, SystemConfigurationInterfaceUsedByArgsDto, SystemConfigurationMapsFromArgsDto, SystemConfigurationMapsToArgsDto, SystemConfigurationRelatesFromArgsDto, SystemConfigurationRelatesToArgsDto, SystemConfigurationTaggedByArgsDto, SystemConfigurationUpdateDto, SystemConfigurationUpdateMessageDto, SystemConfigurationUsedByArgsDto, SystemConfiguration_IsUsingUnionConnectionDto, SystemConfiguration_IsUsingUnionDto, SystemConfiguration_IsUsingUnionEdgeDto, SystemDownsamplingSdQueryAssociationsArgsDto, SystemDownsamplingSdQueryConfiguredByArgsDto, SystemDownsamplingSdQueryConnectionDto, SystemDownsamplingSdQueryDto, SystemDownsamplingSdQueryEdgeDto, SystemDownsamplingSdQueryInputDto, SystemDownsamplingSdQueryInputUpdateDto, SystemDownsamplingSdQueryMapsFromArgsDto, SystemDownsamplingSdQueryMapsToArgsDto, SystemDownsamplingSdQueryMutationsCreateArgsDto, SystemDownsamplingSdQueryMutationsDto, SystemDownsamplingSdQueryMutationsUpdateArgsDto, SystemDownsamplingSdQueryRelatesFromArgsDto, SystemDownsamplingSdQueryRelatesToArgsDto, SystemDownsamplingSdQueryTaggedByArgsDto, SystemDownsamplingSdQueryUpdateDto, SystemDownsamplingSdQueryUpdateMessageDto, SystemEntityAssociationsArgsDto, SystemEntityConfiguredByArgsDto, SystemEntityConnectionDto, SystemEntityDto, SystemEntityEdgeDto, SystemEntityInterfaceConfiguredByArgsDto, SystemEntityInterfaceDto, SystemEntityInterfaceMapsFromArgsDto, SystemEntityInterfaceMapsToArgsDto, SystemEntityInterfaceRelatesFromArgsDto, SystemEntityInterfaceRelatesToArgsDto, SystemEntityInterfaceTaggedByArgsDto, SystemEntityMapsFromArgsDto, SystemEntityMapsToArgsDto, SystemEntityRelatesFromArgsDto, SystemEntityRelatesToArgsDto, SystemEntityTaggedByArgsDto, SystemEntityUpdateDto, SystemEntityUpdateMessageDto, SystemEntity_ConfiguresUnionConnectionDto, SystemEntity_ConfiguresUnionDto, SystemEntity_ConfiguresUnionEdgeDto, SystemEntity_IsTaggingUnionConnectionDto, SystemEntity_IsTaggingUnionDto, SystemEntity_IsTaggingUnionEdgeDto, SystemEntity_MappedAsSourceUnionConnectionDto, SystemEntity_MappedAsSourceUnionDto, SystemEntity_MappedAsSourceUnionEdgeDto, SystemEntity_MappedAsTargetUnionConnectionDto, SystemEntity_MappedAsTargetUnionDto, SystemEntity_MappedAsTargetUnionEdgeDto, SystemEntity_RelatesFromUnionConnectionDto, SystemEntity_RelatesFromUnionDto, SystemEntity_RelatesFromUnionEdgeDto, SystemEntity_RelatesToUnionConnectionDto, SystemEntity_RelatesToUnionDto, SystemEntity_RelatesToUnionEdgeDto, SystemFieldFilterDto, SystemFieldFilterInputDto, SystemGroupingAggregationRtQueryAssociationsArgsDto, SystemGroupingAggregationRtQueryConfiguredByArgsDto, SystemGroupingAggregationRtQueryConnectionDto, SystemGroupingAggregationRtQueryDto, SystemGroupingAggregationRtQueryEdgeDto, SystemGroupingAggregationRtQueryInputDto, SystemGroupingAggregationRtQueryInputUpdateDto, SystemGroupingAggregationRtQueryMapsFromArgsDto, SystemGroupingAggregationRtQueryMapsToArgsDto, SystemGroupingAggregationRtQueryMutationsCreateArgsDto, SystemGroupingAggregationRtQueryMutationsDto, SystemGroupingAggregationRtQueryMutationsUpdateArgsDto, SystemGroupingAggregationRtQueryRelatesFromArgsDto, SystemGroupingAggregationRtQueryRelatesToArgsDto, SystemGroupingAggregationRtQueryTaggedByArgsDto, SystemGroupingAggregationRtQueryUpdateDto, SystemGroupingAggregationRtQueryUpdateMessageDto, SystemGroupingAggregationSdQueryAssociationsArgsDto, SystemGroupingAggregationSdQueryConfiguredByArgsDto, SystemGroupingAggregationSdQueryConnectionDto, SystemGroupingAggregationSdQueryDto, SystemGroupingAggregationSdQueryEdgeDto, SystemGroupingAggregationSdQueryInputDto, SystemGroupingAggregationSdQueryInputUpdateDto, SystemGroupingAggregationSdQueryMapsFromArgsDto, SystemGroupingAggregationSdQueryMapsToArgsDto, SystemGroupingAggregationSdQueryMutationsCreateArgsDto, SystemGroupingAggregationSdQueryMutationsDto, SystemGroupingAggregationSdQueryMutationsUpdateArgsDto, SystemGroupingAggregationSdQueryRelatesFromArgsDto, SystemGroupingAggregationSdQueryRelatesToArgsDto, SystemGroupingAggregationSdQueryTaggedByArgsDto, SystemGroupingAggregationSdQueryUpdateDto, SystemGroupingAggregationSdQueryUpdateMessageDto, SystemIdentityApiResourceAssociationsArgsDto, SystemIdentityApiResourceConfiguredByArgsDto, SystemIdentityApiResourceConnectionDto, SystemIdentityApiResourceDto, SystemIdentityApiResourceEdgeDto, SystemIdentityApiResourceInputDto, SystemIdentityApiResourceInputUpdateDto, SystemIdentityApiResourceMapsFromArgsDto, SystemIdentityApiResourceMapsToArgsDto, SystemIdentityApiResourceMutationsCreateArgsDto, SystemIdentityApiResourceMutationsDto, SystemIdentityApiResourceMutationsUpdateArgsDto, SystemIdentityApiResourceRelatesFromArgsDto, SystemIdentityApiResourceRelatesToArgsDto, SystemIdentityApiResourceTaggedByArgsDto, SystemIdentityApiResourceUpdateDto, SystemIdentityApiResourceUpdateMessageDto, SystemIdentityApiScopeAssociationsArgsDto, SystemIdentityApiScopeConfiguredByArgsDto, SystemIdentityApiScopeConnectionDto, SystemIdentityApiScopeDto, SystemIdentityApiScopeEdgeDto, SystemIdentityApiScopeInputDto, SystemIdentityApiScopeInputUpdateDto, SystemIdentityApiScopeMapsFromArgsDto, SystemIdentityApiScopeMapsToArgsDto, SystemIdentityApiScopeMutationsCreateArgsDto, SystemIdentityApiScopeMutationsDto, SystemIdentityApiScopeMutationsUpdateArgsDto, SystemIdentityApiScopeRelatesFromArgsDto, SystemIdentityApiScopeRelatesToArgsDto, SystemIdentityApiScopeTaggedByArgsDto, SystemIdentityApiScopeUpdateDto, SystemIdentityApiScopeUpdateMessageDto, SystemIdentityAzureEntraIdIdentityProviderAssociationsArgsDto, SystemIdentityAzureEntraIdIdentityProviderConfiguredByArgsDto, SystemIdentityAzureEntraIdIdentityProviderConnectionDto, SystemIdentityAzureEntraIdIdentityProviderDto, SystemIdentityAzureEntraIdIdentityProviderEdgeDto, SystemIdentityAzureEntraIdIdentityProviderInputDto, SystemIdentityAzureEntraIdIdentityProviderInputUpdateDto, SystemIdentityAzureEntraIdIdentityProviderMapsFromArgsDto, SystemIdentityAzureEntraIdIdentityProviderMapsToArgsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsCreateArgsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsUpdateArgsDto, SystemIdentityAzureEntraIdIdentityProviderRelatesFromArgsDto, SystemIdentityAzureEntraIdIdentityProviderRelatesToArgsDto, SystemIdentityAzureEntraIdIdentityProviderTaggedByArgsDto, SystemIdentityAzureEntraIdIdentityProviderUpdateDto, SystemIdentityAzureEntraIdIdentityProviderUpdateMessageDto, SystemIdentityClientAssociationsArgsDto, SystemIdentityClientClaimDto, SystemIdentityClientClaimInputDto, SystemIdentityClientConfiguredByArgsDto, SystemIdentityClientConnectionDto, SystemIdentityClientDto, SystemIdentityClientEdgeDto, SystemIdentityClientInputDto, SystemIdentityClientInputUpdateDto, SystemIdentityClientMapsFromArgsDto, SystemIdentityClientMapsToArgsDto, SystemIdentityClientMutationsCreateArgsDto, SystemIdentityClientMutationsDto, SystemIdentityClientMutationsUpdateArgsDto, SystemIdentityClientRelatesFromArgsDto, SystemIdentityClientRelatesToArgsDto, SystemIdentityClientTaggedByArgsDto, SystemIdentityClientUpdateDto, SystemIdentityClientUpdateMessageDto, SystemIdentityEmailDomainGroupRuleAssociationsArgsDto, SystemIdentityEmailDomainGroupRuleConfiguredByArgsDto, SystemIdentityEmailDomainGroupRuleConnectionDto, SystemIdentityEmailDomainGroupRuleDto, SystemIdentityEmailDomainGroupRuleEdgeDto, SystemIdentityEmailDomainGroupRuleInputDto, SystemIdentityEmailDomainGroupRuleInputUpdateDto, SystemIdentityEmailDomainGroupRuleMapsFromArgsDto, SystemIdentityEmailDomainGroupRuleMapsToArgsDto, SystemIdentityEmailDomainGroupRuleMutationsCreateArgsDto, SystemIdentityEmailDomainGroupRuleMutationsDto, SystemIdentityEmailDomainGroupRuleMutationsUpdateArgsDto, SystemIdentityEmailDomainGroupRuleRelatesFromArgsDto, SystemIdentityEmailDomainGroupRuleRelatesToArgsDto, SystemIdentityEmailDomainGroupRuleTaggedByArgsDto, SystemIdentityEmailDomainGroupRuleUpdateDto, SystemIdentityEmailDomainGroupRuleUpdateMessageDto, SystemIdentityExternalTenantUserMappingAssociationsArgsDto, SystemIdentityExternalTenantUserMappingConfiguredByArgsDto, SystemIdentityExternalTenantUserMappingConnectionDto, SystemIdentityExternalTenantUserMappingDto, SystemIdentityExternalTenantUserMappingEdgeDto, SystemIdentityExternalTenantUserMappingInputDto, SystemIdentityExternalTenantUserMappingInputUpdateDto, SystemIdentityExternalTenantUserMappingMapsFromArgsDto, SystemIdentityExternalTenantUserMappingMapsToArgsDto, SystemIdentityExternalTenantUserMappingMemberOfGroupsArgsDto, SystemIdentityExternalTenantUserMappingMutationsCreateArgsDto, SystemIdentityExternalTenantUserMappingMutationsDto, SystemIdentityExternalTenantUserMappingMutationsUpdateArgsDto, SystemIdentityExternalTenantUserMappingRelatesFromArgsDto, SystemIdentityExternalTenantUserMappingRelatesToArgsDto, SystemIdentityExternalTenantUserMappingTaggedByArgsDto, SystemIdentityExternalTenantUserMappingUpdateDto, SystemIdentityExternalTenantUserMappingUpdateMessageDto, SystemIdentityFacebookIdentityProviderAssociationsArgsDto, SystemIdentityFacebookIdentityProviderConfiguredByArgsDto, SystemIdentityFacebookIdentityProviderConnectionDto, SystemIdentityFacebookIdentityProviderDto, SystemIdentityFacebookIdentityProviderEdgeDto, SystemIdentityFacebookIdentityProviderInputDto, SystemIdentityFacebookIdentityProviderInputUpdateDto, SystemIdentityFacebookIdentityProviderMapsFromArgsDto, SystemIdentityFacebookIdentityProviderMapsToArgsDto, SystemIdentityFacebookIdentityProviderMutationsCreateArgsDto, SystemIdentityFacebookIdentityProviderMutationsDto, SystemIdentityFacebookIdentityProviderMutationsUpdateArgsDto, SystemIdentityFacebookIdentityProviderRelatesFromArgsDto, SystemIdentityFacebookIdentityProviderRelatesToArgsDto, SystemIdentityFacebookIdentityProviderTaggedByArgsDto, SystemIdentityFacebookIdentityProviderUpdateDto, SystemIdentityFacebookIdentityProviderUpdateMessageDto, SystemIdentityGoogleIdentityProviderAssociationsArgsDto, SystemIdentityGoogleIdentityProviderConfiguredByArgsDto, SystemIdentityGoogleIdentityProviderConnectionDto, SystemIdentityGoogleIdentityProviderDto, SystemIdentityGoogleIdentityProviderEdgeDto, SystemIdentityGoogleIdentityProviderInputDto, SystemIdentityGoogleIdentityProviderInputUpdateDto, SystemIdentityGoogleIdentityProviderMapsFromArgsDto, SystemIdentityGoogleIdentityProviderMapsToArgsDto, SystemIdentityGoogleIdentityProviderMutationsCreateArgsDto, SystemIdentityGoogleIdentityProviderMutationsDto, SystemIdentityGoogleIdentityProviderMutationsUpdateArgsDto, SystemIdentityGoogleIdentityProviderRelatesFromArgsDto, SystemIdentityGoogleIdentityProviderRelatesToArgsDto, SystemIdentityGoogleIdentityProviderTaggedByArgsDto, SystemIdentityGoogleIdentityProviderUpdateDto, SystemIdentityGoogleIdentityProviderUpdateMessageDto, SystemIdentityGroupAssignedRolesArgsDto, SystemIdentityGroupAssociationsArgsDto, SystemIdentityGroupChildGroupsArgsDto, SystemIdentityGroupConfiguredByArgsDto, SystemIdentityGroupConnectionDto, SystemIdentityGroupDto, SystemIdentityGroupEdgeDto, SystemIdentityGroupInputDto, SystemIdentityGroupInputUpdateDto, SystemIdentityGroupMapsFromArgsDto, SystemIdentityGroupMapsToArgsDto, SystemIdentityGroupMembersArgsDto, SystemIdentityGroupMutationsCreateArgsDto, SystemIdentityGroupMutationsDto, SystemIdentityGroupMutationsUpdateArgsDto, SystemIdentityGroupParentGroupsArgsDto, SystemIdentityGroupRelatesFromArgsDto, SystemIdentityGroupRelatesToArgsDto, SystemIdentityGroupTaggedByArgsDto, SystemIdentityGroupUpdateDto, SystemIdentityGroupUpdateMessageDto, SystemIdentityGroup_AssignedEntitiesUnionConnectionDto, SystemIdentityGroup_AssignedEntitiesUnionDto, SystemIdentityGroup_AssignedEntitiesUnionEdgeDto, SystemIdentityGroup_ChildGroupsUnionConnectionDto, SystemIdentityGroup_ChildGroupsUnionDto, SystemIdentityGroup_ChildGroupsUnionEdgeDto, SystemIdentityGroup_MemberOfGroupsUnionConnectionDto, SystemIdentityGroup_MemberOfGroupsUnionDto, SystemIdentityGroup_MemberOfGroupsUnionEdgeDto, SystemIdentityGroup_ParentGroupsUnionConnectionDto, SystemIdentityGroup_ParentGroupsUnionDto, SystemIdentityGroup_ParentGroupsUnionEdgeDto, SystemIdentityIdentityProviderAssociationsArgsDto, SystemIdentityIdentityProviderConfiguredByArgsDto, SystemIdentityIdentityProviderConnectionDto, SystemIdentityIdentityProviderDto, SystemIdentityIdentityProviderEdgeDto, SystemIdentityIdentityProviderInterfaceConfiguredByArgsDto, SystemIdentityIdentityProviderInterfaceDto, SystemIdentityIdentityProviderInterfaceMapsFromArgsDto, SystemIdentityIdentityProviderInterfaceMapsToArgsDto, SystemIdentityIdentityProviderInterfaceRelatesFromArgsDto, SystemIdentityIdentityProviderInterfaceRelatesToArgsDto, SystemIdentityIdentityProviderInterfaceTaggedByArgsDto, SystemIdentityIdentityProviderMapsFromArgsDto, SystemIdentityIdentityProviderMapsToArgsDto, SystemIdentityIdentityProviderRelatesFromArgsDto, SystemIdentityIdentityProviderRelatesToArgsDto, SystemIdentityIdentityProviderTaggedByArgsDto, SystemIdentityIdentityProviderUpdateDto, SystemIdentityIdentityProviderUpdateMessageDto, SystemIdentityIdentityResourceAssociationsArgsDto, SystemIdentityIdentityResourceConfiguredByArgsDto, SystemIdentityIdentityResourceConnectionDto, SystemIdentityIdentityResourceDto, SystemIdentityIdentityResourceEdgeDto, SystemIdentityIdentityResourceInputDto, SystemIdentityIdentityResourceInputUpdateDto, SystemIdentityIdentityResourceMapsFromArgsDto, SystemIdentityIdentityResourceMapsToArgsDto, SystemIdentityIdentityResourceMutationsCreateArgsDto, SystemIdentityIdentityResourceMutationsDto, SystemIdentityIdentityResourceMutationsUpdateArgsDto, SystemIdentityIdentityResourceRelatesFromArgsDto, SystemIdentityIdentityResourceRelatesToArgsDto, SystemIdentityIdentityResourceTaggedByArgsDto, SystemIdentityIdentityResourceUpdateDto, SystemIdentityIdentityResourceUpdateMessageDto, SystemIdentityMailNotificationConfigurationAssociationsArgsDto, SystemIdentityMailNotificationConfigurationConfiguredByArgsDto, SystemIdentityMailNotificationConfigurationConnectionDto, SystemIdentityMailNotificationConfigurationDto, SystemIdentityMailNotificationConfigurationEdgeDto, SystemIdentityMailNotificationConfigurationInputDto, SystemIdentityMailNotificationConfigurationInputUpdateDto, SystemIdentityMailNotificationConfigurationMapsFromArgsDto, SystemIdentityMailNotificationConfigurationMapsToArgsDto, SystemIdentityMailNotificationConfigurationMutationsCreateArgsDto, SystemIdentityMailNotificationConfigurationMutationsDto, SystemIdentityMailNotificationConfigurationMutationsUpdateArgsDto, SystemIdentityMailNotificationConfigurationRelatesFromArgsDto, SystemIdentityMailNotificationConfigurationRelatesToArgsDto, SystemIdentityMailNotificationConfigurationTaggedByArgsDto, SystemIdentityMailNotificationConfigurationUpdateDto, SystemIdentityMailNotificationConfigurationUpdateMessageDto, SystemIdentityMailNotificationConfigurationUsedByArgsDto, SystemIdentityMicrosoftAdIdentityProviderAssociationsArgsDto, SystemIdentityMicrosoftAdIdentityProviderConfiguredByArgsDto, SystemIdentityMicrosoftAdIdentityProviderConnectionDto, SystemIdentityMicrosoftAdIdentityProviderDto, SystemIdentityMicrosoftAdIdentityProviderEdgeDto, SystemIdentityMicrosoftAdIdentityProviderInputDto, SystemIdentityMicrosoftAdIdentityProviderInputUpdateDto, SystemIdentityMicrosoftAdIdentityProviderMapsFromArgsDto, SystemIdentityMicrosoftAdIdentityProviderMapsToArgsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsCreateArgsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsUpdateArgsDto, SystemIdentityMicrosoftAdIdentityProviderRelatesFromArgsDto, SystemIdentityMicrosoftAdIdentityProviderRelatesToArgsDto, SystemIdentityMicrosoftAdIdentityProviderTaggedByArgsDto, SystemIdentityMicrosoftAdIdentityProviderUpdateDto, SystemIdentityMicrosoftAdIdentityProviderUpdateMessageDto, SystemIdentityMicrosoftIdentityProviderAssociationsArgsDto, SystemIdentityMicrosoftIdentityProviderConfiguredByArgsDto, SystemIdentityMicrosoftIdentityProviderConnectionDto, SystemIdentityMicrosoftIdentityProviderDto, SystemIdentityMicrosoftIdentityProviderEdgeDto, SystemIdentityMicrosoftIdentityProviderInputDto, SystemIdentityMicrosoftIdentityProviderInputUpdateDto, SystemIdentityMicrosoftIdentityProviderMapsFromArgsDto, SystemIdentityMicrosoftIdentityProviderMapsToArgsDto, SystemIdentityMicrosoftIdentityProviderMutationsCreateArgsDto, SystemIdentityMicrosoftIdentityProviderMutationsDto, SystemIdentityMicrosoftIdentityProviderMutationsUpdateArgsDto, SystemIdentityMicrosoftIdentityProviderRelatesFromArgsDto, SystemIdentityMicrosoftIdentityProviderRelatesToArgsDto, SystemIdentityMicrosoftIdentityProviderTaggedByArgsDto, SystemIdentityMicrosoftIdentityProviderUpdateDto, SystemIdentityMicrosoftIdentityProviderUpdateMessageDto, SystemIdentityOctoTenantIdentityProviderAssociationsArgsDto, SystemIdentityOctoTenantIdentityProviderConfiguredByArgsDto, SystemIdentityOctoTenantIdentityProviderConnectionDto, SystemIdentityOctoTenantIdentityProviderDto, SystemIdentityOctoTenantIdentityProviderEdgeDto, SystemIdentityOctoTenantIdentityProviderInputDto, SystemIdentityOctoTenantIdentityProviderInputUpdateDto, SystemIdentityOctoTenantIdentityProviderMapsFromArgsDto, SystemIdentityOctoTenantIdentityProviderMapsToArgsDto, SystemIdentityOctoTenantIdentityProviderMutationsCreateArgsDto, SystemIdentityOctoTenantIdentityProviderMutationsDto, SystemIdentityOctoTenantIdentityProviderMutationsUpdateArgsDto, SystemIdentityOctoTenantIdentityProviderRelatesFromArgsDto, SystemIdentityOctoTenantIdentityProviderRelatesToArgsDto, SystemIdentityOctoTenantIdentityProviderTaggedByArgsDto, SystemIdentityOctoTenantIdentityProviderUpdateDto, SystemIdentityOctoTenantIdentityProviderUpdateMessageDto, SystemIdentityOpenLdapIdentityProviderAssociationsArgsDto, SystemIdentityOpenLdapIdentityProviderConfiguredByArgsDto, SystemIdentityOpenLdapIdentityProviderConnectionDto, SystemIdentityOpenLdapIdentityProviderDto, SystemIdentityOpenLdapIdentityProviderEdgeDto, SystemIdentityOpenLdapIdentityProviderInputDto, SystemIdentityOpenLdapIdentityProviderInputUpdateDto, SystemIdentityOpenLdapIdentityProviderMapsFromArgsDto, SystemIdentityOpenLdapIdentityProviderMapsToArgsDto, SystemIdentityOpenLdapIdentityProviderMutationsCreateArgsDto, SystemIdentityOpenLdapIdentityProviderMutationsDto, SystemIdentityOpenLdapIdentityProviderMutationsUpdateArgsDto, SystemIdentityOpenLdapIdentityProviderRelatesFromArgsDto, SystemIdentityOpenLdapIdentityProviderRelatesToArgsDto, SystemIdentityOpenLdapIdentityProviderTaggedByArgsDto, SystemIdentityOpenLdapIdentityProviderUpdateDto, SystemIdentityOpenLdapIdentityProviderUpdateMessageDto, SystemIdentityPermissionAssociationsArgsDto, SystemIdentityPermissionConfiguredByArgsDto, SystemIdentityPermissionConnectionDto, SystemIdentityPermissionDto, SystemIdentityPermissionEdgeDto, SystemIdentityPermissionInputDto, SystemIdentityPermissionInputUpdateDto, SystemIdentityPermissionMapsFromArgsDto, SystemIdentityPermissionMapsToArgsDto, SystemIdentityPermissionMutationsCreateArgsDto, SystemIdentityPermissionMutationsDto, SystemIdentityPermissionMutationsUpdateArgsDto, SystemIdentityPermissionRelatesFromArgsDto, SystemIdentityPermissionRelatesToArgsDto, SystemIdentityPermissionRoleAssociationsArgsDto, SystemIdentityPermissionRoleConfiguredByArgsDto, SystemIdentityPermissionRoleConnectionDto, SystemIdentityPermissionRoleDto, SystemIdentityPermissionRoleEdgeDto, SystemIdentityPermissionRoleInputDto, SystemIdentityPermissionRoleInputUpdateDto, SystemIdentityPermissionRoleMapsFromArgsDto, SystemIdentityPermissionRoleMapsToArgsDto, SystemIdentityPermissionRoleMutationsCreateArgsDto, SystemIdentityPermissionRoleMutationsDto, SystemIdentityPermissionRoleMutationsUpdateArgsDto, SystemIdentityPermissionRoleRelatesFromArgsDto, SystemIdentityPermissionRoleRelatesToArgsDto, SystemIdentityPermissionRoleTaggedByArgsDto, SystemIdentityPermissionRoleUpdateDto, SystemIdentityPermissionRoleUpdateMessageDto, SystemIdentityPermissionTaggedByArgsDto, SystemIdentityPermissionUpdateDto, SystemIdentityPermissionUpdateMessageDto, SystemIdentityPersistedGrantAssociationsArgsDto, SystemIdentityPersistedGrantConfiguredByArgsDto, SystemIdentityPersistedGrantConnectionDto, SystemIdentityPersistedGrantDto, SystemIdentityPersistedGrantEdgeDto, SystemIdentityPersistedGrantInputDto, SystemIdentityPersistedGrantInputUpdateDto, SystemIdentityPersistedGrantMapsFromArgsDto, SystemIdentityPersistedGrantMapsToArgsDto, SystemIdentityPersistedGrantMutationsCreateArgsDto, SystemIdentityPersistedGrantMutationsDto, SystemIdentityPersistedGrantMutationsUpdateArgsDto, SystemIdentityPersistedGrantRelatesFromArgsDto, SystemIdentityPersistedGrantRelatesToArgsDto, SystemIdentityPersistedGrantTaggedByArgsDto, SystemIdentityPersistedGrantUpdateDto, SystemIdentityPersistedGrantUpdateMessageDto, SystemIdentityResourceAssociationsArgsDto, SystemIdentityResourceConfiguredByArgsDto, SystemIdentityResourceConnectionDto, SystemIdentityResourceDto, SystemIdentityResourceEdgeDto, SystemIdentityResourceInterfaceConfiguredByArgsDto, SystemIdentityResourceInterfaceDto, SystemIdentityResourceInterfaceMapsFromArgsDto, SystemIdentityResourceInterfaceMapsToArgsDto, SystemIdentityResourceInterfaceRelatesFromArgsDto, SystemIdentityResourceInterfaceRelatesToArgsDto, SystemIdentityResourceInterfaceTaggedByArgsDto, SystemIdentityResourceMapsFromArgsDto, SystemIdentityResourceMapsToArgsDto, SystemIdentityResourceRelatesFromArgsDto, SystemIdentityResourceRelatesToArgsDto, SystemIdentityResourceTaggedByArgsDto, SystemIdentityResourceUpdateDto, SystemIdentityResourceUpdateMessageDto, SystemIdentityRoleAssignedEntitiesArgsDto, SystemIdentityRoleAssociationsArgsDto, SystemIdentityRoleClaimDto, SystemIdentityRoleClaimInputDto, SystemIdentityRoleConfiguredByArgsDto, SystemIdentityRoleConnectionDto, SystemIdentityRoleDto, SystemIdentityRoleEdgeDto, SystemIdentityRoleInputDto, SystemIdentityRoleInputUpdateDto, SystemIdentityRoleMapsFromArgsDto, SystemIdentityRoleMapsToArgsDto, SystemIdentityRoleMutationsCreateArgsDto, SystemIdentityRoleMutationsDto, SystemIdentityRoleMutationsUpdateArgsDto, SystemIdentityRoleRelatesFromArgsDto, SystemIdentityRoleRelatesToArgsDto, SystemIdentityRoleTaggedByArgsDto, SystemIdentityRoleUpdateDto, SystemIdentityRoleUpdateMessageDto, SystemIdentityRole_AssignedRolesUnionConnectionDto, SystemIdentityRole_AssignedRolesUnionDto, SystemIdentityRole_AssignedRolesUnionEdgeDto, SystemIdentitySecretDto, SystemIdentitySecretInputDto, SystemIdentityUserAssignedRolesArgsDto, SystemIdentityUserAssociationsArgsDto, SystemIdentityUserClaimDto, SystemIdentityUserClaimInputDto, SystemIdentityUserConfiguredByArgsDto, SystemIdentityUserConnectionDto, SystemIdentityUserDto, SystemIdentityUserEdgeDto, SystemIdentityUserInputDto, SystemIdentityUserInputUpdateDto, SystemIdentityUserLoginDto, SystemIdentityUserLoginInputDto, SystemIdentityUserMapsFromArgsDto, SystemIdentityUserMapsToArgsDto, SystemIdentityUserMemberOfGroupsArgsDto, SystemIdentityUserMutationsCreateArgsDto, SystemIdentityUserMutationsDto, SystemIdentityUserMutationsUpdateArgsDto, SystemIdentityUserRelatesFromArgsDto, SystemIdentityUserRelatesToArgsDto, SystemIdentityUserTaggedByArgsDto, SystemIdentityUserTokenDto, SystemIdentityUserTokenInputDto, SystemIdentityUserUpdateDto, SystemIdentityUserUpdateMessageDto, SystemIdentityUser_MembersUnionConnectionDto, SystemIdentityUser_MembersUnionDto, SystemIdentityUser_MembersUnionEdgeDto, SystemMigrationHistoryAssociationsArgsDto, SystemMigrationHistoryConfiguredByArgsDto, SystemMigrationHistoryConnectionDto, SystemMigrationHistoryDto, SystemMigrationHistoryEdgeDto, SystemMigrationHistoryInputDto, SystemMigrationHistoryInputUpdateDto, SystemMigrationHistoryMapsFromArgsDto, SystemMigrationHistoryMapsToArgsDto, SystemMigrationHistoryMutationsCreateArgsDto, SystemMigrationHistoryMutationsDto, SystemMigrationHistoryMutationsUpdateArgsDto, SystemMigrationHistoryRelatesFromArgsDto, SystemMigrationHistoryRelatesToArgsDto, SystemMigrationHistoryTaggedByArgsDto, SystemMigrationHistoryUpdateDto, SystemMigrationHistoryUpdateMessageDto, SystemNotificationCssTemplateConfigurationAssociationsArgsDto, SystemNotificationCssTemplateConfigurationConfiguredByArgsDto, SystemNotificationCssTemplateConfigurationConnectionDto, SystemNotificationCssTemplateConfigurationDto, SystemNotificationCssTemplateConfigurationEdgeDto, SystemNotificationCssTemplateConfigurationInputDto, SystemNotificationCssTemplateConfigurationInputUpdateDto, SystemNotificationCssTemplateConfigurationMapsFromArgsDto, SystemNotificationCssTemplateConfigurationMapsToArgsDto, SystemNotificationCssTemplateConfigurationMutationsCreateArgsDto, SystemNotificationCssTemplateConfigurationMutationsDto, SystemNotificationCssTemplateConfigurationMutationsUpdateArgsDto, SystemNotificationCssTemplateConfigurationRelatesFromArgsDto, SystemNotificationCssTemplateConfigurationRelatesToArgsDto, SystemNotificationCssTemplateConfigurationTaggedByArgsDto, SystemNotificationCssTemplateConfigurationUpdateDto, SystemNotificationCssTemplateConfigurationUpdateMessageDto, SystemNotificationCssTemplateConfigurationUsedByArgsDto, SystemNotificationEventAssociationsArgsDto, SystemNotificationEventConfiguredByArgsDto, SystemNotificationEventConnectionDto, SystemNotificationEventDto, SystemNotificationEventEdgeDto, SystemNotificationEventInputDto, SystemNotificationEventInputUpdateDto, SystemNotificationEventMapsFromArgsDto, SystemNotificationEventMapsToArgsDto, SystemNotificationEventMutationsCreateArgsDto, SystemNotificationEventMutationsDto, SystemNotificationEventMutationsUpdateArgsDto, SystemNotificationEventRelatesFromArgsDto, SystemNotificationEventRelatesToArgsDto, SystemNotificationEventTaggedByArgsDto, SystemNotificationEventUpdateDto, SystemNotificationEventUpdateMessageDto, SystemNotificationNotificationTemplateAssociationsArgsDto, SystemNotificationNotificationTemplateConfiguredByArgsDto, SystemNotificationNotificationTemplateConnectionDto, SystemNotificationNotificationTemplateDto, SystemNotificationNotificationTemplateEdgeDto, SystemNotificationNotificationTemplateInputDto, SystemNotificationNotificationTemplateInputUpdateDto, SystemNotificationNotificationTemplateMapsFromArgsDto, SystemNotificationNotificationTemplateMapsToArgsDto, SystemNotificationNotificationTemplateMutationsCreateArgsDto, SystemNotificationNotificationTemplateMutationsDto, SystemNotificationNotificationTemplateMutationsUpdateArgsDto, SystemNotificationNotificationTemplateRelatesFromArgsDto, SystemNotificationNotificationTemplateRelatesToArgsDto, SystemNotificationNotificationTemplateTaggedByArgsDto, SystemNotificationNotificationTemplateUpdateDto, SystemNotificationNotificationTemplateUpdateMessageDto, SystemNotificationStatefulEventAssociationsArgsDto, SystemNotificationStatefulEventConfiguredByArgsDto, SystemNotificationStatefulEventConnectionDto, SystemNotificationStatefulEventDto, SystemNotificationStatefulEventEdgeDto, SystemNotificationStatefulEventInputDto, SystemNotificationStatefulEventInputUpdateDto, SystemNotificationStatefulEventMapsFromArgsDto, SystemNotificationStatefulEventMapsToArgsDto, SystemNotificationStatefulEventMutationsCreateArgsDto, SystemNotificationStatefulEventMutationsDto, SystemNotificationStatefulEventMutationsUpdateArgsDto, SystemNotificationStatefulEventRelatesFromArgsDto, SystemNotificationStatefulEventRelatesToArgsDto, SystemNotificationStatefulEventTaggedByArgsDto, SystemNotificationStatefulEventUpdateDto, SystemNotificationStatefulEventUpdateMessageDto, SystemPersistentQueryAssociationsArgsDto, SystemPersistentQueryConfiguredByArgsDto, SystemPersistentQueryConnectionDto, SystemPersistentQueryDto, SystemPersistentQueryEdgeDto, SystemPersistentQueryInterfaceConfiguredByArgsDto, SystemPersistentQueryInterfaceDto, SystemPersistentQueryInterfaceMapsFromArgsDto, SystemPersistentQueryInterfaceMapsToArgsDto, SystemPersistentQueryInterfaceRelatesFromArgsDto, SystemPersistentQueryInterfaceRelatesToArgsDto, SystemPersistentQueryInterfaceTaggedByArgsDto, SystemPersistentQueryMapsFromArgsDto, SystemPersistentQueryMapsToArgsDto, SystemPersistentQueryRelatesFromArgsDto, SystemPersistentQueryRelatesToArgsDto, SystemPersistentQueryTaggedByArgsDto, SystemPersistentQueryUpdateDto, SystemPersistentQueryUpdateMessageDto, SystemReportingConnectionInfoAssociationsArgsDto, SystemReportingConnectionInfoConfiguredByArgsDto, SystemReportingConnectionInfoConnectionDto, SystemReportingConnectionInfoDto, SystemReportingConnectionInfoEdgeDto, SystemReportingConnectionInfoInputDto, SystemReportingConnectionInfoInputUpdateDto, SystemReportingConnectionInfoMapsFromArgsDto, SystemReportingConnectionInfoMapsToArgsDto, SystemReportingConnectionInfoMutationsCreateArgsDto, SystemReportingConnectionInfoMutationsDto, SystemReportingConnectionInfoMutationsUpdateArgsDto, SystemReportingConnectionInfoRelatesFromArgsDto, SystemReportingConnectionInfoRelatesToArgsDto, SystemReportingConnectionInfoTaggedByArgsDto, SystemReportingConnectionInfoUpdateDto, SystemReportingConnectionInfoUpdateMessageDto, SystemReportingConnectionInfoUsedByArgsDto, SystemReportingFileSystemContainerAssociationsArgsDto, SystemReportingFileSystemContainerConfiguredByArgsDto, SystemReportingFileSystemContainerConnectionDto, SystemReportingFileSystemContainerDto, SystemReportingFileSystemContainerEdgeDto, SystemReportingFileSystemContainerInterfaceConfiguredByArgsDto, SystemReportingFileSystemContainerInterfaceDto, SystemReportingFileSystemContainerInterfaceMapsFromArgsDto, SystemReportingFileSystemContainerInterfaceMapsToArgsDto, SystemReportingFileSystemContainerInterfaceParentArgsDto, SystemReportingFileSystemContainerInterfaceRelatesFromArgsDto, SystemReportingFileSystemContainerInterfaceRelatesToArgsDto, SystemReportingFileSystemContainerInterfaceTaggedByArgsDto, SystemReportingFileSystemContainerMapsFromArgsDto, SystemReportingFileSystemContainerMapsToArgsDto, SystemReportingFileSystemContainerParentArgsDto, SystemReportingFileSystemContainerRelatesFromArgsDto, SystemReportingFileSystemContainerRelatesToArgsDto, SystemReportingFileSystemContainerTaggedByArgsDto, SystemReportingFileSystemContainerUpdateDto, SystemReportingFileSystemContainerUpdateMessageDto, SystemReportingFileSystemContainer_ChildrenUnionConnectionDto, SystemReportingFileSystemContainer_ChildrenUnionDto, SystemReportingFileSystemContainer_ChildrenUnionEdgeDto, SystemReportingFileSystemEntityAssociationsArgsDto, SystemReportingFileSystemEntityConfiguredByArgsDto, SystemReportingFileSystemEntityConnectionDto, SystemReportingFileSystemEntityDto, SystemReportingFileSystemEntityEdgeDto, SystemReportingFileSystemEntityInterfaceConfiguredByArgsDto, SystemReportingFileSystemEntityInterfaceDto, SystemReportingFileSystemEntityInterfaceMapsFromArgsDto, SystemReportingFileSystemEntityInterfaceMapsToArgsDto, SystemReportingFileSystemEntityInterfaceRelatesFromArgsDto, SystemReportingFileSystemEntityInterfaceRelatesToArgsDto, SystemReportingFileSystemEntityInterfaceTaggedByArgsDto, SystemReportingFileSystemEntityMapsFromArgsDto, SystemReportingFileSystemEntityMapsToArgsDto, SystemReportingFileSystemEntityRelatesFromArgsDto, SystemReportingFileSystemEntityRelatesToArgsDto, SystemReportingFileSystemEntityTaggedByArgsDto, SystemReportingFileSystemEntityUpdateDto, SystemReportingFileSystemEntityUpdateMessageDto, SystemReportingFileSystemItemAssociationsArgsDto, SystemReportingFileSystemItemConfiguredByArgsDto, SystemReportingFileSystemItemConnectionDto, SystemReportingFileSystemItemDto, SystemReportingFileSystemItemEdgeDto, SystemReportingFileSystemItemInputDto, SystemReportingFileSystemItemInputUpdateDto, SystemReportingFileSystemItemMapsFromArgsDto, SystemReportingFileSystemItemMapsToArgsDto, SystemReportingFileSystemItemMutationsCreateArgsDto, SystemReportingFileSystemItemMutationsDto, SystemReportingFileSystemItemMutationsUpdateArgsDto, SystemReportingFileSystemItemParentArgsDto, SystemReportingFileSystemItemRelatesFromArgsDto, SystemReportingFileSystemItemRelatesToArgsDto, SystemReportingFileSystemItemTaggedByArgsDto, SystemReportingFileSystemItemUpdateDto, SystemReportingFileSystemItemUpdateMessageDto, SystemReportingFolderAssociationsArgsDto, SystemReportingFolderChildrenArgsDto, SystemReportingFolderConfiguredByArgsDto, SystemReportingFolderConnectionDto, SystemReportingFolderDto, SystemReportingFolderEdgeDto, SystemReportingFolderInputDto, SystemReportingFolderInputUpdateDto, SystemReportingFolderMapsFromArgsDto, SystemReportingFolderMapsToArgsDto, SystemReportingFolderMutationsCreateArgsDto, SystemReportingFolderMutationsDto, SystemReportingFolderMutationsUpdateArgsDto, SystemReportingFolderParentArgsDto, SystemReportingFolderRelatesFromArgsDto, SystemReportingFolderRelatesToArgsDto, SystemReportingFolderRootAssociationsArgsDto, SystemReportingFolderRootChildrenArgsDto, SystemReportingFolderRootConfiguredByArgsDto, SystemReportingFolderRootConnectionDto, SystemReportingFolderRootDto, SystemReportingFolderRootEdgeDto, SystemReportingFolderRootInputDto, SystemReportingFolderRootInputUpdateDto, SystemReportingFolderRootMapsFromArgsDto, SystemReportingFolderRootMapsToArgsDto, SystemReportingFolderRootMutationsCreateArgsDto, SystemReportingFolderRootMutationsDto, SystemReportingFolderRootMutationsUpdateArgsDto, SystemReportingFolderRootRelatesFromArgsDto, SystemReportingFolderRootRelatesToArgsDto, SystemReportingFolderRootTaggedByArgsDto, SystemReportingFolderRootUpdateDto, SystemReportingFolderRootUpdateMessageDto, SystemReportingFolderTaggedByArgsDto, SystemReportingFolderUpdateDto, SystemReportingFolderUpdateMessageDto, SystemReportingFolder_ParentUnionConnectionDto, SystemReportingFolder_ParentUnionDto, SystemReportingFolder_ParentUnionEdgeDto, SystemSimpleRtQueryAssociationsArgsDto, SystemSimpleRtQueryConfiguredByArgsDto, SystemSimpleRtQueryConnectionDto, SystemSimpleRtQueryDto, SystemSimpleRtQueryEdgeDto, SystemSimpleRtQueryInputDto, SystemSimpleRtQueryInputUpdateDto, SystemSimpleRtQueryMapsFromArgsDto, SystemSimpleRtQueryMapsToArgsDto, SystemSimpleRtQueryMutationsCreateArgsDto, SystemSimpleRtQueryMutationsDto, SystemSimpleRtQueryMutationsUpdateArgsDto, SystemSimpleRtQueryRelatesFromArgsDto, SystemSimpleRtQueryRelatesToArgsDto, SystemSimpleRtQueryTaggedByArgsDto, SystemSimpleRtQueryUpdateDto, SystemSimpleRtQueryUpdateMessageDto, SystemSimpleSdQueryAssociationsArgsDto, SystemSimpleSdQueryConfiguredByArgsDto, SystemSimpleSdQueryConnectionDto, SystemSimpleSdQueryDto, SystemSimpleSdQueryEdgeDto, SystemSimpleSdQueryInputDto, SystemSimpleSdQueryInputUpdateDto, SystemSimpleSdQueryMapsFromArgsDto, SystemSimpleSdQueryMapsToArgsDto, SystemSimpleSdQueryMutationsCreateArgsDto, SystemSimpleSdQueryMutationsDto, SystemSimpleSdQueryMutationsUpdateArgsDto, SystemSimpleSdQueryRelatesFromArgsDto, SystemSimpleSdQueryRelatesToArgsDto, SystemSimpleSdQueryTaggedByArgsDto, SystemSimpleSdQueryUpdateDto, SystemSimpleSdQueryUpdateMessageDto, SystemSortOrderItemDto, SystemSortOrderItemInputDto, SystemStreamDataArchiveAssociationsArgsDto, SystemStreamDataArchiveConfiguredByArgsDto, SystemStreamDataArchiveConnectionDto, SystemStreamDataArchiveDto, SystemStreamDataArchiveEdgeDto, SystemStreamDataArchiveInterfaceConfiguredByArgsDto, SystemStreamDataArchiveInterfaceDto, SystemStreamDataArchiveInterfaceMapsFromArgsDto, SystemStreamDataArchiveInterfaceMapsToArgsDto, SystemStreamDataArchiveInterfaceRelatesFromArgsDto, SystemStreamDataArchiveInterfaceRelatesToArgsDto, SystemStreamDataArchiveInterfaceTaggedByArgsDto, SystemStreamDataArchiveMapsFromArgsDto, SystemStreamDataArchiveMapsToArgsDto, SystemStreamDataArchiveRelatesFromArgsDto, SystemStreamDataArchiveRelatesToArgsDto, SystemStreamDataArchiveTaggedByArgsDto, SystemStreamDataArchiveUpdateDto, SystemStreamDataArchiveUpdateMessageDto, SystemStreamDataCkArchiveColumnDto, SystemStreamDataCkArchiveColumnInputDto, SystemStreamDataCkRollupAggregationDto, SystemStreamDataCkRollupAggregationInputDto, SystemStreamDataQueryAssociationsArgsDto, SystemStreamDataQueryConfiguredByArgsDto, SystemStreamDataQueryConnectionDto, SystemStreamDataQueryDto, SystemStreamDataQueryEdgeDto, SystemStreamDataQueryInterfaceConfiguredByArgsDto, SystemStreamDataQueryInterfaceDto, SystemStreamDataQueryInterfaceMapsFromArgsDto, SystemStreamDataQueryInterfaceMapsToArgsDto, SystemStreamDataQueryInterfaceRelatesFromArgsDto, SystemStreamDataQueryInterfaceRelatesToArgsDto, SystemStreamDataQueryInterfaceTaggedByArgsDto, SystemStreamDataQueryMapsFromArgsDto, SystemStreamDataQueryMapsToArgsDto, SystemStreamDataQueryRelatesFromArgsDto, SystemStreamDataQueryRelatesToArgsDto, SystemStreamDataQueryTaggedByArgsDto, SystemStreamDataQueryUpdateDto, SystemStreamDataQueryUpdateMessageDto, SystemStreamDataRawArchiveAssociationsArgsDto, SystemStreamDataRawArchiveConfiguredByArgsDto, SystemStreamDataRawArchiveConnectionDto, SystemStreamDataRawArchiveDto, SystemStreamDataRawArchiveEdgeDto, SystemStreamDataRawArchiveInputDto, SystemStreamDataRawArchiveInputUpdateDto, SystemStreamDataRawArchiveMapsFromArgsDto, SystemStreamDataRawArchiveMapsToArgsDto, SystemStreamDataRawArchiveMutationsCreateArgsDto, SystemStreamDataRawArchiveMutationsDto, SystemStreamDataRawArchiveMutationsUpdateArgsDto, SystemStreamDataRawArchiveRelatesFromArgsDto, SystemStreamDataRawArchiveRelatesToArgsDto, SystemStreamDataRawArchiveTaggedByArgsDto, SystemStreamDataRawArchiveUpdateDto, SystemStreamDataRawArchiveUpdateMessageDto, SystemStreamDataRollupArchiveAssociationsArgsDto, SystemStreamDataRollupArchiveConfiguredByArgsDto, SystemStreamDataRollupArchiveConnectionDto, SystemStreamDataRollupArchiveDto, SystemStreamDataRollupArchiveEdgeDto, SystemStreamDataRollupArchiveInputDto, SystemStreamDataRollupArchiveInputUpdateDto, SystemStreamDataRollupArchiveMapsFromArgsDto, SystemStreamDataRollupArchiveMapsToArgsDto, SystemStreamDataRollupArchiveMutationsCreateArgsDto, SystemStreamDataRollupArchiveMutationsDto, SystemStreamDataRollupArchiveMutationsUpdateArgsDto, SystemStreamDataRollupArchiveRelatesFromArgsDto, SystemStreamDataRollupArchiveRelatesToArgsDto, SystemStreamDataRollupArchiveTaggedByArgsDto, SystemStreamDataRollupArchiveUpdateDto, SystemStreamDataRollupArchiveUpdateMessageDto, SystemStreamDataTimeRangeArchiveAssociationsArgsDto, SystemStreamDataTimeRangeArchiveConfiguredByArgsDto, SystemStreamDataTimeRangeArchiveConnectionDto, SystemStreamDataTimeRangeArchiveDto, SystemStreamDataTimeRangeArchiveEdgeDto, SystemStreamDataTimeRangeArchiveInputDto, SystemStreamDataTimeRangeArchiveInputUpdateDto, SystemStreamDataTimeRangeArchiveMapsFromArgsDto, SystemStreamDataTimeRangeArchiveMapsToArgsDto, SystemStreamDataTimeRangeArchiveMutationsCreateArgsDto, SystemStreamDataTimeRangeArchiveMutationsDto, SystemStreamDataTimeRangeArchiveMutationsUpdateArgsDto, SystemStreamDataTimeRangeArchiveRelatesFromArgsDto, SystemStreamDataTimeRangeArchiveRelatesToArgsDto, SystemStreamDataTimeRangeArchiveTaggedByArgsDto, SystemStreamDataTimeRangeArchiveUpdateDto, SystemStreamDataTimeRangeArchiveUpdateMessageDto, SystemTenantAssociationsArgsDto, SystemTenantConfigurationAssociationsArgsDto, SystemTenantConfigurationConfiguredByArgsDto, SystemTenantConfigurationConnectionDto, SystemTenantConfigurationDto, SystemTenantConfigurationEdgeDto, SystemTenantConfigurationInputDto, SystemTenantConfigurationInputUpdateDto, SystemTenantConfigurationMapsFromArgsDto, SystemTenantConfigurationMapsToArgsDto, SystemTenantConfigurationMutationsCreateArgsDto, SystemTenantConfigurationMutationsDto, SystemTenantConfigurationMutationsUpdateArgsDto, SystemTenantConfigurationRelatesFromArgsDto, SystemTenantConfigurationRelatesToArgsDto, SystemTenantConfigurationTaggedByArgsDto, SystemTenantConfigurationUpdateDto, SystemTenantConfigurationUpdateMessageDto, SystemTenantConfigurationUsedByArgsDto, SystemTenantConfiguredByArgsDto, SystemTenantConnectionDto, SystemTenantDto, SystemTenantEdgeDto, SystemTenantInputDto, SystemTenantInputUpdateDto, SystemTenantMapsFromArgsDto, SystemTenantMapsToArgsDto, SystemTenantModeConfigurationAssociationsArgsDto, SystemTenantModeConfigurationConfiguredByArgsDto, SystemTenantModeConfigurationConnectionDto, SystemTenantModeConfigurationDto, SystemTenantModeConfigurationEdgeDto, SystemTenantModeConfigurationInputDto, SystemTenantModeConfigurationInputUpdateDto, SystemTenantModeConfigurationMapsFromArgsDto, SystemTenantModeConfigurationMapsToArgsDto, SystemTenantModeConfigurationMutationsCreateArgsDto, SystemTenantModeConfigurationMutationsDto, SystemTenantModeConfigurationMutationsUpdateArgsDto, SystemTenantModeConfigurationRelatesFromArgsDto, SystemTenantModeConfigurationRelatesToArgsDto, SystemTenantModeConfigurationTaggedByArgsDto, SystemTenantModeConfigurationUpdateDto, SystemTenantModeConfigurationUpdateMessageDto, SystemTenantModeConfigurationUsedByArgsDto, SystemTenantMutationsCreateArgsDto, SystemTenantMutationsDto, SystemTenantMutationsUpdateArgsDto, SystemTenantRelatesFromArgsDto, SystemTenantRelatesToArgsDto, SystemTenantTaggedByArgsDto, SystemTenantUpdateDto, SystemTenantUpdateMessageDto, SystemTextSearchFilterDto, SystemTextSearchFilterInputDto, SystemTimeRangeDto, SystemTimeRangeInputDto, SystemUiBrandingAssociationsArgsDto, SystemUiBrandingConfiguredByArgsDto, SystemUiBrandingConnectionDto, SystemUiBrandingDto, SystemUiBrandingEdgeDto, SystemUiBrandingInputDto, SystemUiBrandingInputUpdateDto, SystemUiBrandingMapsFromArgsDto, SystemUiBrandingMapsToArgsDto, SystemUiBrandingMutationsCreateArgsDto, SystemUiBrandingMutationsDto, SystemUiBrandingMutationsUpdateArgsDto, SystemUiBrandingRelatesFromArgsDto, SystemUiBrandingRelatesToArgsDto, SystemUiBrandingTaggedByArgsDto, SystemUiBrandingUpdateDto, SystemUiBrandingUpdateMessageDto, SystemUiDashboardAssociationsArgsDto, SystemUiDashboardChildrenArgsDto, SystemUiDashboardConfiguredByArgsDto, SystemUiDashboardConnectionDto, SystemUiDashboardDto, SystemUiDashboardEdgeDto, SystemUiDashboardInputDto, SystemUiDashboardInputUpdateDto, SystemUiDashboardMapsFromArgsDto, SystemUiDashboardMapsToArgsDto, SystemUiDashboardMutationsCreateArgsDto, SystemUiDashboardMutationsDto, SystemUiDashboardMutationsUpdateArgsDto, SystemUiDashboardRelatesFromArgsDto, SystemUiDashboardRelatesToArgsDto, SystemUiDashboardTaggedByArgsDto, SystemUiDashboardUpdateDto, SystemUiDashboardUpdateMessageDto, SystemUiDashboardWidgetAssociationsArgsDto, SystemUiDashboardWidgetConfiguredByArgsDto, SystemUiDashboardWidgetConnectionDto, SystemUiDashboardWidgetDto, SystemUiDashboardWidgetEdgeDto, SystemUiDashboardWidgetInputDto, SystemUiDashboardWidgetInputUpdateDto, SystemUiDashboardWidgetMapsFromArgsDto, SystemUiDashboardWidgetMapsToArgsDto, SystemUiDashboardWidgetMutationsCreateArgsDto, SystemUiDashboardWidgetMutationsDto, SystemUiDashboardWidgetMutationsUpdateArgsDto, SystemUiDashboardWidgetParentArgsDto, SystemUiDashboardWidgetRelatesFromArgsDto, SystemUiDashboardWidgetRelatesToArgsDto, SystemUiDashboardWidgetTaggedByArgsDto, SystemUiDashboardWidgetUpdateDto, SystemUiDashboardWidgetUpdateMessageDto, SystemUiDashboardWidget_ChildrenUnionConnectionDto, SystemUiDashboardWidget_ChildrenUnionDto, SystemUiDashboardWidget_ChildrenUnionEdgeDto, SystemUiDashboard_ParentUnionConnectionDto, SystemUiDashboard_ParentUnionDto, SystemUiDashboard_ParentUnionEdgeDto, SystemUiProcessDiagramAssociationsArgsDto, SystemUiProcessDiagramConfiguredByArgsDto, SystemUiProcessDiagramConnectionDto, SystemUiProcessDiagramDto, SystemUiProcessDiagramEdgeDto, SystemUiProcessDiagramInputDto, SystemUiProcessDiagramInputUpdateDto, SystemUiProcessDiagramMapsFromArgsDto, SystemUiProcessDiagramMapsToArgsDto, SystemUiProcessDiagramMutationsCreateArgsDto, SystemUiProcessDiagramMutationsDto, SystemUiProcessDiagramMutationsUpdateArgsDto, SystemUiProcessDiagramRelatesFromArgsDto, SystemUiProcessDiagramRelatesToArgsDto, SystemUiProcessDiagramTaggedByArgsDto, SystemUiProcessDiagramUpdateDto, SystemUiProcessDiagramUpdateMessageDto, SystemUiSymbolDefinitionAssociationsArgsDto, SystemUiSymbolDefinitionConfiguredByArgsDto, SystemUiSymbolDefinitionConnectionDto, SystemUiSymbolDefinitionDto, SystemUiSymbolDefinitionEdgeDto, SystemUiSymbolDefinitionInputDto, SystemUiSymbolDefinitionInputUpdateDto, SystemUiSymbolDefinitionMapsFromArgsDto, SystemUiSymbolDefinitionMapsToArgsDto, SystemUiSymbolDefinitionMutationsCreateArgsDto, SystemUiSymbolDefinitionMutationsDto, SystemUiSymbolDefinitionMutationsUpdateArgsDto, SystemUiSymbolDefinitionParentArgsDto, SystemUiSymbolDefinitionRelatesFromArgsDto, SystemUiSymbolDefinitionRelatesToArgsDto, SystemUiSymbolDefinitionTaggedByArgsDto, SystemUiSymbolDefinitionUpdateDto, SystemUiSymbolDefinitionUpdateMessageDto, SystemUiSymbolDefinition_ChildrenUnionConnectionDto, SystemUiSymbolDefinition_ChildrenUnionDto, SystemUiSymbolDefinition_ChildrenUnionEdgeDto, SystemUiSymbolLibraryAssociationsArgsDto, SystemUiSymbolLibraryChildrenArgsDto, SystemUiSymbolLibraryConfiguredByArgsDto, SystemUiSymbolLibraryConnectionDto, SystemUiSymbolLibraryDto, SystemUiSymbolLibraryEdgeDto, SystemUiSymbolLibraryInputDto, SystemUiSymbolLibraryInputUpdateDto, SystemUiSymbolLibraryMapsFromArgsDto, SystemUiSymbolLibraryMapsToArgsDto, SystemUiSymbolLibraryMutationsCreateArgsDto, SystemUiSymbolLibraryMutationsDto, SystemUiSymbolLibraryMutationsUpdateArgsDto, SystemUiSymbolLibraryRelatesFromArgsDto, SystemUiSymbolLibraryRelatesToArgsDto, SystemUiSymbolLibraryTaggedByArgsDto, SystemUiSymbolLibraryUpdateDto, SystemUiSymbolLibraryUpdateMessageDto, SystemUiSymbolLibrary_ParentUnionConnectionDto, SystemUiSymbolLibrary_ParentUnionDto, SystemUiSymbolLibrary_ParentUnionEdgeDto, SystemUiThemeGradientDto, SystemUiThemeGradientInputDto, SystemUiThemePaletteDto, SystemUiThemePaletteInputDto, SystemUiuiElementAssociationsArgsDto, SystemUiuiElementConfiguredByArgsDto, SystemUiuiElementConnectionDto, SystemUiuiElementDto, SystemUiuiElementEdgeDto, SystemUiuiElementInterfaceConfiguredByArgsDto, SystemUiuiElementInterfaceDto, SystemUiuiElementInterfaceMapsFromArgsDto, SystemUiuiElementInterfaceMapsToArgsDto, SystemUiuiElementInterfaceRelatesFromArgsDto, SystemUiuiElementInterfaceRelatesToArgsDto, SystemUiuiElementInterfaceTaggedByArgsDto, SystemUiuiElementMapsFromArgsDto, SystemUiuiElementMapsToArgsDto, SystemUiuiElementRelatesFromArgsDto, SystemUiuiElementRelatesToArgsDto, SystemUiuiElementTaggedByArgsDto, SystemUiuiElementUpdateDto, SystemUiuiElementUpdateMessageDto, TenantDto, TenantIdProvider, TusUploadOptions, TusUploadResult, UpdateGroupDto, UpgradeCheckResponseDto, UserDto };
|