@meshmakers/octo-services 3.3.1150 → 3.3.1160

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.
@@ -508,7 +508,10 @@ interface MovePipelinesToAdapterResponseDto {
508
508
  * time against the same map, so the runtime entity stays cluster-portable.
509
509
  *
510
510
  * Returned by `GET {tenantId}/v1/communication/domains` (see
511
- * `CommunicationService.getDomains`).
511
+ * `CommunicationService.getDomains`). Kept for backward compatibility with
512
+ * older clients that only need domains — new editors should use
513
+ * `WorkloadVariableDto` via `getWorkloadVariables()`, which covers all three
514
+ * placeholder families.
512
515
  */
513
516
  interface DomainConfigurationDto {
514
517
  /** Lookup key referenced by templates, e.g. `default` in `adapter.{{domain.default}}`. */
@@ -516,6 +519,32 @@ interface DomainConfigurationDto {
516
519
  /** Resolved base domain (no scheme, no leading dot), e.g. `staging.octo-mesh.com`. */
517
520
  baseDomain: string;
518
521
  }
522
+ /**
523
+ * One template placeholder available to workloads' `hostname`, non-secret
524
+ * `valueOverride.value` and `valuesYaml`. Returned by
525
+ * `GET {tenantId}/v1/communication/workload-variables` (see
526
+ * `CommunicationService.getWorkloadVariables`).
527
+ *
528
+ * The endpoint surfaces three families in one list so the Studio's workload
529
+ * editor can offer a single suggestion / preview source:
530
+ * - `{{context.tenantId}}` — per-deploy, `sampleValue` is `null`.
531
+ * - `{{domain.NAME}}` — one entry per configured named domain; `sampleValue`
532
+ * holds the configured base domain.
533
+ * - `{{service.NAME}}` — one entry per configured public service URL;
534
+ * `sampleValue` holds the configured URL.
535
+ */
536
+ interface WorkloadVariableDto {
537
+ /** Full template token including braces, e.g. `{{service.authority}}`. */
538
+ placeholder: string;
539
+ /** Human-readable description of what the placeholder resolves to. */
540
+ description: string;
541
+ /**
542
+ * Configured value snapshot for cluster-config-driven placeholders.
543
+ * `null` for per-deploy values like `{{context.tenantId}}` that the
544
+ * controller substitutes at deploy time.
545
+ */
546
+ sampleValue: string | null;
547
+ }
519
548
 
520
549
  interface CkModelCatalogDto {
521
550
  name: string;
@@ -571,10 +600,13 @@ interface CkModelLibraryStatusItemDto {
571
600
  isServiceManaged: boolean;
572
601
  isCompatible: boolean;
573
602
  incompatibilityReason?: string;
603
+ unresolvedDependencies: string[];
604
+ hasCatalogInconsistency: boolean;
574
605
  }
575
606
  interface CkModelLibraryStatusResponseDto {
576
607
  items: CkModelLibraryStatusItemDto[];
577
608
  modelsNeedingActionCount: number;
609
+ modelsWithCatalogInconsistencyCount: number;
578
610
  }
579
611
  interface ImportFromCatalogBatchRequestDto {
580
612
  catalogName: string;
@@ -36477,6 +36509,15 @@ declare class CommunicationService {
36477
36509
  * syntax. Read-only; result is identical per tenant on the instance.
36478
36510
  */
36479
36511
  getDomains(tenantId: string): Promise<DomainConfigurationDto[]>;
36512
+ /**
36513
+ * Returns every template placeholder a workload can reference in its
36514
+ * `hostname`, non-secret `valueOverride.value` or `valuesYaml`. Spans
36515
+ * the three families `context.tenantId`, `domain.NAME`, `service.NAME`
36516
+ * in one ordered list so the workload editor can offer a single
36517
+ * suggestion source. Read-only; result is identical per tenant on the
36518
+ * instance.
36519
+ */
36520
+ getWorkloadVariables(tenantId: string): Promise<WorkloadVariableDto[]>;
36480
36521
  /**
36481
36522
  * Undeploys a single workload (Adapter or Application). Triggers a
36482
36523
  * helm-uninstall for the workload only; the pool itself stays deployed.
@@ -36825,4 +36866,4 @@ declare class OctoGraphQLServiceBase {
36825
36866
  declare function provideOctoServices(octoServiceOptions?: OctoServiceOptions): EnvironmentProviders;
36826
36867
 
36827
36868
  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, 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 };
36828
- 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, DomainConfigurationDto, EmailDomainGroupRuleDto, EmailDomainGroupRulesResult, 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, OctoSubscriptionsIndustryBasicAlarmEventsArgsDto, OctoSubscriptionsIndustryBasicEventEventsArgsDto, OctoSubscriptionsIndustryBasicMachineEventsArgsDto, OctoSubscriptionsIndustryBasicRuntimeVariableEventsArgsDto, OctoSubscriptionsIndustryEnergyDemandResponseEventEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyConsumerEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyCostEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyForecastEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyMeterEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyPerformanceIndicatorEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyStorageEventsArgsDto, OctoSubscriptionsIndustryEnergyInverterEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemModuleEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemStringEventsArgsDto, OctoSubscriptionsOctoSdkDemoCustomerEventsArgsDto, OctoSubscriptionsOctoSdkDemoMeteringPointEventsArgsDto, OctoSubscriptionsOctoSdkDemoOperatingFacilityEventsArgsDto, OctoSubscriptionsSystemAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemAggregationSdQueryEventsArgsDto, OctoSubscriptionsSystemAutoIncrementEventsArgsDto, OctoSubscriptionsSystemBlueprintBackupEventsArgsDto, OctoSubscriptionsSystemBlueprintHistoryEventsArgsDto, OctoSubscriptionsSystemBlueprintInstallationEventsArgsDto, 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, OctoSubscriptionsSystemIdentityClientMirrorEventsArgsDto, 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, RuntimeModelQueryIndustryBasicAlarmArgsDto, RuntimeModelQueryIndustryBasicEventArgsDto, RuntimeModelQueryIndustryBasicMachineArgsDto, RuntimeModelQueryIndustryBasicRuntimeVariableArgsDto, RuntimeModelQueryIndustryEnergyDemandResponseEventArgsDto, RuntimeModelQueryIndustryEnergyEnergyConsumerArgsDto, RuntimeModelQueryIndustryEnergyEnergyCostArgsDto, RuntimeModelQueryIndustryEnergyEnergyForecastArgsDto, RuntimeModelQueryIndustryEnergyEnergyMeterArgsDto, RuntimeModelQueryIndustryEnergyEnergyPerformanceIndicatorArgsDto, RuntimeModelQueryIndustryEnergyEnergyStorageArgsDto, RuntimeModelQueryIndustryEnergyInverterArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemModuleArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemStringArgsDto, RuntimeModelQueryOctoSdkDemoCustomerArgsDto, RuntimeModelQueryOctoSdkDemoMeteringPointArgsDto, RuntimeModelQueryOctoSdkDemoOperatingFacilityArgsDto, RuntimeModelQueryRuntimeEntitiesArgsDto, RuntimeModelQueryRuntimeQueryArgsDto, RuntimeModelQuerySystemAggregationRtQueryArgsDto, RuntimeModelQuerySystemAggregationSdQueryArgsDto, RuntimeModelQuerySystemAutoIncrementArgsDto, RuntimeModelQuerySystemBlueprintBackupArgsDto, RuntimeModelQuerySystemBlueprintHistoryArgsDto, RuntimeModelQuerySystemBlueprintInstallationArgsDto, 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, RuntimeModelQuerySystemIdentityClientMirrorArgsDto, 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, SystemBlueprintBackupAssociationsArgsDto, SystemBlueprintBackupConfiguredByArgsDto, SystemBlueprintBackupConnectionDto, SystemBlueprintBackupDto, SystemBlueprintBackupEdgeDto, SystemBlueprintBackupInputDto, SystemBlueprintBackupInputUpdateDto, SystemBlueprintBackupMapsFromArgsDto, SystemBlueprintBackupMapsToArgsDto, SystemBlueprintBackupMutationsCreateArgsDto, SystemBlueprintBackupMutationsDto, SystemBlueprintBackupMutationsUpdateArgsDto, SystemBlueprintBackupRelatesFromArgsDto, SystemBlueprintBackupRelatesToArgsDto, SystemBlueprintBackupTaggedByArgsDto, SystemBlueprintBackupUpdateDto, SystemBlueprintBackupUpdateMessageDto, SystemBlueprintHistoryAssociationsArgsDto, SystemBlueprintHistoryConfiguredByArgsDto, SystemBlueprintHistoryConnectionDto, SystemBlueprintHistoryDto, SystemBlueprintHistoryEdgeDto, SystemBlueprintHistoryInputDto, SystemBlueprintHistoryInputUpdateDto, SystemBlueprintHistoryMapsFromArgsDto, SystemBlueprintHistoryMapsToArgsDto, SystemBlueprintHistoryMutationsCreateArgsDto, SystemBlueprintHistoryMutationsDto, SystemBlueprintHistoryMutationsUpdateArgsDto, SystemBlueprintHistoryRelatesFromArgsDto, SystemBlueprintHistoryRelatesToArgsDto, SystemBlueprintHistoryTaggedByArgsDto, SystemBlueprintHistoryUpdateDto, SystemBlueprintHistoryUpdateMessageDto, SystemBlueprintInstallationAssociationsArgsDto, SystemBlueprintInstallationConfiguredByArgsDto, SystemBlueprintInstallationConnectionDto, SystemBlueprintInstallationDto, SystemBlueprintInstallationEdgeDto, SystemBlueprintInstallationInputDto, SystemBlueprintInstallationInputUpdateDto, SystemBlueprintInstallationMapsFromArgsDto, SystemBlueprintInstallationMapsToArgsDto, SystemBlueprintInstallationMutationsCreateArgsDto, SystemBlueprintInstallationMutationsDto, SystemBlueprintInstallationMutationsUpdateArgsDto, SystemBlueprintInstallationRelatesFromArgsDto, SystemBlueprintInstallationRelatesToArgsDto, SystemBlueprintInstallationTaggedByArgsDto, SystemBlueprintInstallationUpdateDto, SystemBlueprintInstallationUpdateMessageDto, 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, SystemIdentityClientMirrorAssociationsArgsDto, SystemIdentityClientMirrorConfiguredByArgsDto, SystemIdentityClientMirrorConnectionDto, SystemIdentityClientMirrorDto, SystemIdentityClientMirrorEdgeDto, SystemIdentityClientMirrorInputDto, SystemIdentityClientMirrorInputUpdateDto, SystemIdentityClientMirrorMapsFromArgsDto, SystemIdentityClientMirrorMapsToArgsDto, SystemIdentityClientMirrorMutationsCreateArgsDto, SystemIdentityClientMirrorMutationsDto, SystemIdentityClientMirrorMutationsUpdateArgsDto, SystemIdentityClientMirrorRelatesFromArgsDto, SystemIdentityClientMirrorRelatesToArgsDto, SystemIdentityClientMirrorTaggedByArgsDto, SystemIdentityClientMirrorUpdateDto, SystemIdentityClientMirrorUpdateMessageDto, 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 };
36869
+ 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, DomainConfigurationDto, EmailDomainGroupRuleDto, EmailDomainGroupRulesResult, 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, OctoSubscriptionsIndustryBasicAlarmEventsArgsDto, OctoSubscriptionsIndustryBasicEventEventsArgsDto, OctoSubscriptionsIndustryBasicMachineEventsArgsDto, OctoSubscriptionsIndustryBasicRuntimeVariableEventsArgsDto, OctoSubscriptionsIndustryEnergyDemandResponseEventEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyConsumerEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyCostEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyForecastEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyMeterEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyPerformanceIndicatorEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyStorageEventsArgsDto, OctoSubscriptionsIndustryEnergyInverterEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemModuleEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemStringEventsArgsDto, OctoSubscriptionsOctoSdkDemoCustomerEventsArgsDto, OctoSubscriptionsOctoSdkDemoMeteringPointEventsArgsDto, OctoSubscriptionsOctoSdkDemoOperatingFacilityEventsArgsDto, OctoSubscriptionsSystemAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemAggregationSdQueryEventsArgsDto, OctoSubscriptionsSystemAutoIncrementEventsArgsDto, OctoSubscriptionsSystemBlueprintBackupEventsArgsDto, OctoSubscriptionsSystemBlueprintHistoryEventsArgsDto, OctoSubscriptionsSystemBlueprintInstallationEventsArgsDto, 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, OctoSubscriptionsSystemIdentityClientMirrorEventsArgsDto, 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, RuntimeModelQueryIndustryBasicAlarmArgsDto, RuntimeModelQueryIndustryBasicEventArgsDto, RuntimeModelQueryIndustryBasicMachineArgsDto, RuntimeModelQueryIndustryBasicRuntimeVariableArgsDto, RuntimeModelQueryIndustryEnergyDemandResponseEventArgsDto, RuntimeModelQueryIndustryEnergyEnergyConsumerArgsDto, RuntimeModelQueryIndustryEnergyEnergyCostArgsDto, RuntimeModelQueryIndustryEnergyEnergyForecastArgsDto, RuntimeModelQueryIndustryEnergyEnergyMeterArgsDto, RuntimeModelQueryIndustryEnergyEnergyPerformanceIndicatorArgsDto, RuntimeModelQueryIndustryEnergyEnergyStorageArgsDto, RuntimeModelQueryIndustryEnergyInverterArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemModuleArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemStringArgsDto, RuntimeModelQueryOctoSdkDemoCustomerArgsDto, RuntimeModelQueryOctoSdkDemoMeteringPointArgsDto, RuntimeModelQueryOctoSdkDemoOperatingFacilityArgsDto, RuntimeModelQueryRuntimeEntitiesArgsDto, RuntimeModelQueryRuntimeQueryArgsDto, RuntimeModelQuerySystemAggregationRtQueryArgsDto, RuntimeModelQuerySystemAggregationSdQueryArgsDto, RuntimeModelQuerySystemAutoIncrementArgsDto, RuntimeModelQuerySystemBlueprintBackupArgsDto, RuntimeModelQuerySystemBlueprintHistoryArgsDto, RuntimeModelQuerySystemBlueprintInstallationArgsDto, 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, RuntimeModelQuerySystemIdentityClientMirrorArgsDto, 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, SystemBlueprintBackupAssociationsArgsDto, SystemBlueprintBackupConfiguredByArgsDto, SystemBlueprintBackupConnectionDto, SystemBlueprintBackupDto, SystemBlueprintBackupEdgeDto, SystemBlueprintBackupInputDto, SystemBlueprintBackupInputUpdateDto, SystemBlueprintBackupMapsFromArgsDto, SystemBlueprintBackupMapsToArgsDto, SystemBlueprintBackupMutationsCreateArgsDto, SystemBlueprintBackupMutationsDto, SystemBlueprintBackupMutationsUpdateArgsDto, SystemBlueprintBackupRelatesFromArgsDto, SystemBlueprintBackupRelatesToArgsDto, SystemBlueprintBackupTaggedByArgsDto, SystemBlueprintBackupUpdateDto, SystemBlueprintBackupUpdateMessageDto, SystemBlueprintHistoryAssociationsArgsDto, SystemBlueprintHistoryConfiguredByArgsDto, SystemBlueprintHistoryConnectionDto, SystemBlueprintHistoryDto, SystemBlueprintHistoryEdgeDto, SystemBlueprintHistoryInputDto, SystemBlueprintHistoryInputUpdateDto, SystemBlueprintHistoryMapsFromArgsDto, SystemBlueprintHistoryMapsToArgsDto, SystemBlueprintHistoryMutationsCreateArgsDto, SystemBlueprintHistoryMutationsDto, SystemBlueprintHistoryMutationsUpdateArgsDto, SystemBlueprintHistoryRelatesFromArgsDto, SystemBlueprintHistoryRelatesToArgsDto, SystemBlueprintHistoryTaggedByArgsDto, SystemBlueprintHistoryUpdateDto, SystemBlueprintHistoryUpdateMessageDto, SystemBlueprintInstallationAssociationsArgsDto, SystemBlueprintInstallationConfiguredByArgsDto, SystemBlueprintInstallationConnectionDto, SystemBlueprintInstallationDto, SystemBlueprintInstallationEdgeDto, SystemBlueprintInstallationInputDto, SystemBlueprintInstallationInputUpdateDto, SystemBlueprintInstallationMapsFromArgsDto, SystemBlueprintInstallationMapsToArgsDto, SystemBlueprintInstallationMutationsCreateArgsDto, SystemBlueprintInstallationMutationsDto, SystemBlueprintInstallationMutationsUpdateArgsDto, SystemBlueprintInstallationRelatesFromArgsDto, SystemBlueprintInstallationRelatesToArgsDto, SystemBlueprintInstallationTaggedByArgsDto, SystemBlueprintInstallationUpdateDto, SystemBlueprintInstallationUpdateMessageDto, 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, SystemIdentityClientMirrorAssociationsArgsDto, SystemIdentityClientMirrorConfiguredByArgsDto, SystemIdentityClientMirrorConnectionDto, SystemIdentityClientMirrorDto, SystemIdentityClientMirrorEdgeDto, SystemIdentityClientMirrorInputDto, SystemIdentityClientMirrorInputUpdateDto, SystemIdentityClientMirrorMapsFromArgsDto, SystemIdentityClientMirrorMapsToArgsDto, SystemIdentityClientMirrorMutationsCreateArgsDto, SystemIdentityClientMirrorMutationsDto, SystemIdentityClientMirrorMutationsUpdateArgsDto, SystemIdentityClientMirrorRelatesFromArgsDto, SystemIdentityClientMirrorRelatesToArgsDto, SystemIdentityClientMirrorTaggedByArgsDto, SystemIdentityClientMirrorUpdateDto, SystemIdentityClientMirrorUpdateMessageDto, 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, WorkloadVariableDto };