diff --git a/backend/dataall/core/organizations/api/mutations.py b/backend/dataall/core/organizations/api/mutations.py index 795400ea8..cc7422786 100644 --- a/backend/dataall/core/organizations/api/mutations.py +++ b/backend/dataall/core/organizations/api/mutations.py @@ -4,7 +4,14 @@ NewOrganizationInput, InviteGroupToOrganizationInput, ) -from .resolvers import archive_organization, create_organization, invite_group, remove_group, update_organization +from .resolvers import ( + archive_organization, + create_organization, + invite_group, + remove_group, + update_organization, + send_query_chatbot, +) from .types import Organization createOrganization = gql.MutationField( @@ -49,3 +56,12 @@ type=gql.Ref('Organization'), resolver=remove_group, ) + +sendQueryChatbot = gql.MutationField( + name='sendQueryChatbot', + type=gql.Ref('ChatbotResponse'), + args=[ + gql.Argument(name='queryString', type=gql.NonNullableType(gql.String)), + ], + resolver=send_query_chatbot, +) diff --git a/backend/dataall/core/organizations/api/resolvers.py b/backend/dataall/core/organizations/api/resolvers.py index 45d849d63..8a1f511fa 100644 --- a/backend/dataall/core/organizations/api/resolvers.py +++ b/backend/dataall/core/organizations/api/resolvers.py @@ -87,3 +87,7 @@ def resolve_organization_by_env(context, source, **kwargs): return None return OrganizationService.resolve_organization_by_env(uri=source.environmentUri) + + +def send_query_chatbot(context, source, queryString): + return {'response': 'Response'} diff --git a/backend/dataall/core/organizations/api/types.py b/backend/dataall/core/organizations/api/types.py index 24acbef1e..97f777b74 100644 --- a/backend/dataall/core/organizations/api/types.py +++ b/backend/dataall/core/organizations/api/types.py @@ -60,3 +60,8 @@ gql.Field(name='name', type=gql.String), ], ) + +ChatbotResponse = gql.ObjectType( + name='ChatbotResponse', + fields=[gql.Field(name='response', type=gql.String)], +) diff --git a/backend/dataall/modules/dataset_sharing/services/share_object_service.py b/backend/dataall/modules/dataset_sharing/services/share_object_service.py index 371e619f8..7d26a5613 100644 --- a/backend/dataall/modules/dataset_sharing/services/share_object_service.py +++ b/backend/dataall/modules/dataset_sharing/services/share_object_service.py @@ -60,8 +60,8 @@ class ShareObjectService: @staticmethod def check_view_log_permissions(username, groups, shareUri): with get_context().db_engine.scoped_session() as session: - share: ShareObject = ShareObjectRepository.get_share_by_uri(session, shareUri) - ds: Dataset = DatasetRepository.get_dataset_by_uri(session, share.datasetUri) + share = ShareObjectRepository.get_share_by_uri(session, shareUri) + ds = DatasetRepository.get_dataset_by_uri(session, share.datasetUri) return ds.stewards in groups or ds.SamlAdminGroupName in groups or username == ds.owner @staticmethod @@ -608,8 +608,8 @@ def attach_dataset_folder_read_permission(session, share): def get_share_logs_name_query(shareUri): log.info(f'Get share Logs stream name for share {shareUri}') - query = """fields @logStream - |filter @message like 'bmm02skg' + query = f"""fields @logStream + |filter @message like '{shareUri}' | sort @timestamp desc | limit 1 """ @@ -629,7 +629,7 @@ def get_share_logs(shareUri): if not ShareObjectService.check_view_log_permissions(context.username, context.groups, shareUri): raise exceptions.ResourceUnauthorized( username=context.username, - action='view logs', + action='View Share Logs', resource_uri=shareUri, ) diff --git a/backend/test-query.graphql b/backend/test-query.graphql deleted file mode 100644 index 827f79815..000000000 --- a/backend/test-query.graphql +++ /dev/null @@ -1,2181 +0,0 @@ -enum EnvironmentSortField { - created - label -} - -enum SortDirection { - asc - desc -} - -enum OrganizationSortField { - created - updated - label -} - -enum OrganisationUserRole { - Owner - Admin - Member - NotMember - Invited -} - -enum EnvironmentPermission { - Owner - Admin - DatasetCreator - Invited - ProjectAccess - NotInvited -} - -enum SagemakerStudioRole { - Creator - Admin - NoPermission -} - -enum SagemakerNotebookRole { - CREATOR - ADMIN - NO_PERMISSION -} - -enum GlossaryRole { - Admin - NoPermission -} - -enum DataPipelineRole { - Creator - Admin - NoPermission -} - -enum DatasetSortField { - label - created - updated -} - -enum DatasetRole { - BusinessOwner - DataSteward - Creator - Admin - Shared - NoPermission -} - -enum DashboardRole { - Creator - Admin - Shared - NoPermission -} - -enum ShareableType { - Table - StorageLocation - View - S3Bucket -} - -enum ShareSortField { - created - updated - label -} - -enum ShareItemHealthStatus { - Healthy - Unhealthy - PendingVerify - PendingReApply -} - -enum PrincipalType { - Any - Organization - Environment - User - Project - Public - Group - ConsumptionRole -} - -enum EnvironmentType { - Data - Compute -} - -enum DatasetType { - S3 -} - -enum ConfidentialityClassification { - Unclassified - Official - Secret -} - -enum Language { - English - French - German -} - -enum Topic { - Finances - HumanResources - Products - Services - Operations - Research - Sales - Orders - Sites - Energy - Customers - Misc -} - -enum ShareObjectPermission { - Approvers - ApproversAndRequesters - Requesters - DatasetAdmins - NoPermission -} - -enum ShareObjectStatus { - Deleted - Approved - Rejected - Revoked - Draft - Submitted - Revoke_In_Progress - Share_In_Progress - Processed -} - -enum ShareItemStatus { - Deleted - PendingApproval - Share_Approved - Share_Rejected - Share_In_Progress - Share_Succeeded - Share_Failed - Revoke_Approved - Revoke_In_Progress - Revoke_Failed - Revoke_Succeeded -} - -enum ShareObjectActions { - Submit - Approve - Reject - RevokeItems - Start - Finish - FinishPending - Delete - AcquireLockFailure -} - -enum ShareItemActions { - AddItem - RemoveItem - Failure - Success -} - -enum WorksheetRole { - Creator - Admin - NoPermission -} - -input UpdateGroupTenantPermissionsInput { - permissions: [String] - groupUri: String! -} - -input KeyValueTagInput { - key: String! - value: String! - cascade: Boolean! -} - -input UpdateKeyValueTagsInput { - targetUri: String! - targetType: String! - tags: [KeyValueTagInput] -} - -input AwsEnvironmentInput { - AwsAccountId: String! - region: String! -} - -input ModifyEnvironmentParameterInput { - key: String - value: String -} - -input NewEnvironmentInput { - label: String! - organizationUri: String! - SamlGroupName: String! - tags: [String] - description: String - AwsAccountId: String! - region: String! - EnvironmentDefaultIAMRoleArn: String - resourcePrefix: String - parameters: [ModifyEnvironmentParameterInput] - vpcId: String - subnetIds: [String] -} - -input ModifyEnvironmentInput { - label: String - description: String - tags: [String] - SamlGroupName: String - resourcePrefix: String - parameters: [ModifyEnvironmentParameterInput] - vpcId: String - subnetIds: [String] -} - -input EnableDataSubscriptionsInput { - producersTopicArn: String -} - -input EnvironmentSortCriteria { - field: EnvironmentSortField! - direction: SortDirection! -} - -input EnvironmentFilter { - term: String - page: Int - displayArchived: Boolean - roles: [EnvironmentPermission] - quicksight: Boolean - SamlGroupName: String - sort: [EnvironmentSortCriteria] - pageSize: Int -} - -input InviteGroupOnEnvironmentInput { - permissions: [String] - environmentUri: String! - groupUri: String! - environmentIAMRoleArn: String -} - -input AddConsumptionRoleToEnvironmentInput { - consumptionRoleName: String! - groupUri: String! - IAMRoleArn: String! - environmentUri: String! - dataallManaged: Boolean! -} - -input ConsumptionRoleFilter { - term: String - page: Int - pageSize: Int - groupUri: String -} - -input UpdateConsumptionRoleInput { - consumptionRoleName: String - groupUri: String -} - -input VpcFilter { - term: String - page: Int - pageSize: Int -} - -input NewVpcInput { - label: String! - environmentUri: String! - vpcId: String! - publicSubnetIds: [String] - privateSubnetIds: [String] - description: String - SamlGroupName: String! - tags: [String] -} - -input NewOrganizationInput { - label: String - description: String - tags: [String] - SamlGroupName: String -} - -input ModifyOrganizationInput { - label: String - description: String - SamlGroupName: String - tags: [String] -} - -input OrganizationSortCriteria { - field: OrganizationSortField! - direction: SortDirection! -} - -input OrganizationFilter { - term: String - displayArchived: Boolean - sort: [OrganizationSortCriteria] - page: Int - pageSize: Int - roles: [OrganisationUserRole] - tags: [String] -} - -input InviteGroupToOrganizationInput { - organizationUri: String! - groupUri: String! -} - -input GroupFilter { - term: String - page: Int - pageSize: Int -} - -input ServiceProviderGroupFilter { - type: String - uri: String -} - -input NewSagemakerStudioUserInput { - label: String! - description: String - environmentUri: String! - tags: [String] - topics: String - SamlAdminGroupName: String! -} - -input ModifySagemakerStudioUserInput { - label: String - tags: [String] - description: String -} - -input SagemakerStudioUserFilter { - term: String - page: Int - pageSize: Int - sort: String - limit: Int - offset: Int -} - -input NewSagemakerNotebookInput { - label: String! - description: String - environmentUri: String! - SamlAdminGroupName: String! - tags: [String] - topics: String - VpcId: String - SubnetId: String - VolumeSizeInGB: Int - InstanceType: String -} - -input ModifySagemakerNotebookInput { - label: String - tags: [String] - description: String -} - -input SagemakerNotebookFilter { - term: String - page: Int - pageSize: Int - sort: String - limit: Int - offset: Int -} - -input NotificationFilter { - term: String - read: Boolean - unread: Boolean - archived: Boolean - type: String - page: Int - pageSize: Int -} - -input CreateGlossaryInput { - label: String! - readme: String! - status: String - admin: String -} - -input UpdateGlossaryInput { - label: String - readme: String - status: String - admin: String -} - -input CreateCategoryInput { - label: String! - readme: String! - status: String -} - -input UpdateCategoryInput { - label: String - readme: String - status: String -} - -input CreateTermInput { - label: String! - readme: String! - status: String -} - -input UpdateTermInput { - label: String - readme: String - status: String -} - -input GlossaryFilter { - term: String - status: String - page: Int - pageSize: Int -} - -input CategoryFilter { - term: String - page: Int - status: String - pageSize: Int -} - -input TermFilter { - status: String - term: String - page: Int - pageSize: Int -} - -input GlossaryTermTargetFilter { - term: String - page: Int - pageSize: Int -} - -input GlossaryNodeSearchFilter { - term: String - nodeType: String - page: Int - pageSize: Int -} - -input FeedMessageInput { - content: String -} - -input FeedMessageFilter { - term: String - page: Int - pageSize: Int -} - -input VoteInput { - targetUri: String! - targetType: String! - upvote: Boolean! -} - -input NewDataPipelineInput { - label: String! - environmentUri: String! - description: String - SamlGroupName: String! - tags: [String] - devStrategy: String! -} - -input NewDataPipelineEnvironmentInput { - stage: String! - order: Int! - pipelineUri: String! - environmentLabel: String! - environmentUri: String! - samlGroupName: String! -} - -input UpdateDataPipelineInput { - label: String - description: String - tags: [String] -} - -input DataPipelineFilter { - term: String - region: [String] - tags: [String] - type: [String] - page: Int - pageSize: Int -} - -input DataPipelineEnvironmentFilter { - term: String - page: Int - pageSize: Int - pipelineUri: String -} - -input DataPipelineBrowseInput { - DataPipelineUri: String! - branch: String! - folderPath: String -} - -input DataPipelineFileContentInput { - DataPipelineUri: String! - branch: String! - absolutePath: String! -} - -input DatasetTableColumnFilter { - term: String - page: Int - pageSize: Int -} - -input DatasetTableColumnInput { - description: String - classification: Int - tags: Int - topics: Int -} - -input StartDatasetProfilingRunInput { - datasetUri: String! - GlueTableName: String - tableUri: String -} - -input DatasetProfilingRunFilter { - page: Int - pageSize: Int - term: String -} - -input NewDatasetStorageLocationInput { - label: String! - description: String - tags: [String] - terms: [String] - prefix: String! -} - -input ModifyDatasetStorageLocationInput { - locationUri: String - label: String - description: String - tags: [String] - terms: [String] -} - -input DatasetStorageLocationFilter { - term: String - page: Int - pageSize: Int -} - -input DatasetAccessPointFilter { - page: Int - pageSize: Int -} - -input ModifyDatasetTableInput { - label: String - prefix: String - description: String - tags: [String] - terms: [String] - topics: [String] -} - -input DatasetSortCriteria { - field: DatasetSortField! - direction: SortDirection -} - -input DatasetTableFilter { - term: String - sort: [DatasetSortCriteria] - page: Int - pageSize: Int -} - -input NewDatasetInput { - label: String! - organizationUri: String! - environmentUri: String! - description: String - tags: [String] - owner: String - language: Language - topics: [Topic] - SamlAdminGroupName: String! - businessOwnerEmail: String - businessOwnerDelegationEmails: [String] - confidentiality: String - stewards: String - autoApprovalEnabled: Boolean -} - -input ModifyDatasetInput { - label: String - description: String - tags: [String] - topics: [Topic] - terms: [String] - businessOwnerDelegationEmails: [String] - businessOwnerEmail: String - language: Language - confidentiality: String - stewards: String - KmsAlias: String! - autoApprovalEnabled: Boolean -} - -input DatasetFilter { - term: String - roles: [DatasetRole] - InProject: String - notInProject: String - displayArchived: Boolean - sort: [DatasetSortCriteria] - page: Int - pageSize: Int -} - -input DatasetPresignedUrlInput { - fileName: String - prefix: String -} - -input CrawlerInput { - prefix: String -} - -input ImportDatasetInput { - label: String! - organizationUri: String! - environmentUri: String! - description: String - bucketName: String! - glueDatabaseName: String - KmsKeyAlias: String! - adminRoleName: String - tags: [String] - owner: String! - language: Language - topics: [Topic] - SamlAdminGroupName: String! - businessOwnerEmail: String - businessOwnerDelegationEmails: [String] - confidentiality: String - stewards: String - autoApprovalEnabled: Boolean -} - -input ShareObjectSelectorInput { - datasetUri: String! - shareUris: [String]! -} - -input ImportDashboardInput { - label: String! - environmentUri: String! - description: String - SamlGroupName: String - tags: [String] - dashboardId: String! - terms: [String] -} - -input UpdateDashboardInput { - dashboardUri: String! - label: String - description: String - tags: [String] - terms: [String] -} - -input DashboardFilter { - term: String - page: Int - pageSize: Int -} - -input DashboardShareFilter { - term: String - page: Int - pageSize: Int -} - -input NewShareObjectInput { - environmentUri: String! - groupUri: String! - principalId: String! - principalType: String! - requestPurpose: String - attachMissingPolicies: Boolean! -} - -input AddSharedItemInput { - itemUri: String! - itemType: ShareableType! -} - -input ShareItemSelectorInput { - shareUri: String! - itemUris: [String]! -} - -input ShareSortCriteria { - field: ShareSortField! - direction: SortDirection! -} - -input ShareObjectFilter { - term: String - sort: [ShareSortCriteria] - page: Int - pageSize: Int - status: [String] - dataset_owners: [String] - datasets_uris: [String] - share_requesters: [String] - share_iam_roles: [String] -} - -input ShareableObjectFilter { - term: String - tags: [String] - isShared: Boolean - isRevokable: Boolean - isHealthy: Boolean - page: Int - pageSize: Int -} - -input EnvironmentDataItemFilter { - itemTypes: [String] - term: String - page: Int - pageSize: Int - uniqueShares: Boolean -} - -input PrincipalFilter { - page: Int - pageSize: Int - principalType: PrincipalType - term: String -} - -input NewWorksheetInput { - label: String - description: String - tags: [String] - SamlAdminGroupName: String! -} - -input UpdateWorksheetInput { - label: String - description: String - tags: [String] - sqlBody: String - chartConfig: WorksheetChartConfigInput -} - -input WorksheetChartInput { - chartConfig: String - label: String - description: String -} - -input WorksheetQueryInput { - sqlBody: String - AthenaQueryId: String - environmentUri: String! -} - -input WorksheetFilter { - term: String - page: Int - pageSize: Int -} - -input WorksheetDimensionInput { - columnName: String -} - -input WorksheetMeasureInput { - columnName: String - aggregationName: String -} - -input WorksheetChartConfigInput { - chartType: String - dimensions: [WorksheetDimensionInput] - measures: [WorksheetMeasureInput] -} - -union GlossaryNode = Glossary | Category | Term - -union FeedTarget = DataPipeline | DatasetStorageLocation | DatasetTable | Dataset | Dashboard - -union ShareableObject = DatasetTable | DatasetStorageLocation - -type Permission { - permissionUri: String! - type: String - name: String! - description: String! -} - -type PermissionSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Permission] -} - -type Tenant { - tenantUri: ID - name: String - created: String -} - -type Vpc { - VpcId: String! - vpcUri: ID! - environment: Environment - label: String - owner: String - name: String - description: String - tags: [String] - AwsAccountId: String! - region: String! - privateSubnetIds: [String] - publicSubnetIds: [String] - SamlGroupName: String - default: Boolean -} - -type VpcSearchResult { - count: Int - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Vpc] -} - -type OrganizationStats { - groups: Int - users: Int - environments: Int -} - -type Organization { - organizationUri: ID - label: String - name: String - description: String - tags: [String] - owner: String - SamlGroupName: String - userRoleInOrganization: OrganisationUserRole - environments(filter: EnvironmentFilter): EnvironmentSearchResult - created: String - updated: String - stats: OrganizationStats -} - -type OrganizationSearchResult { - count: Int - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Organization] -} - -type OrganizationSimplified { - organizationUri: ID - label: String - name: String -} - -type EnvironmentUserPermission { - userName: String - created: String - updated: String - userRoleInEnvironment: EnvironmentPermission -} - -type EnvironmentUserPermissionSearchResult { - count: Int - nodes: [EnvironmentUserPermission] -} - -type EnvironmentGroupPermission { - groupUri: String - created: String - updated: String - groupRoleInEnvironment: EnvironmentPermission - Group: Group -} - -type EnvironmentGroupPermissionSearchResult { - count: Int - nodes: [EnvironmentGroupPermission] -} - -type EnvironmentParameter { - key: String - value: String -} - -type Environment { - environmentUri: ID - label: String - name: String - description: String - owner: String - created: String - updated: String - deleted: String - tags: [String] - admins: [String] - environmentType: String - AwsAccountId: String - region: String - SamlGroupName: String - resourcePrefix: String - EnvironmentDefaultIAMRoleArn: String - EnvironmentDefaultIAMRoleName: String - EnvironmentDefaultIAMRoleImported: Boolean - datasets: String - organization: OrganizationSimplified - userRoleInEnvironment: EnvironmentPermission - validated: Boolean - roleCreated: Boolean - isOrganizationDefaultEnvironment: Boolean - stack: Stack - subscriptionsEnabled: Boolean - subscriptionsProducersTopicImported: Boolean - subscriptionsConsumersTopicImported: Boolean - subscriptionsConsumersTopicName: String - subscriptionsProducersTopicName: String - EnvironmentDefaultBucketName: String - EnvironmentDefaultAthenaWorkGroup: String - networks: [Vpc] - parameters: [EnvironmentParameter] -} - -type EnvironmentSearchResult { - count: Int - nodes: [Environment] - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type EnvironmentSimplified { - environmentUri: ID - label: String - region: String - organization: OrganizationSimplified - networks: [Vpc] -} - -type EnvironmentSimplifiedSearchResult { - count: Int - nodes: [EnvironmentSimplified] -} - -type RoleManagedPolicy { - policy_name: String - policy_type: String - exists: Boolean - attached: Boolean -} - -type ConsumptionRole { - consumptionRoleUri: String - consumptionRoleName: String - groupUri: String - environmentUri: String - IAMRoleArn: String - IAMRoleName: String - dataallManaged: Boolean - created: String - updated: String - deleted: String - managedPolicies: [RoleManagedPolicy] -} - -type ConsumptionRoleSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [ConsumptionRole] -} - -type Stack { - stackUri: ID - targetUri: String! - stack: String! - environmentUri: String - name: String - accountid: String! - region: String! - status: String - stackid: String - link: String - outputs: String - resources: String - error: String - events: String - EcsTaskArn: String - EcsTaskId: String -} - -type StackLog { - logStream: String - logGroup: String - timestamp: String - message: String -} - -type KeyValueTag { - tagUri: ID - targetType: String - targetUri: String - key: String - value: String - cascade: Boolean -} - -type Group { - groupUri: String - invitedBy: String - owner: String - label: String - name: String - description: String - tags: [String] - created: String - updated: String - environmentIAMRoleArn: String - environmentIAMRoleName: String - environmentAthenaWorkGroup: String - environmentPermissions(environmentUri: String): [Permission] - tenantPermissions: [Permission] -} - -type GroupSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Group] -} - -type GroupsInfo { - groupName: String -} - -type SagemakerStudioUserApps { - DomainId: String - UserName: String - AppType: String - AppName: String - Status: String -} - -type SagemakerStudioUser { - sagemakerStudioUserUri: ID - environmentUri: String! - label: String - description: String - tags: [String] - name: String - owner: String - created: String - updated: String - SamlAdminGroupName: String - userRoleForSagemakerStudioUser: SagemakerStudioRole - sagemakerStudioUserStatus: String - sagemakerStudioUserApps: [SagemakerStudioUserApps] - environment: Environment - organization: Organization - stack: Stack -} - -type SagemakerStudioUserSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [SagemakerStudioUser] -} - -type SagemakerStudioDomain { - sagemakerStudioUri: ID - environmentUri: String! - sagemakerStudioDomainName: String - DefaultDomainRoleName: String - label: String - name: String - vpcType: String - vpcId: String - subnetIds: [String] - owner: String - created: String - updated: String - deleted: String - environment: Environment -} - -type SagemakerNotebook { - notebookUri: ID - environmentUri: String! - label: String - description: String - tags: [String] - name: String - owner: String - created: String - updated: String - SamlAdminGroupName: String - VpcId: String - SubnetId: String - InstanceType: String - RoleArn: String - VolumeSizeInGB: Int - userRoleForNotebook: SagemakerNotebookRole - NotebookInstanceStatus: String - environment: Environment - organization: Organization - stack: Stack -} - -type SagemakerNotebookSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [SagemakerNotebook] -} - -type Notification { - notificationUri: String! - type: String - message: String - username: String! - target_uri: String! - is_read: Boolean - created: String - updated: String -} - -type NotificationSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Notification] -} - -type GlossaryChildrenSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [GlossaryNode] -} - -type Glossary { - nodeUri: ID - parentUri: String! - status: String - owner: String! - path: String! - label: String! - name: String! - admin: String - userRoleForGlossary: GlossaryRole - readme: String - created: String! - updated: String - deleted: String - isMatch: Boolean - assetLink(targetUri: String): GlossaryTermLink - stats: GlossaryNodeStatistics - tree(filter: GlossaryNodeSearchFilter): GlossaryChildrenSearchResult - children(filter: GlossaryNodeSearchFilter): GlossaryChildrenSearchResult - categories(filter: CategoryFilter): CategorySearchResult - associations(filter: GlossaryTermTargetFilter): TermLinkSearchResults -} - -type Category { - nodeUri: ID - parentUri: String! - owner: String! - path: String! - label: String! - status: String! - name: String! - readme: String - created: String! - updated: String - deleted: String - isMatch: Boolean - assetLink(targetUri: String): GlossaryTermLink - stats: GlossaryNodeStatistics - children(filter: GlossaryNodeSearchFilter): GlossaryChildrenSearchResult - categories(filter: CategoryFilter): CategorySearchResult - terms(filter: TermFilter): TermSearchResult - associations(filter: GlossaryTermTargetFilter): TermLinkSearchResults -} - -type Term { - nodeUri: ID - parentUri: String! - owner: String! - path: String! - label: String! - name: String! - status: String! - readme: String - created: String! - updated: String - deleted: String - isMatch: Boolean - assetLink(targetUri: String): GlossaryTermLink - children(filter: GlossaryNodeSearchFilter): GlossaryChildrenSearchResult - stats: GlossaryNodeStatistics - glossary: Glossary - associations(filter: GlossaryTermTargetFilter): TermLinkSearchResults -} - -type TermLinkSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [GlossaryTermLink] -} - -type TermSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Term] -} - -type CategorySearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Category] -} - -type GlossarySearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Glossary] -} - -type GlossaryTermLinkTarget { - label: String -} - -type GlossaryTermLink { - linkUri: ID - created: String! - updated: String - deleted: String - owner: String - nodeUri: String! - targetUri: String! - targetType: String! - approvedByOwner: Boolean! - approvedBySteward: Boolean! - term: Term - target: GlossaryTermLinkTarget -} - -type GlossaryNodeStatistics { - categories: Int - terms: Int - associations: Int -} - -type Feed { - feedTargetUri: String! - feedTargetType: String! - messages(filter: FeedMessageFilter): FeedMessages -} - -type FeedMessage { - feedMessageUri: ID - creator: String! - content: String - created: String -} - -type FeedMessages { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [FeedMessage] -} - -type Vote { - voteUri: ID - targetType: String - targetUri: String - upvote: Boolean - created: String -} - -type DataPipeline { - DataPipelineUri: ID - name: String - label: String - description: String - tags: [String] - created: String - updated: String - owner: String - repo: String - SamlGroupName: String - organization: Organization - environment: Environment - developmentEnvironments: DataPipelineEnvironmentSearchResults - template: String - devStrategy: String - cloneUrlHttp: String - stack: Stack - userRoleForPipeline: DataPipelineRole -} - -type DataPipelineSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [DataPipeline] -} - -type DataPipelineEnvironment { - envPipelineUri: String - environmentUri: String - environmentLabel: String - pipelineUri: String - pipelineLabel: String - stage: String - order: Int - region: String - AwsAccountId: String - samlGroupName: String -} - -type DataPipelineEnvironmentSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [DataPipelineEnvironment] -} - -type DatasetTableColumn { - tableUri: ID - columnUri: ID - label: String - name: String - description: String - owner: String - created: String - updated: String - AwsAccountId: String - GlueDatabaseName: String - GlueTableName: String - typeName: String - columnType: String - region: String - classification: String - topics: [String] - tags: [String] - terms: TermLinkSearchResults -} - -type DatasetTableColumnSearchResult { - nodes: [DatasetTableColumn] - count: Int - pages: Int - page: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type DatasetProfilingRun { - profilingRunUri: String! - datasetUri: String! - GlueJobName: String - GlueJobRunId: String - GlueTriggerSchedule: String - GlueTriggerName: String - GlueTableName: String - AwsAccountId: String - results: String - created: String - updated: String - owner: String - status: String - dataset: Dataset -} - -type DatasetProfilingRunSearchResults { - count: Int - pages: Int - page: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [DatasetProfilingRun] -} - -type DatasetStorageLocation { - locationUri: ID - label: String - name: String - description: String - owner: String - created: String - updated: String - region: String - tags: [String] - AwsAccountId: String - S3BucketName: String - S3Prefix: String - locationCreated: Boolean - dataset: Dataset - userRoleForStorageLocation: DatasetRole - environmentEndPoint: String - terms: TermSearchResult -} - -type DatasetStorageLocationSearchResult { - nodes: [DatasetStorageLocation] - count: Int - pages: Int - page: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type DatasetAccessPoint { - accessPointUri: ID - location: DatasetStorageLocation - dataset: Dataset - name: String - description: String - owner: String - created: String - updated: String - region: String - AwsAccountId: String - S3BucketName: String - S3Prefix: String - S3AccessPointName: String -} - -type DatasetAccessPointSearchResult { - count: Int - page: Int - pageSize: Int - pages: Int - hasNext: Int - hasPrevious: Int - nodes: [DatasetAccessPoint] -} - -type DatasetStatistics { - tables: Int - locations: Int - upvotes: Int -} - -type Dataset { - datasetUri: ID - label: String - name: String - description: String - tags: [String] - owner: String - created: String - updated: String - admins: [String] - AwsAccountId: String - region: String - S3BucketName: String - GlueDatabaseName: String - GlueCrawlerName: String - GlueCrawlerSchedule: String - GlueProfilingJobName: String - GlueProfilingTriggerSchedule: String - IAMDatasetAdminRoleArn: String - KmsAlias: String - bucketCreated: Boolean - glueDatabaseCreated: Boolean - iamAdminRoleCreated: Boolean - lakeformationLocationCreated: Boolean - bucketPolicyCreated: Boolean - SamlAdminGroupName: String - businessOwnerEmail: String - businessOwnerDelegationEmails: [String] - importedS3Bucket: Boolean - importedGlueDatabase: Boolean - importedKmsKey: Boolean - importedAdminRole: Boolean - imported: Boolean - environment: Environment - organization: Organization - owners: String - stewards: String - tables(filter: DatasetTableFilter): DatasetTableSearchResult - locations(filter: DatasetStorageLocationFilter): DatasetStorageLocationSearchResult - userRoleForDataset: DatasetRole - userRoleInEnvironment: EnvironmentPermission - statistics: DatasetStatistics - terms: TermSearchResult - topics: [Topic] - confidentiality: String - language: Language - projectPermission(projectUri: String): DatasetRole - isPublishedInEnvironment(environmentUri: String): Boolean - stack: Stack - autoApprovalEnabled: Boolean -} - -type DatasetSearchResult { - count: Int - nodes: [Dataset] - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type GlueCrawler { - Name: ID - AwsAccountId: String - region: String - status: String -} - -type TablePermission { - userName: String - created: String -} - -type TablePermissionSearchResult { - count: Int - nodes: [TablePermission] -} - -type DatasetTable { - tableUri: ID - datasetUri: String - dataset: Dataset - label: String - name: String - description: String - owner: String - created: String - updated: String - admins: [String] - AwsAccountId: String - GlueDatabaseName: String - GlueTableName: String - LastGlueTableStatus: String - S3Prefix: String - GlueTableConfig: String - GlueTableProperties: String - region: String - tags: [String] - userRoleForTable: DatasetRole - stage: String - columns: DatasetTableColumnSearchResult - terms: TermSearchResult -} - -type DatasetTableSearchResult { - nodes: [DatasetTable] - count: Int - pages: Int - page: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type DatasetTableRecord { - data: String -} - -type DatasetTableMetadataItem { - Name: String - Type: String -} - -type SharedDatasetTableItem { - tableUri: String - GlueTableName: String -} - -type QueryPreviewResult { - fields: [String] - rows: [String] -} - -type Dashboard { - dashboardUri: ID - name: String - label: String - description: String - DashboardId: String - tags: [String] - created: String - updated: String - owner: String - SamlGroupName: String - organization: Organization - environment: Environment - userRoleForDashboard: DashboardRole - terms: TermSearchResult - upvotes: Int -} - -type DashboardShare { - shareUri: ID - dashboardUri: ID - name: String - label: String - SamlGroupName: String - status: String - owner: String - tags: [String] - created: String - updated: String -} - -type DashboardSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Dashboard] -} - -type DashboardShareSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [DashboardShare] -} - -type ShareItem { - shareUri: String - shareItemUri: ID - itemUri: String - status: ShareItemStatus - action: String - itemType: ShareableType - itemName: String - description: String - healthStatus: ShareItemHealthStatus - healthMessage: String - lastVerificationTime: String - sharedObject: ShareableObject -} - -type NotSharedItem { - itemUri: String - shareItemUri: String - itemType: ShareableType - label: String - tags: [String] - created: String -} - -type NotSharedItemsSearchResult { - count: Int - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [NotSharedItem] -} - -type SharedItemSearchResult { - count: Int - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [ShareItem] -} - -type ShareObjectStatistic { - locations: Int - tables: Int - sharedItems: Int - revokedItems: Int - failedItems: Int - pendingItems: Int -} - -type DatasetLink { - datasetUri: String - datasetName: String - SamlAdminGroupName: String - environmentName: String - AwsAccountId: String - region: String - exists: Boolean - description: String -} - -type ConsumptionData { - s3AccessPointName: String - sharedGlueDatabase: String - s3bucketName: String -} - -type ShareObject { - shareUri: ID - status: ShareObjectStatus - owner: String - created: String - deleted: String - updated: String - datasetUri: String - requestPurpose: String - rejectPurpose: String - dataset: DatasetLink - consumptionData: ConsumptionData - existingSharedItems: Boolean - statistics: ShareObjectStatistic - principal: Principal - environment: Environment - group: String - items(filter: ShareableObjectFilter): SharedItemSearchResult - userRoleForShareObject: ShareObjectPermission -} - -type ShareSearchResult { - count: Int - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [ShareObject] -} - -type EnvironmentPublishedItem { - shareUri: String! - datasetUri: String! - datasetName: String! - itemAccess: String! - itemType: String! - environmentUri: String! - targetEnvironmentUri: String! - principalId: String! - environmentName: String! - organizationUri: String! - organizationName: String! - created: String! - GlueDatabaseName: String - GlueTableName: String - S3AccessPointName: String - sharedGlueDatabaseName: String -} - -type EnvironmentPublishedItemSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [EnvironmentPublishedItem] -} - -type Principal { - principalId: ID - principalType: PrincipalType - principalName: String - principalIAMRoleName: String - SamlGroupName: String - environmentName: String - environmentUri: String - AwsAccountId: String - region: String - organizationName: String - organizationUri: String -} - -type PrincipalSearchResult { - count: Int - nodes: [Principal] - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type AthenaResultColumnDescriptor { - columnName: String! - typeName: String! -} - -type AthenaResultRecordCell { - value: String - typeName: String! - columnName: String! -} - -type AthenaResultRecord { - cells: [AthenaResultRecordCell] -} - -type AthenaQueryResult { - Error: String - OutputLocation: String - AthenaQueryId: String - AwsAccountId: String - region: String - ElapsedTimeInMs: Int - DataScannedInBytes: Int - Status: String - columns: [AthenaResultColumnDescriptor] - rows: [AthenaResultRecord] -} - -type Worksheet { - worksheetUri: ID - label: String - name: String - tags: [String] - description: String - sqlBody: String - chartConfig: WorksheetChartConfig - created: String! - updated: String - owner: String! - SamlAdminGroupName: String - lastSavedQueryResult: AthenaQueryResult - userRoleForWorksheet: WorksheetRole -} - -type Worksheets { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Worksheet] -} - -type WorksheetQueryResult { - worksheetQueryResultUri: ID - queryType: String! - sqlBody: String! - AthenaQueryId: String! - region: String! - AwsAccountId: String! - AthenaOutputBucketName: String! - AthenaOutputKey: String! - timeElapsedInSecond: Int! - created: String! -} - -type WorksheetChartDimension { - columnName: String! -} - -type WorksheetChartMeasure { - columnName: String! - aggregationName: String -} - -type WorksheetChartConfig { - AthenaQueryId: String - dimensions: [WorksheetChartDimension] - measures: [WorksheetChartMeasure] -} - -type Query { - listTenantPermissions: [Permission] - listTenantGroups(filter: GroupFilter): GroupSearchResult - getOrganization(organizationUri: String): Organization - listOrganizations(filter: OrganizationFilter): OrganizationSearchResult - listOrganizationGroups(organizationUri: String, filter: GroupFilter): GroupSearchResult - getTrustAccount: String - getEnvironment(environmentUri: String): Environment - listEnvironments(filter: EnvironmentFilter): EnvironmentSearchResult - listValidEnvironments(filter: EnvironmentFilter): EnvironmentSimplifiedSearchResult - listEnvironmentNetworks(environmentUri: String, filter: VpcFilter): VpcSearchResult - generateEnvironmentAccessToken(environmentUri: String, groupUri: String): String - getEnvironmentAssumeRoleUrl(environmentUri: String, groupUri: String): String - listEnvironmentInvitedGroups(environmentUri: String, filter: GroupFilter): GroupSearchResult - listEnvironmentGroups(environmentUri: String, filter: GroupFilter): GroupSearchResult - listAllEnvironmentGroups(environmentUri: String, filter: GroupFilter): GroupSearchResult - listAllGroups(filter: GroupFilter): GroupSearchResult - listAllConsumptionRoles(filter: ConsumptionRoleFilter): ConsumptionRoleSearchResult - listEnvironmentConsumptionRoles(environmentUri: String, filter: ConsumptionRoleFilter): ConsumptionRoleSearchResult - listAllEnvironmentConsumptionRoles(environmentUri: String, filter: ConsumptionRoleFilter): ConsumptionRoleSearchResult - listEnvironmentGroupInvitationPermissions: [Permission] - getPivotRolePresignedUrl(organizationUri: String): String - getCDKExecPolicyPresignedUrl(organizationUri: String): String - getPivotRoleExternalId(organizationUri: String): String - getPivotRoleName(organizationUri: String): String - getStack(environmentUri: String, stackUri: String): Stack - getStackLogs(targetUri: String, targetType: String): [StackLog] - listKeyValueTags(targetUri: String, targetType: String): [KeyValueTag] - getGroup(groupUri: String): Group - listGroups(filter: ServiceProviderGroupFilter): [GroupsInfo] - getGroupsForUser(userid: String): [String] - getSagemakerStudioUser(sagemakerStudioUserUri: String): SagemakerStudioUser - listSagemakerStudioUsers(filter: SagemakerStudioUserFilter): SagemakerStudioUserSearchResult - getSagemakerStudioUserPresignedUrl(sagemakerStudioUserUri: String): String - getEnvironmentMLStudioDomain(environmentUri: String): SagemakerStudioDomain - getSagemakerNotebook(notebookUri: String): SagemakerNotebook - listSagemakerNotebooks(filter: SagemakerNotebookFilter): SagemakerNotebookSearchResult - getSagemakerNotebookPresignedUrl(notebookUri: String): String - listNotifications(filter: NotificationFilter): NotificationSearchResult - countUnreadNotifications: Int - countReadNotifications: Int - countDeletedNotifications: Int - getGlossary(nodeUri: String): Glossary - listGlossaries(filter: GlossaryFilter): GlossarySearchResult - searchGlossary(filter: GlossaryNodeSearchFilter): GlossaryChildrenSearchResult - getFeed(targetUri: String, targetType: String): Feed - countUpVotes(targetUri: String, targetType: String): Int - getVote(targetUri: String, targetType: String): Vote - listDataPipelines(filter: DataPipelineFilter): DataPipelineSearchResults - getDataPipeline(DataPipelineUri: String): DataPipeline - getDataPipelineCredsLinux(DataPipelineUri: String): String - listDatasetTableColumns(tableUri: String, filter: DatasetTableColumnFilter): DatasetTableColumnSearchResult - listDatasetTableProfilingRuns(tableUri: String): DatasetProfilingRunSearchResults - getDatasetTableProfilingRun(tableUri: String): DatasetProfilingRun - getDatasetStorageLocation(locationUri: String): DatasetStorageLocation - getDataset(datasetUri: String): Dataset - listDatasets(filter: DatasetFilter): DatasetSearchResult - listOwnedDatasets(filter: DatasetFilter): DatasetSearchResult - getDatasetAssumeRoleUrl(datasetUri: String): String - getDatasetPresignedUrl(datasetUri: String, input: DatasetPresignedUrlInput): String - listDatasetsOwnedByEnvGroup(environmentUri: String, groupUri: String, filter: DatasetFilter): DatasetSearchResult - listDatasetsCreatedInEnvironment(environmentUri: String, filter: DatasetFilter): DatasetSearchResult - getDatasetTable(tableUri: String): DatasetTable - listDatasetTables(filter: DatasetTableFilter): DatasetTableSearchResult - previewTable(tableUri: String): QueryPreviewResult - searchDashboards(filter: DashboardFilter): DashboardSearchResults - getDashboard(dashboardUri: String): Dashboard - getMonitoringDashboardId: String - getMonitoringVPCConnectionId: String - getPlatformAuthorSession(awsAccount: String): String - getPlatformReaderSession(dashboardId: String): String - getAuthorSession(dashboardUri: String, environmentUri: String): String - getReaderSession(dashboardUri: String): String - listDashboardShares(dashboardUri: String, filter: DashboardShareFilter): DashboardShareSearchResults - getShareObject(shareUri: String): ShareObject - getShareRequestsFromMe(filter: ShareObjectFilter): ShareSearchResult - getShareRequestsToMe(filter: ShareObjectFilter): ShareSearchResult - searchEnvironmentDataItems(environmentUri: String, filter: EnvironmentDataItemFilter): EnvironmentPublishedItemSearchResults - listDatasetShareObjects(datasetUri: String, environmentUri: String, page: Int): ShareSearchResult - getSharedDatasetTables(datasetUri: String, envUri: String): [SharedDatasetTableItem] - getDatasetSharedAssumeRoleUrl(datasetUri: String): String - getWorksheet(worksheetUri: String): Worksheet - listWorksheets(filter: WorksheetFilter): Worksheets - runAthenaSqlQuery(environmentUri: String, worksheetUri: String, sqlQuery: String): AthenaQueryResult -} - -type Mutation { - updateGroupTenantPermissions(input: UpdateGroupTenantPermissionsInput): Boolean - updateSSMParameter(name: String, value: String): String - createNetwork(input: NewVpcInput): Vpc - deleteNetwork(vpcUri: String): Boolean - createOrganization(input: NewOrganizationInput): Organization - updateOrganization(organizationUri: String, input: ModifyOrganizationInput): Organization - archiveOrganization(organizationUri: String): Boolean - inviteGroupToOrganization(input: InviteGroupToOrganizationInput): Organization - removeGroupFromOrganization(organizationUri: String, groupUri: String): Organization - createEnvironment(input: NewEnvironmentInput): Environment - updateEnvironment(environmentUri: String, input: ModifyEnvironmentInput): Environment - inviteGroupOnEnvironment(input: InviteGroupOnEnvironmentInput): Environment - addConsumptionRoleToEnvironment(input: AddConsumptionRoleToEnvironmentInput): ConsumptionRole - updateGroupEnvironmentPermissions(input: InviteGroupOnEnvironmentInput): Environment - removeGroupFromEnvironment(environmentUri: String, groupUri: String): Environment - removeConsumptionRoleFromEnvironment(environmentUri: String, consumptionRoleUri: String): Boolean - deleteEnvironment(environmentUri: String, deleteFromAWS: Boolean): Boolean - enableDataSubscriptions(environmentUri: String, input: EnableDataSubscriptionsInput): Boolean - DisableDataSubscriptions(environmentUri: String): Boolean - updateConsumptionRole(environmentUri: String, consumptionRoleUri: String, input: UpdateConsumptionRoleInput): ConsumptionRole - updateStack(targetUri: String, targetType: String): Stack - updateKeyValueTags(input: UpdateKeyValueTagsInput): [KeyValueTag] - createSagemakerStudioUser(input: NewSagemakerStudioUserInput): SagemakerStudioUser - deleteSagemakerStudioUser(sagemakerStudioUserUri: String, deleteFromAWS: Boolean): String - createSagemakerNotebook(input: NewSagemakerNotebookInput): SagemakerNotebook - startSagemakerNotebook(notebookUri: String): String - stopSagemakerNotebook(notebookUri: String): String - deleteSagemakerNotebook(notebookUri: String, deleteFromAWS: Boolean): String - markNotificationAsRead(notificationUri: String): Boolean - deleteNotification(notificationUri: String): Boolean - createGlossary(input: CreateGlossaryInput): Glossary - updateGlossary(nodeUri: String, input: UpdateGlossaryInput): Glossary - deleteGlossary(nodeUri: String): Int - createCategory(parentUri: String, input: CreateCategoryInput): Category - updateCategory(nodeUri: String, input: UpdateCategoryInput): Category - deleteCategory(nodeUri: String): Int - createTerm(parentUri: String, input: CreateTermInput): Term - updateTerm(nodeUri: String, input: UpdateTermInput): Term - deleteTerm(nodeUri: String): Int - approveTermAssociation(linkUri: String): Boolean - dismissTermAssociation(linkUri: String): Boolean - postFeedMessage(targetUri: String, targetType: String, input: FeedMessageInput): FeedMessage - upVote(input: VoteInput): Vote - createDataPipeline(input: NewDataPipelineInput): DataPipeline - updateDataPipeline(DataPipelineUri: String, input: UpdateDataPipelineInput): DataPipeline - deleteDataPipeline(DataPipelineUri: String, deleteFromAWS: Boolean): Boolean - createDataPipelineEnvironment(input: NewDataPipelineEnvironmentInput): DataPipelineEnvironment - deleteDataPipelineEnvironment(envPipelineUri: String): Boolean - updateDataPipelineEnvironment(input: NewDataPipelineEnvironmentInput): DataPipelineEnvironment - syncDatasetTableColumns(tableUri: String): DatasetTableColumnSearchResult - updateDatasetTableColumn(columnUri: String, input: DatasetTableColumnInput): DatasetTableColumn - startDatasetProfilingRun(input: StartDatasetProfilingRunInput): DatasetProfilingRun - createDatasetStorageLocation(datasetUri: String, input: NewDatasetStorageLocationInput): DatasetStorageLocation - updateDatasetStorageLocation(locationUri: String, input: ModifyDatasetStorageLocationInput): DatasetStorageLocation - deleteDatasetStorageLocation(locationUri: String): Boolean - createDataset(input: NewDatasetInput): Dataset - updateDataset(datasetUri: String, input: ModifyDatasetInput): Dataset - generateDatasetAccessToken(datasetUri: String): String - deleteDataset(datasetUri: String, deleteFromAWS: Boolean): Boolean - importDataset(input: ImportDatasetInput): Dataset - startGlueCrawler(datasetUri: String, input: CrawlerInput): GlueCrawler - updateDatasetTable(tableUri: String, input: ModifyDatasetTableInput): DatasetTable - deleteDatasetTable(tableUri: String): Boolean - syncTables(datasetUri: String): DatasetTableSearchResult - importDashboard(input: ImportDashboardInput): Dashboard - updateDashboard(input: UpdateDashboardInput): Dashboard - deleteDashboard(dashboardUri: String): Boolean - shareDashboard(principalId: String, dashboardUri: String): DashboardShare - requestDashboardShare(principalId: String, dashboardUri: String): DashboardShare - approveDashboardShare(shareUri: String): DashboardShare - rejectDashboardShare(shareUri: String): DashboardShare - createQuicksightDataSourceSet(vpcConnectionId: String): String - createShareObject(datasetUri: String, itemUri: String, itemType: String, input: NewShareObjectInput): ShareObject - deleteShareObject(shareUri: String): Boolean - addSharedItem(shareUri: String, input: AddSharedItemInput): ShareItem - removeSharedItem(shareItemUri: String): Boolean - submitShareObject(shareUri: String): ShareObject - approveShareObject(shareUri: String): ShareObject - rejectShareObject(shareUri: String, rejectPurpose: String): ShareObject - revokeItemsShareObject(input: ShareItemSelectorInput): ShareObject - verifyItemsShareObject(input: ShareItemSelectorInput): ShareObject - reApplyItemsShareObject(input: ShareItemSelectorInput): ShareObject - updateShareRejectReason(shareUri: String, rejectPurpose: String): Boolean - updateShareRequestReason(shareUri: String, requestPurpose: String): Boolean - verifyDatasetShareObjects(input: ShareObjectSelectorInput): Boolean - createWorksheet(input: NewWorksheetInput): Worksheet - updateWorksheet(worksheetUri: String, input: UpdateWorksheetInput): Worksheet - deleteWorksheet(worksheetUri: String): Boolean -} \ No newline at end of file diff --git a/backend/test.graphql b/backend/test.graphql deleted file mode 100644 index 827f79815..000000000 --- a/backend/test.graphql +++ /dev/null @@ -1,2181 +0,0 @@ -enum EnvironmentSortField { - created - label -} - -enum SortDirection { - asc - desc -} - -enum OrganizationSortField { - created - updated - label -} - -enum OrganisationUserRole { - Owner - Admin - Member - NotMember - Invited -} - -enum EnvironmentPermission { - Owner - Admin - DatasetCreator - Invited - ProjectAccess - NotInvited -} - -enum SagemakerStudioRole { - Creator - Admin - NoPermission -} - -enum SagemakerNotebookRole { - CREATOR - ADMIN - NO_PERMISSION -} - -enum GlossaryRole { - Admin - NoPermission -} - -enum DataPipelineRole { - Creator - Admin - NoPermission -} - -enum DatasetSortField { - label - created - updated -} - -enum DatasetRole { - BusinessOwner - DataSteward - Creator - Admin - Shared - NoPermission -} - -enum DashboardRole { - Creator - Admin - Shared - NoPermission -} - -enum ShareableType { - Table - StorageLocation - View - S3Bucket -} - -enum ShareSortField { - created - updated - label -} - -enum ShareItemHealthStatus { - Healthy - Unhealthy - PendingVerify - PendingReApply -} - -enum PrincipalType { - Any - Organization - Environment - User - Project - Public - Group - ConsumptionRole -} - -enum EnvironmentType { - Data - Compute -} - -enum DatasetType { - S3 -} - -enum ConfidentialityClassification { - Unclassified - Official - Secret -} - -enum Language { - English - French - German -} - -enum Topic { - Finances - HumanResources - Products - Services - Operations - Research - Sales - Orders - Sites - Energy - Customers - Misc -} - -enum ShareObjectPermission { - Approvers - ApproversAndRequesters - Requesters - DatasetAdmins - NoPermission -} - -enum ShareObjectStatus { - Deleted - Approved - Rejected - Revoked - Draft - Submitted - Revoke_In_Progress - Share_In_Progress - Processed -} - -enum ShareItemStatus { - Deleted - PendingApproval - Share_Approved - Share_Rejected - Share_In_Progress - Share_Succeeded - Share_Failed - Revoke_Approved - Revoke_In_Progress - Revoke_Failed - Revoke_Succeeded -} - -enum ShareObjectActions { - Submit - Approve - Reject - RevokeItems - Start - Finish - FinishPending - Delete - AcquireLockFailure -} - -enum ShareItemActions { - AddItem - RemoveItem - Failure - Success -} - -enum WorksheetRole { - Creator - Admin - NoPermission -} - -input UpdateGroupTenantPermissionsInput { - permissions: [String] - groupUri: String! -} - -input KeyValueTagInput { - key: String! - value: String! - cascade: Boolean! -} - -input UpdateKeyValueTagsInput { - targetUri: String! - targetType: String! - tags: [KeyValueTagInput] -} - -input AwsEnvironmentInput { - AwsAccountId: String! - region: String! -} - -input ModifyEnvironmentParameterInput { - key: String - value: String -} - -input NewEnvironmentInput { - label: String! - organizationUri: String! - SamlGroupName: String! - tags: [String] - description: String - AwsAccountId: String! - region: String! - EnvironmentDefaultIAMRoleArn: String - resourcePrefix: String - parameters: [ModifyEnvironmentParameterInput] - vpcId: String - subnetIds: [String] -} - -input ModifyEnvironmentInput { - label: String - description: String - tags: [String] - SamlGroupName: String - resourcePrefix: String - parameters: [ModifyEnvironmentParameterInput] - vpcId: String - subnetIds: [String] -} - -input EnableDataSubscriptionsInput { - producersTopicArn: String -} - -input EnvironmentSortCriteria { - field: EnvironmentSortField! - direction: SortDirection! -} - -input EnvironmentFilter { - term: String - page: Int - displayArchived: Boolean - roles: [EnvironmentPermission] - quicksight: Boolean - SamlGroupName: String - sort: [EnvironmentSortCriteria] - pageSize: Int -} - -input InviteGroupOnEnvironmentInput { - permissions: [String] - environmentUri: String! - groupUri: String! - environmentIAMRoleArn: String -} - -input AddConsumptionRoleToEnvironmentInput { - consumptionRoleName: String! - groupUri: String! - IAMRoleArn: String! - environmentUri: String! - dataallManaged: Boolean! -} - -input ConsumptionRoleFilter { - term: String - page: Int - pageSize: Int - groupUri: String -} - -input UpdateConsumptionRoleInput { - consumptionRoleName: String - groupUri: String -} - -input VpcFilter { - term: String - page: Int - pageSize: Int -} - -input NewVpcInput { - label: String! - environmentUri: String! - vpcId: String! - publicSubnetIds: [String] - privateSubnetIds: [String] - description: String - SamlGroupName: String! - tags: [String] -} - -input NewOrganizationInput { - label: String - description: String - tags: [String] - SamlGroupName: String -} - -input ModifyOrganizationInput { - label: String - description: String - SamlGroupName: String - tags: [String] -} - -input OrganizationSortCriteria { - field: OrganizationSortField! - direction: SortDirection! -} - -input OrganizationFilter { - term: String - displayArchived: Boolean - sort: [OrganizationSortCriteria] - page: Int - pageSize: Int - roles: [OrganisationUserRole] - tags: [String] -} - -input InviteGroupToOrganizationInput { - organizationUri: String! - groupUri: String! -} - -input GroupFilter { - term: String - page: Int - pageSize: Int -} - -input ServiceProviderGroupFilter { - type: String - uri: String -} - -input NewSagemakerStudioUserInput { - label: String! - description: String - environmentUri: String! - tags: [String] - topics: String - SamlAdminGroupName: String! -} - -input ModifySagemakerStudioUserInput { - label: String - tags: [String] - description: String -} - -input SagemakerStudioUserFilter { - term: String - page: Int - pageSize: Int - sort: String - limit: Int - offset: Int -} - -input NewSagemakerNotebookInput { - label: String! - description: String - environmentUri: String! - SamlAdminGroupName: String! - tags: [String] - topics: String - VpcId: String - SubnetId: String - VolumeSizeInGB: Int - InstanceType: String -} - -input ModifySagemakerNotebookInput { - label: String - tags: [String] - description: String -} - -input SagemakerNotebookFilter { - term: String - page: Int - pageSize: Int - sort: String - limit: Int - offset: Int -} - -input NotificationFilter { - term: String - read: Boolean - unread: Boolean - archived: Boolean - type: String - page: Int - pageSize: Int -} - -input CreateGlossaryInput { - label: String! - readme: String! - status: String - admin: String -} - -input UpdateGlossaryInput { - label: String - readme: String - status: String - admin: String -} - -input CreateCategoryInput { - label: String! - readme: String! - status: String -} - -input UpdateCategoryInput { - label: String - readme: String - status: String -} - -input CreateTermInput { - label: String! - readme: String! - status: String -} - -input UpdateTermInput { - label: String - readme: String - status: String -} - -input GlossaryFilter { - term: String - status: String - page: Int - pageSize: Int -} - -input CategoryFilter { - term: String - page: Int - status: String - pageSize: Int -} - -input TermFilter { - status: String - term: String - page: Int - pageSize: Int -} - -input GlossaryTermTargetFilter { - term: String - page: Int - pageSize: Int -} - -input GlossaryNodeSearchFilter { - term: String - nodeType: String - page: Int - pageSize: Int -} - -input FeedMessageInput { - content: String -} - -input FeedMessageFilter { - term: String - page: Int - pageSize: Int -} - -input VoteInput { - targetUri: String! - targetType: String! - upvote: Boolean! -} - -input NewDataPipelineInput { - label: String! - environmentUri: String! - description: String - SamlGroupName: String! - tags: [String] - devStrategy: String! -} - -input NewDataPipelineEnvironmentInput { - stage: String! - order: Int! - pipelineUri: String! - environmentLabel: String! - environmentUri: String! - samlGroupName: String! -} - -input UpdateDataPipelineInput { - label: String - description: String - tags: [String] -} - -input DataPipelineFilter { - term: String - region: [String] - tags: [String] - type: [String] - page: Int - pageSize: Int -} - -input DataPipelineEnvironmentFilter { - term: String - page: Int - pageSize: Int - pipelineUri: String -} - -input DataPipelineBrowseInput { - DataPipelineUri: String! - branch: String! - folderPath: String -} - -input DataPipelineFileContentInput { - DataPipelineUri: String! - branch: String! - absolutePath: String! -} - -input DatasetTableColumnFilter { - term: String - page: Int - pageSize: Int -} - -input DatasetTableColumnInput { - description: String - classification: Int - tags: Int - topics: Int -} - -input StartDatasetProfilingRunInput { - datasetUri: String! - GlueTableName: String - tableUri: String -} - -input DatasetProfilingRunFilter { - page: Int - pageSize: Int - term: String -} - -input NewDatasetStorageLocationInput { - label: String! - description: String - tags: [String] - terms: [String] - prefix: String! -} - -input ModifyDatasetStorageLocationInput { - locationUri: String - label: String - description: String - tags: [String] - terms: [String] -} - -input DatasetStorageLocationFilter { - term: String - page: Int - pageSize: Int -} - -input DatasetAccessPointFilter { - page: Int - pageSize: Int -} - -input ModifyDatasetTableInput { - label: String - prefix: String - description: String - tags: [String] - terms: [String] - topics: [String] -} - -input DatasetSortCriteria { - field: DatasetSortField! - direction: SortDirection -} - -input DatasetTableFilter { - term: String - sort: [DatasetSortCriteria] - page: Int - pageSize: Int -} - -input NewDatasetInput { - label: String! - organizationUri: String! - environmentUri: String! - description: String - tags: [String] - owner: String - language: Language - topics: [Topic] - SamlAdminGroupName: String! - businessOwnerEmail: String - businessOwnerDelegationEmails: [String] - confidentiality: String - stewards: String - autoApprovalEnabled: Boolean -} - -input ModifyDatasetInput { - label: String - description: String - tags: [String] - topics: [Topic] - terms: [String] - businessOwnerDelegationEmails: [String] - businessOwnerEmail: String - language: Language - confidentiality: String - stewards: String - KmsAlias: String! - autoApprovalEnabled: Boolean -} - -input DatasetFilter { - term: String - roles: [DatasetRole] - InProject: String - notInProject: String - displayArchived: Boolean - sort: [DatasetSortCriteria] - page: Int - pageSize: Int -} - -input DatasetPresignedUrlInput { - fileName: String - prefix: String -} - -input CrawlerInput { - prefix: String -} - -input ImportDatasetInput { - label: String! - organizationUri: String! - environmentUri: String! - description: String - bucketName: String! - glueDatabaseName: String - KmsKeyAlias: String! - adminRoleName: String - tags: [String] - owner: String! - language: Language - topics: [Topic] - SamlAdminGroupName: String! - businessOwnerEmail: String - businessOwnerDelegationEmails: [String] - confidentiality: String - stewards: String - autoApprovalEnabled: Boolean -} - -input ShareObjectSelectorInput { - datasetUri: String! - shareUris: [String]! -} - -input ImportDashboardInput { - label: String! - environmentUri: String! - description: String - SamlGroupName: String - tags: [String] - dashboardId: String! - terms: [String] -} - -input UpdateDashboardInput { - dashboardUri: String! - label: String - description: String - tags: [String] - terms: [String] -} - -input DashboardFilter { - term: String - page: Int - pageSize: Int -} - -input DashboardShareFilter { - term: String - page: Int - pageSize: Int -} - -input NewShareObjectInput { - environmentUri: String! - groupUri: String! - principalId: String! - principalType: String! - requestPurpose: String - attachMissingPolicies: Boolean! -} - -input AddSharedItemInput { - itemUri: String! - itemType: ShareableType! -} - -input ShareItemSelectorInput { - shareUri: String! - itemUris: [String]! -} - -input ShareSortCriteria { - field: ShareSortField! - direction: SortDirection! -} - -input ShareObjectFilter { - term: String - sort: [ShareSortCriteria] - page: Int - pageSize: Int - status: [String] - dataset_owners: [String] - datasets_uris: [String] - share_requesters: [String] - share_iam_roles: [String] -} - -input ShareableObjectFilter { - term: String - tags: [String] - isShared: Boolean - isRevokable: Boolean - isHealthy: Boolean - page: Int - pageSize: Int -} - -input EnvironmentDataItemFilter { - itemTypes: [String] - term: String - page: Int - pageSize: Int - uniqueShares: Boolean -} - -input PrincipalFilter { - page: Int - pageSize: Int - principalType: PrincipalType - term: String -} - -input NewWorksheetInput { - label: String - description: String - tags: [String] - SamlAdminGroupName: String! -} - -input UpdateWorksheetInput { - label: String - description: String - tags: [String] - sqlBody: String - chartConfig: WorksheetChartConfigInput -} - -input WorksheetChartInput { - chartConfig: String - label: String - description: String -} - -input WorksheetQueryInput { - sqlBody: String - AthenaQueryId: String - environmentUri: String! -} - -input WorksheetFilter { - term: String - page: Int - pageSize: Int -} - -input WorksheetDimensionInput { - columnName: String -} - -input WorksheetMeasureInput { - columnName: String - aggregationName: String -} - -input WorksheetChartConfigInput { - chartType: String - dimensions: [WorksheetDimensionInput] - measures: [WorksheetMeasureInput] -} - -union GlossaryNode = Glossary | Category | Term - -union FeedTarget = DataPipeline | DatasetStorageLocation | DatasetTable | Dataset | Dashboard - -union ShareableObject = DatasetTable | DatasetStorageLocation - -type Permission { - permissionUri: String! - type: String - name: String! - description: String! -} - -type PermissionSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Permission] -} - -type Tenant { - tenantUri: ID - name: String - created: String -} - -type Vpc { - VpcId: String! - vpcUri: ID! - environment: Environment - label: String - owner: String - name: String - description: String - tags: [String] - AwsAccountId: String! - region: String! - privateSubnetIds: [String] - publicSubnetIds: [String] - SamlGroupName: String - default: Boolean -} - -type VpcSearchResult { - count: Int - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Vpc] -} - -type OrganizationStats { - groups: Int - users: Int - environments: Int -} - -type Organization { - organizationUri: ID - label: String - name: String - description: String - tags: [String] - owner: String - SamlGroupName: String - userRoleInOrganization: OrganisationUserRole - environments(filter: EnvironmentFilter): EnvironmentSearchResult - created: String - updated: String - stats: OrganizationStats -} - -type OrganizationSearchResult { - count: Int - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Organization] -} - -type OrganizationSimplified { - organizationUri: ID - label: String - name: String -} - -type EnvironmentUserPermission { - userName: String - created: String - updated: String - userRoleInEnvironment: EnvironmentPermission -} - -type EnvironmentUserPermissionSearchResult { - count: Int - nodes: [EnvironmentUserPermission] -} - -type EnvironmentGroupPermission { - groupUri: String - created: String - updated: String - groupRoleInEnvironment: EnvironmentPermission - Group: Group -} - -type EnvironmentGroupPermissionSearchResult { - count: Int - nodes: [EnvironmentGroupPermission] -} - -type EnvironmentParameter { - key: String - value: String -} - -type Environment { - environmentUri: ID - label: String - name: String - description: String - owner: String - created: String - updated: String - deleted: String - tags: [String] - admins: [String] - environmentType: String - AwsAccountId: String - region: String - SamlGroupName: String - resourcePrefix: String - EnvironmentDefaultIAMRoleArn: String - EnvironmentDefaultIAMRoleName: String - EnvironmentDefaultIAMRoleImported: Boolean - datasets: String - organization: OrganizationSimplified - userRoleInEnvironment: EnvironmentPermission - validated: Boolean - roleCreated: Boolean - isOrganizationDefaultEnvironment: Boolean - stack: Stack - subscriptionsEnabled: Boolean - subscriptionsProducersTopicImported: Boolean - subscriptionsConsumersTopicImported: Boolean - subscriptionsConsumersTopicName: String - subscriptionsProducersTopicName: String - EnvironmentDefaultBucketName: String - EnvironmentDefaultAthenaWorkGroup: String - networks: [Vpc] - parameters: [EnvironmentParameter] -} - -type EnvironmentSearchResult { - count: Int - nodes: [Environment] - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type EnvironmentSimplified { - environmentUri: ID - label: String - region: String - organization: OrganizationSimplified - networks: [Vpc] -} - -type EnvironmentSimplifiedSearchResult { - count: Int - nodes: [EnvironmentSimplified] -} - -type RoleManagedPolicy { - policy_name: String - policy_type: String - exists: Boolean - attached: Boolean -} - -type ConsumptionRole { - consumptionRoleUri: String - consumptionRoleName: String - groupUri: String - environmentUri: String - IAMRoleArn: String - IAMRoleName: String - dataallManaged: Boolean - created: String - updated: String - deleted: String - managedPolicies: [RoleManagedPolicy] -} - -type ConsumptionRoleSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [ConsumptionRole] -} - -type Stack { - stackUri: ID - targetUri: String! - stack: String! - environmentUri: String - name: String - accountid: String! - region: String! - status: String - stackid: String - link: String - outputs: String - resources: String - error: String - events: String - EcsTaskArn: String - EcsTaskId: String -} - -type StackLog { - logStream: String - logGroup: String - timestamp: String - message: String -} - -type KeyValueTag { - tagUri: ID - targetType: String - targetUri: String - key: String - value: String - cascade: Boolean -} - -type Group { - groupUri: String - invitedBy: String - owner: String - label: String - name: String - description: String - tags: [String] - created: String - updated: String - environmentIAMRoleArn: String - environmentIAMRoleName: String - environmentAthenaWorkGroup: String - environmentPermissions(environmentUri: String): [Permission] - tenantPermissions: [Permission] -} - -type GroupSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Group] -} - -type GroupsInfo { - groupName: String -} - -type SagemakerStudioUserApps { - DomainId: String - UserName: String - AppType: String - AppName: String - Status: String -} - -type SagemakerStudioUser { - sagemakerStudioUserUri: ID - environmentUri: String! - label: String - description: String - tags: [String] - name: String - owner: String - created: String - updated: String - SamlAdminGroupName: String - userRoleForSagemakerStudioUser: SagemakerStudioRole - sagemakerStudioUserStatus: String - sagemakerStudioUserApps: [SagemakerStudioUserApps] - environment: Environment - organization: Organization - stack: Stack -} - -type SagemakerStudioUserSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [SagemakerStudioUser] -} - -type SagemakerStudioDomain { - sagemakerStudioUri: ID - environmentUri: String! - sagemakerStudioDomainName: String - DefaultDomainRoleName: String - label: String - name: String - vpcType: String - vpcId: String - subnetIds: [String] - owner: String - created: String - updated: String - deleted: String - environment: Environment -} - -type SagemakerNotebook { - notebookUri: ID - environmentUri: String! - label: String - description: String - tags: [String] - name: String - owner: String - created: String - updated: String - SamlAdminGroupName: String - VpcId: String - SubnetId: String - InstanceType: String - RoleArn: String - VolumeSizeInGB: Int - userRoleForNotebook: SagemakerNotebookRole - NotebookInstanceStatus: String - environment: Environment - organization: Organization - stack: Stack -} - -type SagemakerNotebookSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [SagemakerNotebook] -} - -type Notification { - notificationUri: String! - type: String - message: String - username: String! - target_uri: String! - is_read: Boolean - created: String - updated: String -} - -type NotificationSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Notification] -} - -type GlossaryChildrenSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [GlossaryNode] -} - -type Glossary { - nodeUri: ID - parentUri: String! - status: String - owner: String! - path: String! - label: String! - name: String! - admin: String - userRoleForGlossary: GlossaryRole - readme: String - created: String! - updated: String - deleted: String - isMatch: Boolean - assetLink(targetUri: String): GlossaryTermLink - stats: GlossaryNodeStatistics - tree(filter: GlossaryNodeSearchFilter): GlossaryChildrenSearchResult - children(filter: GlossaryNodeSearchFilter): GlossaryChildrenSearchResult - categories(filter: CategoryFilter): CategorySearchResult - associations(filter: GlossaryTermTargetFilter): TermLinkSearchResults -} - -type Category { - nodeUri: ID - parentUri: String! - owner: String! - path: String! - label: String! - status: String! - name: String! - readme: String - created: String! - updated: String - deleted: String - isMatch: Boolean - assetLink(targetUri: String): GlossaryTermLink - stats: GlossaryNodeStatistics - children(filter: GlossaryNodeSearchFilter): GlossaryChildrenSearchResult - categories(filter: CategoryFilter): CategorySearchResult - terms(filter: TermFilter): TermSearchResult - associations(filter: GlossaryTermTargetFilter): TermLinkSearchResults -} - -type Term { - nodeUri: ID - parentUri: String! - owner: String! - path: String! - label: String! - name: String! - status: String! - readme: String - created: String! - updated: String - deleted: String - isMatch: Boolean - assetLink(targetUri: String): GlossaryTermLink - children(filter: GlossaryNodeSearchFilter): GlossaryChildrenSearchResult - stats: GlossaryNodeStatistics - glossary: Glossary - associations(filter: GlossaryTermTargetFilter): TermLinkSearchResults -} - -type TermLinkSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [GlossaryTermLink] -} - -type TermSearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Term] -} - -type CategorySearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Category] -} - -type GlossarySearchResult { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Glossary] -} - -type GlossaryTermLinkTarget { - label: String -} - -type GlossaryTermLink { - linkUri: ID - created: String! - updated: String - deleted: String - owner: String - nodeUri: String! - targetUri: String! - targetType: String! - approvedByOwner: Boolean! - approvedBySteward: Boolean! - term: Term - target: GlossaryTermLinkTarget -} - -type GlossaryNodeStatistics { - categories: Int - terms: Int - associations: Int -} - -type Feed { - feedTargetUri: String! - feedTargetType: String! - messages(filter: FeedMessageFilter): FeedMessages -} - -type FeedMessage { - feedMessageUri: ID - creator: String! - content: String - created: String -} - -type FeedMessages { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [FeedMessage] -} - -type Vote { - voteUri: ID - targetType: String - targetUri: String - upvote: Boolean - created: String -} - -type DataPipeline { - DataPipelineUri: ID - name: String - label: String - description: String - tags: [String] - created: String - updated: String - owner: String - repo: String - SamlGroupName: String - organization: Organization - environment: Environment - developmentEnvironments: DataPipelineEnvironmentSearchResults - template: String - devStrategy: String - cloneUrlHttp: String - stack: Stack - userRoleForPipeline: DataPipelineRole -} - -type DataPipelineSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [DataPipeline] -} - -type DataPipelineEnvironment { - envPipelineUri: String - environmentUri: String - environmentLabel: String - pipelineUri: String - pipelineLabel: String - stage: String - order: Int - region: String - AwsAccountId: String - samlGroupName: String -} - -type DataPipelineEnvironmentSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [DataPipelineEnvironment] -} - -type DatasetTableColumn { - tableUri: ID - columnUri: ID - label: String - name: String - description: String - owner: String - created: String - updated: String - AwsAccountId: String - GlueDatabaseName: String - GlueTableName: String - typeName: String - columnType: String - region: String - classification: String - topics: [String] - tags: [String] - terms: TermLinkSearchResults -} - -type DatasetTableColumnSearchResult { - nodes: [DatasetTableColumn] - count: Int - pages: Int - page: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type DatasetProfilingRun { - profilingRunUri: String! - datasetUri: String! - GlueJobName: String - GlueJobRunId: String - GlueTriggerSchedule: String - GlueTriggerName: String - GlueTableName: String - AwsAccountId: String - results: String - created: String - updated: String - owner: String - status: String - dataset: Dataset -} - -type DatasetProfilingRunSearchResults { - count: Int - pages: Int - page: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [DatasetProfilingRun] -} - -type DatasetStorageLocation { - locationUri: ID - label: String - name: String - description: String - owner: String - created: String - updated: String - region: String - tags: [String] - AwsAccountId: String - S3BucketName: String - S3Prefix: String - locationCreated: Boolean - dataset: Dataset - userRoleForStorageLocation: DatasetRole - environmentEndPoint: String - terms: TermSearchResult -} - -type DatasetStorageLocationSearchResult { - nodes: [DatasetStorageLocation] - count: Int - pages: Int - page: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type DatasetAccessPoint { - accessPointUri: ID - location: DatasetStorageLocation - dataset: Dataset - name: String - description: String - owner: String - created: String - updated: String - region: String - AwsAccountId: String - S3BucketName: String - S3Prefix: String - S3AccessPointName: String -} - -type DatasetAccessPointSearchResult { - count: Int - page: Int - pageSize: Int - pages: Int - hasNext: Int - hasPrevious: Int - nodes: [DatasetAccessPoint] -} - -type DatasetStatistics { - tables: Int - locations: Int - upvotes: Int -} - -type Dataset { - datasetUri: ID - label: String - name: String - description: String - tags: [String] - owner: String - created: String - updated: String - admins: [String] - AwsAccountId: String - region: String - S3BucketName: String - GlueDatabaseName: String - GlueCrawlerName: String - GlueCrawlerSchedule: String - GlueProfilingJobName: String - GlueProfilingTriggerSchedule: String - IAMDatasetAdminRoleArn: String - KmsAlias: String - bucketCreated: Boolean - glueDatabaseCreated: Boolean - iamAdminRoleCreated: Boolean - lakeformationLocationCreated: Boolean - bucketPolicyCreated: Boolean - SamlAdminGroupName: String - businessOwnerEmail: String - businessOwnerDelegationEmails: [String] - importedS3Bucket: Boolean - importedGlueDatabase: Boolean - importedKmsKey: Boolean - importedAdminRole: Boolean - imported: Boolean - environment: Environment - organization: Organization - owners: String - stewards: String - tables(filter: DatasetTableFilter): DatasetTableSearchResult - locations(filter: DatasetStorageLocationFilter): DatasetStorageLocationSearchResult - userRoleForDataset: DatasetRole - userRoleInEnvironment: EnvironmentPermission - statistics: DatasetStatistics - terms: TermSearchResult - topics: [Topic] - confidentiality: String - language: Language - projectPermission(projectUri: String): DatasetRole - isPublishedInEnvironment(environmentUri: String): Boolean - stack: Stack - autoApprovalEnabled: Boolean -} - -type DatasetSearchResult { - count: Int - nodes: [Dataset] - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type GlueCrawler { - Name: ID - AwsAccountId: String - region: String - status: String -} - -type TablePermission { - userName: String - created: String -} - -type TablePermissionSearchResult { - count: Int - nodes: [TablePermission] -} - -type DatasetTable { - tableUri: ID - datasetUri: String - dataset: Dataset - label: String - name: String - description: String - owner: String - created: String - updated: String - admins: [String] - AwsAccountId: String - GlueDatabaseName: String - GlueTableName: String - LastGlueTableStatus: String - S3Prefix: String - GlueTableConfig: String - GlueTableProperties: String - region: String - tags: [String] - userRoleForTable: DatasetRole - stage: String - columns: DatasetTableColumnSearchResult - terms: TermSearchResult -} - -type DatasetTableSearchResult { - nodes: [DatasetTable] - count: Int - pages: Int - page: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type DatasetTableRecord { - data: String -} - -type DatasetTableMetadataItem { - Name: String - Type: String -} - -type SharedDatasetTableItem { - tableUri: String - GlueTableName: String -} - -type QueryPreviewResult { - fields: [String] - rows: [String] -} - -type Dashboard { - dashboardUri: ID - name: String - label: String - description: String - DashboardId: String - tags: [String] - created: String - updated: String - owner: String - SamlGroupName: String - organization: Organization - environment: Environment - userRoleForDashboard: DashboardRole - terms: TermSearchResult - upvotes: Int -} - -type DashboardShare { - shareUri: ID - dashboardUri: ID - name: String - label: String - SamlGroupName: String - status: String - owner: String - tags: [String] - created: String - updated: String -} - -type DashboardSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Dashboard] -} - -type DashboardShareSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [DashboardShare] -} - -type ShareItem { - shareUri: String - shareItemUri: ID - itemUri: String - status: ShareItemStatus - action: String - itemType: ShareableType - itemName: String - description: String - healthStatus: ShareItemHealthStatus - healthMessage: String - lastVerificationTime: String - sharedObject: ShareableObject -} - -type NotSharedItem { - itemUri: String - shareItemUri: String - itemType: ShareableType - label: String - tags: [String] - created: String -} - -type NotSharedItemsSearchResult { - count: Int - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [NotSharedItem] -} - -type SharedItemSearchResult { - count: Int - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [ShareItem] -} - -type ShareObjectStatistic { - locations: Int - tables: Int - sharedItems: Int - revokedItems: Int - failedItems: Int - pendingItems: Int -} - -type DatasetLink { - datasetUri: String - datasetName: String - SamlAdminGroupName: String - environmentName: String - AwsAccountId: String - region: String - exists: Boolean - description: String -} - -type ConsumptionData { - s3AccessPointName: String - sharedGlueDatabase: String - s3bucketName: String -} - -type ShareObject { - shareUri: ID - status: ShareObjectStatus - owner: String - created: String - deleted: String - updated: String - datasetUri: String - requestPurpose: String - rejectPurpose: String - dataset: DatasetLink - consumptionData: ConsumptionData - existingSharedItems: Boolean - statistics: ShareObjectStatistic - principal: Principal - environment: Environment - group: String - items(filter: ShareableObjectFilter): SharedItemSearchResult - userRoleForShareObject: ShareObjectPermission -} - -type ShareSearchResult { - count: Int - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [ShareObject] -} - -type EnvironmentPublishedItem { - shareUri: String! - datasetUri: String! - datasetName: String! - itemAccess: String! - itemType: String! - environmentUri: String! - targetEnvironmentUri: String! - principalId: String! - environmentName: String! - organizationUri: String! - organizationName: String! - created: String! - GlueDatabaseName: String - GlueTableName: String - S3AccessPointName: String - sharedGlueDatabaseName: String -} - -type EnvironmentPublishedItemSearchResults { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [EnvironmentPublishedItem] -} - -type Principal { - principalId: ID - principalType: PrincipalType - principalName: String - principalIAMRoleName: String - SamlGroupName: String - environmentName: String - environmentUri: String - AwsAccountId: String - region: String - organizationName: String - organizationUri: String -} - -type PrincipalSearchResult { - count: Int - nodes: [Principal] - pageSize: Int - nextPage: Int - pages: Int - page: Int - previousPage: Int - hasNext: Boolean - hasPrevious: Boolean -} - -type AthenaResultColumnDescriptor { - columnName: String! - typeName: String! -} - -type AthenaResultRecordCell { - value: String - typeName: String! - columnName: String! -} - -type AthenaResultRecord { - cells: [AthenaResultRecordCell] -} - -type AthenaQueryResult { - Error: String - OutputLocation: String - AthenaQueryId: String - AwsAccountId: String - region: String - ElapsedTimeInMs: Int - DataScannedInBytes: Int - Status: String - columns: [AthenaResultColumnDescriptor] - rows: [AthenaResultRecord] -} - -type Worksheet { - worksheetUri: ID - label: String - name: String - tags: [String] - description: String - sqlBody: String - chartConfig: WorksheetChartConfig - created: String! - updated: String - owner: String! - SamlAdminGroupName: String - lastSavedQueryResult: AthenaQueryResult - userRoleForWorksheet: WorksheetRole -} - -type Worksheets { - count: Int - page: Int - pages: Int - hasNext: Boolean - hasPrevious: Boolean - nodes: [Worksheet] -} - -type WorksheetQueryResult { - worksheetQueryResultUri: ID - queryType: String! - sqlBody: String! - AthenaQueryId: String! - region: String! - AwsAccountId: String! - AthenaOutputBucketName: String! - AthenaOutputKey: String! - timeElapsedInSecond: Int! - created: String! -} - -type WorksheetChartDimension { - columnName: String! -} - -type WorksheetChartMeasure { - columnName: String! - aggregationName: String -} - -type WorksheetChartConfig { - AthenaQueryId: String - dimensions: [WorksheetChartDimension] - measures: [WorksheetChartMeasure] -} - -type Query { - listTenantPermissions: [Permission] - listTenantGroups(filter: GroupFilter): GroupSearchResult - getOrganization(organizationUri: String): Organization - listOrganizations(filter: OrganizationFilter): OrganizationSearchResult - listOrganizationGroups(organizationUri: String, filter: GroupFilter): GroupSearchResult - getTrustAccount: String - getEnvironment(environmentUri: String): Environment - listEnvironments(filter: EnvironmentFilter): EnvironmentSearchResult - listValidEnvironments(filter: EnvironmentFilter): EnvironmentSimplifiedSearchResult - listEnvironmentNetworks(environmentUri: String, filter: VpcFilter): VpcSearchResult - generateEnvironmentAccessToken(environmentUri: String, groupUri: String): String - getEnvironmentAssumeRoleUrl(environmentUri: String, groupUri: String): String - listEnvironmentInvitedGroups(environmentUri: String, filter: GroupFilter): GroupSearchResult - listEnvironmentGroups(environmentUri: String, filter: GroupFilter): GroupSearchResult - listAllEnvironmentGroups(environmentUri: String, filter: GroupFilter): GroupSearchResult - listAllGroups(filter: GroupFilter): GroupSearchResult - listAllConsumptionRoles(filter: ConsumptionRoleFilter): ConsumptionRoleSearchResult - listEnvironmentConsumptionRoles(environmentUri: String, filter: ConsumptionRoleFilter): ConsumptionRoleSearchResult - listAllEnvironmentConsumptionRoles(environmentUri: String, filter: ConsumptionRoleFilter): ConsumptionRoleSearchResult - listEnvironmentGroupInvitationPermissions: [Permission] - getPivotRolePresignedUrl(organizationUri: String): String - getCDKExecPolicyPresignedUrl(organizationUri: String): String - getPivotRoleExternalId(organizationUri: String): String - getPivotRoleName(organizationUri: String): String - getStack(environmentUri: String, stackUri: String): Stack - getStackLogs(targetUri: String, targetType: String): [StackLog] - listKeyValueTags(targetUri: String, targetType: String): [KeyValueTag] - getGroup(groupUri: String): Group - listGroups(filter: ServiceProviderGroupFilter): [GroupsInfo] - getGroupsForUser(userid: String): [String] - getSagemakerStudioUser(sagemakerStudioUserUri: String): SagemakerStudioUser - listSagemakerStudioUsers(filter: SagemakerStudioUserFilter): SagemakerStudioUserSearchResult - getSagemakerStudioUserPresignedUrl(sagemakerStudioUserUri: String): String - getEnvironmentMLStudioDomain(environmentUri: String): SagemakerStudioDomain - getSagemakerNotebook(notebookUri: String): SagemakerNotebook - listSagemakerNotebooks(filter: SagemakerNotebookFilter): SagemakerNotebookSearchResult - getSagemakerNotebookPresignedUrl(notebookUri: String): String - listNotifications(filter: NotificationFilter): NotificationSearchResult - countUnreadNotifications: Int - countReadNotifications: Int - countDeletedNotifications: Int - getGlossary(nodeUri: String): Glossary - listGlossaries(filter: GlossaryFilter): GlossarySearchResult - searchGlossary(filter: GlossaryNodeSearchFilter): GlossaryChildrenSearchResult - getFeed(targetUri: String, targetType: String): Feed - countUpVotes(targetUri: String, targetType: String): Int - getVote(targetUri: String, targetType: String): Vote - listDataPipelines(filter: DataPipelineFilter): DataPipelineSearchResults - getDataPipeline(DataPipelineUri: String): DataPipeline - getDataPipelineCredsLinux(DataPipelineUri: String): String - listDatasetTableColumns(tableUri: String, filter: DatasetTableColumnFilter): DatasetTableColumnSearchResult - listDatasetTableProfilingRuns(tableUri: String): DatasetProfilingRunSearchResults - getDatasetTableProfilingRun(tableUri: String): DatasetProfilingRun - getDatasetStorageLocation(locationUri: String): DatasetStorageLocation - getDataset(datasetUri: String): Dataset - listDatasets(filter: DatasetFilter): DatasetSearchResult - listOwnedDatasets(filter: DatasetFilter): DatasetSearchResult - getDatasetAssumeRoleUrl(datasetUri: String): String - getDatasetPresignedUrl(datasetUri: String, input: DatasetPresignedUrlInput): String - listDatasetsOwnedByEnvGroup(environmentUri: String, groupUri: String, filter: DatasetFilter): DatasetSearchResult - listDatasetsCreatedInEnvironment(environmentUri: String, filter: DatasetFilter): DatasetSearchResult - getDatasetTable(tableUri: String): DatasetTable - listDatasetTables(filter: DatasetTableFilter): DatasetTableSearchResult - previewTable(tableUri: String): QueryPreviewResult - searchDashboards(filter: DashboardFilter): DashboardSearchResults - getDashboard(dashboardUri: String): Dashboard - getMonitoringDashboardId: String - getMonitoringVPCConnectionId: String - getPlatformAuthorSession(awsAccount: String): String - getPlatformReaderSession(dashboardId: String): String - getAuthorSession(dashboardUri: String, environmentUri: String): String - getReaderSession(dashboardUri: String): String - listDashboardShares(dashboardUri: String, filter: DashboardShareFilter): DashboardShareSearchResults - getShareObject(shareUri: String): ShareObject - getShareRequestsFromMe(filter: ShareObjectFilter): ShareSearchResult - getShareRequestsToMe(filter: ShareObjectFilter): ShareSearchResult - searchEnvironmentDataItems(environmentUri: String, filter: EnvironmentDataItemFilter): EnvironmentPublishedItemSearchResults - listDatasetShareObjects(datasetUri: String, environmentUri: String, page: Int): ShareSearchResult - getSharedDatasetTables(datasetUri: String, envUri: String): [SharedDatasetTableItem] - getDatasetSharedAssumeRoleUrl(datasetUri: String): String - getWorksheet(worksheetUri: String): Worksheet - listWorksheets(filter: WorksheetFilter): Worksheets - runAthenaSqlQuery(environmentUri: String, worksheetUri: String, sqlQuery: String): AthenaQueryResult -} - -type Mutation { - updateGroupTenantPermissions(input: UpdateGroupTenantPermissionsInput): Boolean - updateSSMParameter(name: String, value: String): String - createNetwork(input: NewVpcInput): Vpc - deleteNetwork(vpcUri: String): Boolean - createOrganization(input: NewOrganizationInput): Organization - updateOrganization(organizationUri: String, input: ModifyOrganizationInput): Organization - archiveOrganization(organizationUri: String): Boolean - inviteGroupToOrganization(input: InviteGroupToOrganizationInput): Organization - removeGroupFromOrganization(organizationUri: String, groupUri: String): Organization - createEnvironment(input: NewEnvironmentInput): Environment - updateEnvironment(environmentUri: String, input: ModifyEnvironmentInput): Environment - inviteGroupOnEnvironment(input: InviteGroupOnEnvironmentInput): Environment - addConsumptionRoleToEnvironment(input: AddConsumptionRoleToEnvironmentInput): ConsumptionRole - updateGroupEnvironmentPermissions(input: InviteGroupOnEnvironmentInput): Environment - removeGroupFromEnvironment(environmentUri: String, groupUri: String): Environment - removeConsumptionRoleFromEnvironment(environmentUri: String, consumptionRoleUri: String): Boolean - deleteEnvironment(environmentUri: String, deleteFromAWS: Boolean): Boolean - enableDataSubscriptions(environmentUri: String, input: EnableDataSubscriptionsInput): Boolean - DisableDataSubscriptions(environmentUri: String): Boolean - updateConsumptionRole(environmentUri: String, consumptionRoleUri: String, input: UpdateConsumptionRoleInput): ConsumptionRole - updateStack(targetUri: String, targetType: String): Stack - updateKeyValueTags(input: UpdateKeyValueTagsInput): [KeyValueTag] - createSagemakerStudioUser(input: NewSagemakerStudioUserInput): SagemakerStudioUser - deleteSagemakerStudioUser(sagemakerStudioUserUri: String, deleteFromAWS: Boolean): String - createSagemakerNotebook(input: NewSagemakerNotebookInput): SagemakerNotebook - startSagemakerNotebook(notebookUri: String): String - stopSagemakerNotebook(notebookUri: String): String - deleteSagemakerNotebook(notebookUri: String, deleteFromAWS: Boolean): String - markNotificationAsRead(notificationUri: String): Boolean - deleteNotification(notificationUri: String): Boolean - createGlossary(input: CreateGlossaryInput): Glossary - updateGlossary(nodeUri: String, input: UpdateGlossaryInput): Glossary - deleteGlossary(nodeUri: String): Int - createCategory(parentUri: String, input: CreateCategoryInput): Category - updateCategory(nodeUri: String, input: UpdateCategoryInput): Category - deleteCategory(nodeUri: String): Int - createTerm(parentUri: String, input: CreateTermInput): Term - updateTerm(nodeUri: String, input: UpdateTermInput): Term - deleteTerm(nodeUri: String): Int - approveTermAssociation(linkUri: String): Boolean - dismissTermAssociation(linkUri: String): Boolean - postFeedMessage(targetUri: String, targetType: String, input: FeedMessageInput): FeedMessage - upVote(input: VoteInput): Vote - createDataPipeline(input: NewDataPipelineInput): DataPipeline - updateDataPipeline(DataPipelineUri: String, input: UpdateDataPipelineInput): DataPipeline - deleteDataPipeline(DataPipelineUri: String, deleteFromAWS: Boolean): Boolean - createDataPipelineEnvironment(input: NewDataPipelineEnvironmentInput): DataPipelineEnvironment - deleteDataPipelineEnvironment(envPipelineUri: String): Boolean - updateDataPipelineEnvironment(input: NewDataPipelineEnvironmentInput): DataPipelineEnvironment - syncDatasetTableColumns(tableUri: String): DatasetTableColumnSearchResult - updateDatasetTableColumn(columnUri: String, input: DatasetTableColumnInput): DatasetTableColumn - startDatasetProfilingRun(input: StartDatasetProfilingRunInput): DatasetProfilingRun - createDatasetStorageLocation(datasetUri: String, input: NewDatasetStorageLocationInput): DatasetStorageLocation - updateDatasetStorageLocation(locationUri: String, input: ModifyDatasetStorageLocationInput): DatasetStorageLocation - deleteDatasetStorageLocation(locationUri: String): Boolean - createDataset(input: NewDatasetInput): Dataset - updateDataset(datasetUri: String, input: ModifyDatasetInput): Dataset - generateDatasetAccessToken(datasetUri: String): String - deleteDataset(datasetUri: String, deleteFromAWS: Boolean): Boolean - importDataset(input: ImportDatasetInput): Dataset - startGlueCrawler(datasetUri: String, input: CrawlerInput): GlueCrawler - updateDatasetTable(tableUri: String, input: ModifyDatasetTableInput): DatasetTable - deleteDatasetTable(tableUri: String): Boolean - syncTables(datasetUri: String): DatasetTableSearchResult - importDashboard(input: ImportDashboardInput): Dashboard - updateDashboard(input: UpdateDashboardInput): Dashboard - deleteDashboard(dashboardUri: String): Boolean - shareDashboard(principalId: String, dashboardUri: String): DashboardShare - requestDashboardShare(principalId: String, dashboardUri: String): DashboardShare - approveDashboardShare(shareUri: String): DashboardShare - rejectDashboardShare(shareUri: String): DashboardShare - createQuicksightDataSourceSet(vpcConnectionId: String): String - createShareObject(datasetUri: String, itemUri: String, itemType: String, input: NewShareObjectInput): ShareObject - deleteShareObject(shareUri: String): Boolean - addSharedItem(shareUri: String, input: AddSharedItemInput): ShareItem - removeSharedItem(shareItemUri: String): Boolean - submitShareObject(shareUri: String): ShareObject - approveShareObject(shareUri: String): ShareObject - rejectShareObject(shareUri: String, rejectPurpose: String): ShareObject - revokeItemsShareObject(input: ShareItemSelectorInput): ShareObject - verifyItemsShareObject(input: ShareItemSelectorInput): ShareObject - reApplyItemsShareObject(input: ShareItemSelectorInput): ShareObject - updateShareRejectReason(shareUri: String, rejectPurpose: String): Boolean - updateShareRequestReason(shareUri: String, requestPurpose: String): Boolean - verifyDatasetShareObjects(input: ShareObjectSelectorInput): Boolean - createWorksheet(input: NewWorksheetInput): Worksheet - updateWorksheet(worksheetUri: String, input: UpdateWorksheetInput): Worksheet - deleteWorksheet(worksheetUri: String): Boolean -} \ No newline at end of file diff --git a/backend/test.json b/backend/test.json deleted file mode 100644 index a46986b6e..000000000 --- a/backend/test.json +++ /dev/null @@ -1,25758 +0,0 @@ -{ - "__schema": { - "description": null, - "queryType": { - "name": "Query" - }, - "mutationType": { - "name": "Mutation" - }, - "subscriptionType": null, - "types": [ - { - "kind": "ENUM", - "name": "EnvironmentSortField", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SortDirection", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "asc", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "OrganizationSortField", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "OrganisationUserRole", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Owner", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Admin", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Member", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NotMember", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Invited", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EnvironmentPermission", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Owner", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Admin", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DatasetCreator", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Invited", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ProjectAccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NotInvited", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SagemakerStudioRole", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Creator", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Admin", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NoPermission", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "SagemakerNotebookRole", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CREATOR", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ADMIN", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NO_PERMISSION", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "GlossaryRole", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Admin", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NoPermission", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DataPipelineRole", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Creator", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Admin", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NoPermission", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DatasetSortField", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "label", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DatasetRole", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "BusinessOwner", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DataSteward", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Creator", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Admin", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Shared", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NoPermission", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DashboardRole", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Creator", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Admin", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Shared", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NoPermission", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ShareableType", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Table", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "StorageLocation", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "View", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S3Bucket", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ShareSortField", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "created", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ShareItemHealthStatus", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Healthy", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Unhealthy", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PendingVerify", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PendingReApply", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PrincipalType", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Any", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Organization", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Environment", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "User", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Project", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Public", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Group", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ConsumptionRole", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "EnvironmentType", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Data", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Compute", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "DatasetType", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "S3", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ConfidentialityClassification", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Unclassified", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Official", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Secret", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Language", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "English", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "French", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "German", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Topic", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Finances", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "HumanResources", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Products", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Services", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Operations", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Research", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Sales", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Orders", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Sites", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Energy", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Customers", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Misc", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ShareObjectPermission", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Approvers", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ApproversAndRequesters", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Requesters", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DatasetAdmins", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NoPermission", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ShareObjectStatus", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Deleted", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Approved", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Rejected", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Revoked", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Draft", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Submitted", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Revoke_In_Progress", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Share_In_Progress", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Processed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ShareItemStatus", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Deleted", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "PendingApproval", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Share_Approved", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Share_Rejected", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Share_In_Progress", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Share_Succeeded", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Share_Failed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Revoke_Approved", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Revoke_In_Progress", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Revoke_Failed", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Revoke_Succeeded", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ShareObjectActions", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Submit", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Approve", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Reject", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RevokeItems", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Start", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Finish", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FinishPending", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Delete", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AcquireLockFailure", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "ShareItemActions", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "AddItem", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RemoveItem", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Failure", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Success", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "WorksheetRole", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "Creator", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Admin", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NoPermission", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateGroupTenantPermissionsInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "permissions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "KeyValueTagInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cascade", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateKeyValueTagsInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "KeyValueTagInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AwsEnvironmentInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "AwsAccountId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ModifyEnvironmentParameterInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "key", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NewEnvironmentInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EnvironmentDefaultIAMRoleArn", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourcePrefix", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameters", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ModifyEnvironmentParameterInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "vpcId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subnetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ModifyEnvironmentInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourcePrefix", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameters", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ModifyEnvironmentParameterInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "vpcId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subnetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EnableDataSubscriptionsInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "producersTopicArn", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EnvironmentSortCriteria", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "field", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EnvironmentSortField", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "direction", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SortDirection", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EnvironmentFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "displayArchived", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roles", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EnvironmentPermission", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "quicksight", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EnvironmentSortCriteria", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InviteGroupOnEnvironmentInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "permissions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentIAMRoleArn", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddConsumptionRoleToEnvironmentInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "consumptionRoleName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IAMRoleArn", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataallManaged", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ConsumptionRoleFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateConsumptionRoleInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "consumptionRoleName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VpcFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NewVpcInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "vpcId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicSubnetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "privateSubnetIds", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NewOrganizationInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ModifyOrganizationInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OrganizationSortCriteria", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "field", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OrganizationSortField", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "direction", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SortDirection", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "OrganizationFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "displayArchived", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "OrganizationSortCriteria", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roles", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OrganisationUserRole", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "InviteGroupToOrganizationInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GroupFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ServiceProviderGroupFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NewSagemakerStudioUserInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "topics", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlAdminGroupName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ModifySagemakerStudioUserInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SagemakerStudioUserFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NewSagemakerNotebookInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlAdminGroupName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "topics", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VpcId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SubnetId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VolumeSizeInGB", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "InstanceType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ModifySagemakerNotebookInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "SagemakerNotebookFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "offset", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateGlossaryInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "readme", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "admin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateGlossaryInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "readme", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "admin", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateCategoryInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "readme", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateCategoryInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "readme", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CreateTermInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "readme", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateTermInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "readme", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GlossaryFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CategoryFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TermFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "status", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GlossaryTermTargetFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "GlossaryNodeSearchFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FeedMessageInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "content", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FeedMessageFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NotificationFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "read", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "unread", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "archived", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "VoteInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "upvote", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NewDataPipelineInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "devStrategy", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NewDataPipelineEnvironmentInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "stage", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pipelineUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentLabel", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "samlGroupName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateDataPipelineInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DataPipelineFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DataPipelineEnvironmentFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pipelineUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DataPipelineBrowseInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "DataPipelineUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "folderPath", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DataPipelineFileContentInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "DataPipelineUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "branch", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "absolutePath", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DatasetTableColumnFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DatasetTableColumnInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "classification", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "topics", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "StartDatasetProfilingRunInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueTableName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tableUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DatasetProfilingRunFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NewDatasetStorageLocationInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "prefix", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ModifyDatasetStorageLocationInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "locationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DatasetStorageLocationFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DatasetAccessPointFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ModifyDatasetTableInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "prefix", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "topics", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DatasetSortCriteria", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "field", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DatasetSortField", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "direction", - "description": null, - "type": { - "kind": "ENUM", - "name": "SortDirection", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DatasetTableFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DatasetSortCriteria", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NewDatasetInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "language", - "description": null, - "type": { - "kind": "ENUM", - "name": "Language", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "topics", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Topic", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlAdminGroupName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "businessOwnerEmail", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "businessOwnerDelegationEmails", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confidentiality", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stewards", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoApprovalEnabled", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ModifyDatasetInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "topics", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Topic", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "businessOwnerDelegationEmails", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "businessOwnerEmail", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "language", - "description": null, - "type": { - "kind": "ENUM", - "name": "Language", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confidentiality", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stewards", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KmsAlias", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoApprovalEnabled", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DatasetFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roles", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DatasetRole", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "InProject", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "notInProject", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "displayArchived", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DatasetSortCriteria", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DatasetPresignedUrlInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "fileName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "prefix", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "CrawlerInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "prefix", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportDatasetInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bucketName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "glueDatabaseName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KmsKeyAlias", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "adminRoleName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "language", - "description": null, - "type": { - "kind": "ENUM", - "name": "Language", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "topics", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Topic", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlAdminGroupName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "businessOwnerEmail", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "businessOwnerDelegationEmails", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confidentiality", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stewards", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoApprovalEnabled", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShareObjectSelectorInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shareUris", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ImportDashboardInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboardId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateDashboardInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "dashboardUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DashboardFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "DashboardShareFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NewShareObjectInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "principalId", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "principalType", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "requestPurpose", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "attachMissingPolicies", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "AddSharedItemInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "itemUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "itemType", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ShareableType", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShareItemSelectorInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "shareUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "itemUris", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShareSortCriteria", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "field", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ShareSortField", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "direction", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SortDirection", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShareObjectFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sort", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ShareSortCriteria", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataset_owners", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasets_uris", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "share_requesters", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "share_iam_roles", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ShareableObjectFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isShared", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRevokable", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isHealthy", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "EnvironmentDataItemFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "itemTypes", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "uniqueShares", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PrincipalFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "principalType", - "description": null, - "type": { - "kind": "ENUM", - "name": "PrincipalType", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "NewWorksheetInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlAdminGroupName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "UpdateWorksheetInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sqlBody", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chartConfig", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorksheetChartConfigInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorksheetChartInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "chartConfig", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorksheetQueryInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "sqlBody", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AthenaQueryId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorksheetFilter", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "term", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorksheetDimensionInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "columnName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorksheetMeasureInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "columnName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregationName", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "WorksheetChartConfigInput", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": [ - { - "name": "chartType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dimensions", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorksheetDimensionInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "measures", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WorksheetMeasureInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "UNION", - "name": "GlossaryNode", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Glossary", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Category", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Term", - "ofType": null - } - ] - }, - { - "kind": "UNION", - "name": "FeedTarget", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "DataPipeline", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "DatasetStorageLocation", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "DatasetTable", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "Dashboard", - "ofType": null - } - ] - }, - { - "kind": "UNION", - "name": "ShareableObject", - "description": null, - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "DatasetTable", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "DatasetStorageLocation", - "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "Permission", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "permissionUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PermissionSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Permission", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Tenant", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "tenantUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ID", - "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Vpc", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "VpcId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "vpcUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "privateSubnetIds", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicSubnetIds", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "default", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "VpcSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vpc", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrganizationStats", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "groups", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environments", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Organization", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "organizationUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleInOrganization", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "OrganisationUserRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environments", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EnvironmentFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "EnvironmentSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stats", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "OrganizationStats", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrganizationSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "OrganizationSimplified", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "organizationUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnvironmentUserPermission", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "userName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleInEnvironment", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "EnvironmentPermission", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnvironmentUserPermissionSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EnvironmentUserPermission", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnvironmentGroupPermission", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "groupUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupRoleInEnvironment", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "EnvironmentPermission", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Group", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Group", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnvironmentGroupPermissionSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EnvironmentGroupPermission", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnvironmentParameter", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Environment", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "environmentUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "admins", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resourcePrefix", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EnvironmentDefaultIAMRoleArn", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EnvironmentDefaultIAMRoleName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EnvironmentDefaultIAMRoleImported", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasets", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "OrganizationSimplified", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleInEnvironment", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "EnvironmentPermission", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "validated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "roleCreated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isOrganizationDefaultEnvironment", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stack", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Stack", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionsEnabled", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionsProducersTopicImported", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionsConsumersTopicImported", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionsConsumersTopicName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionsProducersTopicName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EnvironmentDefaultBucketName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EnvironmentDefaultAthenaWorkGroup", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "networks", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vpc", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parameters", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EnvironmentParameter", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnvironmentSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnvironmentSimplified", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "environmentUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "OrganizationSimplified", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "networks", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Vpc", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnvironmentSimplifiedSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EnvironmentSimplified", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "RoleManagedPolicy", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "policy_name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "policy_type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exists", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "attached", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ConsumptionRole", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "consumptionRoleUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "consumptionRoleName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IAMRoleArn", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IAMRoleName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataallManaged", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "managedPolicies", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "RoleManagedPolicy", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ConsumptionRoleSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ConsumptionRole", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Stack", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "stackUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stack", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "accountid", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stackid", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "link", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "outputs", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "resources", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "error", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "events", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EcsTaskArn", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "EcsTaskId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "StackLog", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "logStream", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logGroup", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "KeyValueTag", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "tagUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "key", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cascade", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Group", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "groupUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "invitedBy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentIAMRoleArn", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentIAMRoleName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentAthenaWorkGroup", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentPermissions", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Permission", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tenantPermissions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Permission", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GroupSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Group", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GroupsInfo", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "groupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SagemakerStudioUserApps", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "DomainId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UserName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AppType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AppName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SagemakerStudioUser", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "sagemakerStudioUserUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlAdminGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleForSagemakerStudioUser", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "SagemakerStudioRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sagemakerStudioUserStatus", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sagemakerStudioUserApps", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SagemakerStudioUserApps", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stack", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Stack", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SagemakerStudioUserSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SagemakerStudioUser", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SagemakerStudioDomain", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "sagemakerStudioUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sagemakerStudioDomainName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DefaultDomainRoleName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "vpcType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "vpcId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subnetIds", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SagemakerNotebook", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "notebookUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlAdminGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VpcId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SubnetId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "InstanceType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "RoleArn", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VolumeSizeInGB", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleForNotebook", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "SagemakerNotebookRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NotebookInstanceStatus", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stack", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Stack", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SagemakerNotebookSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SagemakerNotebook", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GlossaryChildrenSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "UNION", - "name": "GlossaryNode", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Glossary", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "nodeUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parentUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "admin", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleForGlossary", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "GlossaryRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "readme", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isMatch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assetLink", - "description": null, - "args": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GlossaryTermLink", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stats", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "GlossaryNodeStatistics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tree", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GlossaryNodeSearchFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GlossaryChildrenSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "children", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GlossaryNodeSearchFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GlossaryChildrenSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "categories", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CategoryFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CategorySearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "associations", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GlossaryTermTargetFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TermLinkSearchResults", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Category", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "nodeUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parentUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "readme", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isMatch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assetLink", - "description": null, - "args": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GlossaryTermLink", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stats", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "GlossaryNodeStatistics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "children", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GlossaryNodeSearchFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GlossaryChildrenSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "categories", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CategoryFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "CategorySearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TermFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TermSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "associations", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GlossaryTermTargetFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TermLinkSearchResults", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Term", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "nodeUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parentUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "path", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "readme", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isMatch", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "assetLink", - "description": null, - "args": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GlossaryTermLink", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "children", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GlossaryNodeSearchFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GlossaryChildrenSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stats", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "GlossaryNodeStatistics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "glossary", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Glossary", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "associations", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GlossaryTermTargetFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "TermLinkSearchResults", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TermLinkSearchResults", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GlossaryTermLink", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TermSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Term", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "CategorySearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Category", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GlossarySearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Glossary", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GlossaryTermLinkTarget", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GlossaryTermLink", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "linkUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodeUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "approvedByOwner", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "approvedBySteward", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "term", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Term", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "target", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "GlossaryTermLinkTarget", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GlossaryNodeStatistics", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "categories", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "associations", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Feed", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "feedTargetUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feedTargetType", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "messages", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FeedMessageFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "FeedMessages", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FeedMessage", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "feedMessageUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "creator", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "content", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FeedMessages", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FeedMessage", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Notification", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "notificationUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "message", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "username", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "target_uri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "is_read", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NotificationSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Notification", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Vote", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "voteUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "upvote", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataPipeline", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "DataPipelineUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "repo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "developmentEnvironments", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DataPipelineEnvironmentSearchResults", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "template", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "devStrategy", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cloneUrlHttp", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stack", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Stack", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleForPipeline", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DataPipelineRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataPipelineSearchResults", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DataPipeline", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataPipelineEnvironment", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "envPipelineUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentLabel", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pipelineUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pipelineLabel", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "order", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "samlGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DataPipelineEnvironmentSearchResults", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DataPipelineEnvironment", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetTableColumn", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "tableUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "columnUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueDatabaseName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueTableName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "typeName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "columnType", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "classification", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "topics", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TermLinkSearchResults", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetTableColumnSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DatasetTableColumn", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetProfilingRun", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "profilingRunUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueJobName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueJobRunId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueTriggerSchedule", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueTriggerName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueTableName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "results", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataset", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetProfilingRunSearchResults", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DatasetProfilingRun", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetStorageLocation", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "locationUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S3BucketName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S3Prefix", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locationCreated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataset", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleForStorageLocation", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DatasetRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentEndPoint", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TermSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetStorageLocationSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DatasetStorageLocation", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetAccessPoint", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "accessPointUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "location", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DatasetStorageLocation", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataset", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S3BucketName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S3Prefix", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S3AccessPointName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetAccessPointSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DatasetAccessPoint", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetStatistics", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "tables", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "upvotes", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Dataset", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "datasetUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "admins", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S3BucketName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueDatabaseName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueCrawlerName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueCrawlerSchedule", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueProfilingJobName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueProfilingTriggerSchedule", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "IAMDatasetAdminRoleArn", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "KmsAlias", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bucketCreated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "glueDatabaseCreated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "iamAdminRoleCreated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lakeformationLocationCreated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bucketPolicyCreated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlAdminGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "businessOwnerEmail", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "businessOwnerDelegationEmails", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "importedS3Bucket", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "importedGlueDatabase", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "importedKmsKey", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "importedAdminRole", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "imported", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owners", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stewards", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tables", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DatasetTableFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetTableSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DatasetStorageLocationFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetStorageLocationSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleForDataset", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DatasetRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleInEnvironment", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "EnvironmentPermission", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statistics", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DatasetStatistics", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TermSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "topics", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "Topic", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "confidentiality", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "language", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "Language", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "projectPermission", - "description": null, - "args": [ - { - "name": "projectUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "ENUM", - "name": "DatasetRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isPublishedInEnvironment", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stack", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Stack", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "autoApprovalEnabled", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "GlueCrawler", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "Name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TablePermission", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "userName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TablePermissionSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TablePermission", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetTable", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "tableUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataset", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "admins", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueDatabaseName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueTableName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LastGlueTableStatus", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S3Prefix", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueTableConfig", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueTableProperties", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleForTable", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DatasetRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "columns", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DatasetTableColumnSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TermSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetTableSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DatasetTable", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetTableRecord", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "data", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetTableMetadataItem", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "Name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SharedDatasetTableItem", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "tableUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueTableName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "QueryPreviewResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "fields", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rows", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Dashboard", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "dashboardUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DashboardId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organization", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleForDashboard", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "DashboardRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "terms", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "TermSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "upvotes", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DashboardShare", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "shareUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboardUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DashboardSearchResults", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Dashboard", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DashboardShareSearchResults", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DashboardShare", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShareItem", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "shareUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shareItemUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "itemUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ShareItemStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "action", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "itemType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ShareableType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "itemName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "healthStatus", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ShareItemHealthStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "healthMessage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastVerificationTime", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sharedObject", - "description": null, - "args": [], - "type": { - "kind": "UNION", - "name": "ShareableObject", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NotSharedItem", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "itemUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shareItemUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "itemType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ShareableType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "NotSharedItemsSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "NotSharedItem", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "SharedItemSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ShareItem", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShareObjectStatistic", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tables", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sharedItems", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "revokedItems", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "failedItems", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pendingItems", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "DatasetLink", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "datasetUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlAdminGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "exists", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ConsumptionData", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "s3AccessPointName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sharedGlueDatabase", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "s3bucketName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShareObject", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "shareUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "status", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ShareObjectStatus", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleted", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "requestPurpose", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejectPurpose", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dataset", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "DatasetLink", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "consumptionData", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ConsumptionData", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "existingSharedItems", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "statistics", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "ShareObjectStatistic", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "principal", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Principal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environment", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "group", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "items", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ShareableObjectFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SharedItemSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleForShareObject", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "ShareObjectPermission", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ShareSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ShareObject", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnvironmentPublishedItem", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "shareUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "datasetName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "itemAccess", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "itemType", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetEnvironmentUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "principalId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organizationUri", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organizationName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueDatabaseName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "GlueTableName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "S3AccessPointName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sharedGlueDatabaseName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "EnvironmentPublishedItemSearchResults", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "EnvironmentPublishedItem", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Principal", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "principalId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "principalType", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "PrincipalType", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "principalName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "principalIAMRoleName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organizationName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "organizationUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PrincipalSearchResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Principal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pageSize", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nextPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previousPage", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AthenaResultColumnDescriptor", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "columnName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "typeName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AthenaResultRecordCell", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "value", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "typeName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "columnName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AthenaResultRecord", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "cells", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AthenaResultRecordCell", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "AthenaQueryResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "Error", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OutputLocation", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AthenaQueryId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ElapsedTimeInMs", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DataScannedInBytes", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "Status", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "columns", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AthenaResultColumnDescriptor", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rows", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "AthenaResultRecord", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Worksheet", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "worksheetUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "label", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tags", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sqlBody", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "chartConfig", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "WorksheetChartConfig", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "owner", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SamlAdminGroupName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastSavedQueryResult", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "AthenaQueryResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userRoleForWorksheet", - "description": null, - "args": [], - "type": { - "kind": "ENUM", - "name": "WorksheetRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Worksheets", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "count", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pages", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasNext", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasPrevious", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nodes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Worksheet", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorksheetQueryResult", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "worksheetQueryResultUri", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queryType", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sqlBody", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AthenaQueryId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "region", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AwsAccountId", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AthenaOutputBucketName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "AthenaOutputKey", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timeElapsedInSecond", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorksheetChartDimension", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "columnName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorksheetChartMeasure", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "columnName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aggregationName", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "WorksheetChartConfig", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "AthenaQueryId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dimensions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorksheetChartDimension", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "measures", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "WorksheetChartMeasure", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Query", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "listTenantPermissions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Permission", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listTenantGroups", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GroupSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getOrganization", - "description": null, - "args": [ - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listOrganizations", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "OrganizationFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "OrganizationSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listOrganizationGroups", - "description": null, - "args": [ - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GroupSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getTrustAccount", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getEnvironment", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listEnvironments", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EnvironmentFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "EnvironmentSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listValidEnvironments", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EnvironmentFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "EnvironmentSimplifiedSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listEnvironmentNetworks", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VpcFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "VpcSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "generateEnvironmentAccessToken", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getEnvironmentAssumeRoleUrl", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listEnvironmentInvitedGroups", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GroupSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listEnvironmentGroups", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GroupSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listAllEnvironmentGroups", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GroupSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listAllGroups", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GroupSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listAllConsumptionRoles", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ConsumptionRoleFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ConsumptionRoleSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listEnvironmentConsumptionRoles", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ConsumptionRoleFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ConsumptionRoleSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listAllEnvironmentConsumptionRoles", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ConsumptionRoleFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ConsumptionRoleSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listEnvironmentGroupInvitationPermissions", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Permission", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getPivotRolePresignedUrl", - "description": null, - "args": [ - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getCDKExecPolicyPresignedUrl", - "description": null, - "args": [ - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getPivotRoleExternalId", - "description": null, - "args": [ - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getPivotRoleName", - "description": null, - "args": [ - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getStack", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stackUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Stack", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getStackLogs", - "description": null, - "args": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "StackLog", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listKeyValueTags", - "description": null, - "args": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "KeyValueTag", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getGroup", - "description": null, - "args": [ - { - "name": "groupUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Group", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listGroups", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ServiceProviderGroupFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "GroupsInfo", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getGroupsForUser", - "description": null, - "args": [ - { - "name": "userid", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getSagemakerStudioUser", - "description": null, - "args": [ - { - "name": "sagemakerStudioUserUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SagemakerStudioUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listSagemakerStudioUsers", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SagemakerStudioUserFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SagemakerStudioUserSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getSagemakerStudioUserPresignedUrl", - "description": null, - "args": [ - { - "name": "sagemakerStudioUserUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getEnvironmentMLStudioDomain", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SagemakerStudioDomain", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getSagemakerNotebook", - "description": null, - "args": [ - { - "name": "notebookUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SagemakerNotebook", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listSagemakerNotebooks", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "SagemakerNotebookFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SagemakerNotebookSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getSagemakerNotebookPresignedUrl", - "description": null, - "args": [ - { - "name": "notebookUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getGlossary", - "description": null, - "args": [ - { - "name": "nodeUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Glossary", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listGlossaries", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GlossaryFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GlossarySearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "searchGlossary", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "GlossaryNodeSearchFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GlossaryChildrenSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getFeed", - "description": null, - "args": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Feed", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listNotifications", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NotificationFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "NotificationSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countUnreadNotifications", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countReadNotifications", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countDeletedNotifications", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "countUpVotes", - "description": null, - "args": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getVote", - "description": null, - "args": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Vote", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listDataPipelines", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DataPipelineFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DataPipelineSearchResults", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getDataPipeline", - "description": null, - "args": [ - { - "name": "DataPipelineUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DataPipeline", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getDataPipelineCredsLinux", - "description": null, - "args": [ - { - "name": "DataPipelineUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listDatasetTableColumns", - "description": null, - "args": [ - { - "name": "tableUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DatasetTableColumnFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetTableColumnSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listDatasetTableProfilingRuns", - "description": null, - "args": [ - { - "name": "tableUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetProfilingRunSearchResults", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getDatasetTableProfilingRun", - "description": null, - "args": [ - { - "name": "tableUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetProfilingRun", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getDatasetStorageLocation", - "description": null, - "args": [ - { - "name": "locationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetStorageLocation", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getDataset", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listDatasets", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DatasetFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listOwnedDatasets", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DatasetFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getDatasetAssumeRoleUrl", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getDatasetPresignedUrl", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DatasetPresignedUrlInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listDatasetsOwnedByEnvGroup", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DatasetFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listDatasetsCreatedInEnvironment", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DatasetFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getDatasetTable", - "description": null, - "args": [ - { - "name": "tableUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetTable", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listDatasetTables", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DatasetTableFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetTableSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "previewTable", - "description": null, - "args": [ - { - "name": "tableUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "QueryPreviewResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "searchDashboards", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DashboardFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DashboardSearchResults", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getDashboard", - "description": null, - "args": [ - { - "name": "dashboardUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dashboard", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getMonitoringDashboardId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getMonitoringVPCConnectionId", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getPlatformAuthorSession", - "description": null, - "args": [ - { - "name": "awsAccount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getPlatformReaderSession", - "description": null, - "args": [ - { - "name": "dashboardId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getAuthorSession", - "description": null, - "args": [ - { - "name": "dashboardUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getReaderSession", - "description": null, - "args": [ - { - "name": "dashboardUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listDashboardShares", - "description": null, - "args": [ - { - "name": "dashboardUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DashboardShareFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DashboardShareSearchResults", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getShareObject", - "description": null, - "args": [ - { - "name": "shareUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareObject", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getShareRequestsFromMe", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ShareObjectFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getShareRequestsToMe", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ShareObjectFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "searchEnvironmentDataItems", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EnvironmentDataItemFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "EnvironmentPublishedItemSearchResults", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listDatasetShareObjects", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "page", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getSharedDatasetTables", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "envUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SharedDatasetTableItem", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getDatasetSharedAssumeRoleUrl", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "getWorksheet", - "description": null, - "args": [ - { - "name": "worksheetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Worksheet", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "listWorksheets", - "description": null, - "args": [ - { - "name": "filter", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "WorksheetFilter", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Worksheets", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "runAthenaSqlQuery", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "worksheetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sqlQuery", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "AthenaQueryResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Mutation", - "description": null, - "specifiedByURL": null, - "fields": [ - { - "name": "updateGroupTenantPermissions", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateGroupTenantPermissionsInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateSSMParameter", - "description": null, - "args": [ - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "value", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createNetwork", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewVpcInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Vpc", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteNetwork", - "description": null, - "args": [ - { - "name": "vpcUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createOrganization", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewOrganizationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateOrganization", - "description": null, - "args": [ - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ModifyOrganizationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "archiveOrganization", - "description": null, - "args": [ - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inviteGroupToOrganization", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "InviteGroupToOrganizationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removeGroupFromOrganization", - "description": null, - "args": [ - { - "name": "organizationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Organization", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createEnvironment", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewEnvironmentInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateEnvironment", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ModifyEnvironmentInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inviteGroupOnEnvironment", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "InviteGroupOnEnvironmentInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addConsumptionRoleToEnvironment", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddConsumptionRoleToEnvironmentInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ConsumptionRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateGroupEnvironmentPermissions", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "InviteGroupOnEnvironmentInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removeGroupFromEnvironment", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Environment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removeConsumptionRoleFromEnvironment", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "consumptionRoleUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteEnvironment", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteFromAWS", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enableDataSubscriptions", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "EnableDataSubscriptionsInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "DisableDataSubscriptions", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateConsumptionRole", - "description": null, - "args": [ - { - "name": "environmentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "consumptionRoleUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateConsumptionRoleInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ConsumptionRole", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateStack", - "description": null, - "args": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Stack", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateKeyValueTags", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateKeyValueTagsInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "KeyValueTag", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createSagemakerStudioUser", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewSagemakerStudioUserInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SagemakerStudioUser", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteSagemakerStudioUser", - "description": null, - "args": [ - { - "name": "sagemakerStudioUserUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteFromAWS", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createSagemakerNotebook", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewSagemakerNotebookInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "SagemakerNotebook", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startSagemakerNotebook", - "description": null, - "args": [ - { - "name": "notebookUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "stopSagemakerNotebook", - "description": null, - "args": [ - { - "name": "notebookUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteSagemakerNotebook", - "description": null, - "args": [ - { - "name": "notebookUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteFromAWS", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createGlossary", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CreateGlossaryInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Glossary", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateGlossary", - "description": null, - "args": [ - { - "name": "nodeUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateGlossaryInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Glossary", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteGlossary", - "description": null, - "args": [ - { - "name": "nodeUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createCategory", - "description": null, - "args": [ - { - "name": "parentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CreateCategoryInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Category", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateCategory", - "description": null, - "args": [ - { - "name": "nodeUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateCategoryInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Category", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteCategory", - "description": null, - "args": [ - { - "name": "nodeUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createTerm", - "description": null, - "args": [ - { - "name": "parentUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CreateTermInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Term", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateTerm", - "description": null, - "args": [ - { - "name": "nodeUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateTermInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Term", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteTerm", - "description": null, - "args": [ - { - "name": "nodeUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "approveTermAssociation", - "description": null, - "args": [ - { - "name": "linkUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dismissTermAssociation", - "description": null, - "args": [ - { - "name": "linkUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "postFeedMessage", - "description": null, - "args": [ - { - "name": "targetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "targetType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FeedMessageInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "FeedMessage", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "markNotificationAsRead", - "description": null, - "args": [ - { - "name": "notificationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteNotification", - "description": null, - "args": [ - { - "name": "notificationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "upVote", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "VoteInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Vote", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createDataPipeline", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewDataPipelineInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DataPipeline", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDataPipeline", - "description": null, - "args": [ - { - "name": "DataPipelineUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateDataPipelineInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DataPipeline", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteDataPipeline", - "description": null, - "args": [ - { - "name": "DataPipelineUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteFromAWS", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createDataPipelineEnvironment", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewDataPipelineEnvironmentInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DataPipelineEnvironment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteDataPipelineEnvironment", - "description": null, - "args": [ - { - "name": "envPipelineUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDataPipelineEnvironment", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewDataPipelineEnvironmentInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DataPipelineEnvironment", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "syncDatasetTableColumns", - "description": null, - "args": [ - { - "name": "tableUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetTableColumnSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDatasetTableColumn", - "description": null, - "args": [ - { - "name": "columnUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "DatasetTableColumnInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetTableColumn", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startDatasetProfilingRun", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "StartDatasetProfilingRunInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetProfilingRun", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createDatasetStorageLocation", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewDatasetStorageLocationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetStorageLocation", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDatasetStorageLocation", - "description": null, - "args": [ - { - "name": "locationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ModifyDatasetStorageLocationInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetStorageLocation", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteDatasetStorageLocation", - "description": null, - "args": [ - { - "name": "locationUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createDataset", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewDatasetInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDataset", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ModifyDatasetInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "generateDatasetAccessToken", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteDataset", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteFromAWS", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "importDataset", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ImportDatasetInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dataset", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "startGlueCrawler", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "CrawlerInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "GlueCrawler", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDatasetTable", - "description": null, - "args": [ - { - "name": "tableUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ModifyDatasetTableInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetTable", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteDatasetTable", - "description": null, - "args": [ - { - "name": "tableUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "syncTables", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DatasetTableSearchResult", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "importDashboard", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ImportDashboardInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dashboard", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateDashboard", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateDashboardInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Dashboard", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteDashboard", - "description": null, - "args": [ - { - "name": "dashboardUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "shareDashboard", - "description": null, - "args": [ - { - "name": "principalId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboardUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DashboardShare", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "requestDashboardShare", - "description": null, - "args": [ - { - "name": "principalId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "dashboardUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DashboardShare", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "approveDashboardShare", - "description": null, - "args": [ - { - "name": "shareUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DashboardShare", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejectDashboardShare", - "description": null, - "args": [ - { - "name": "shareUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "DashboardShare", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createQuicksightDataSourceSet", - "description": null, - "args": [ - { - "name": "vpcConnectionId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createShareObject", - "description": null, - "args": [ - { - "name": "datasetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "itemUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "itemType", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewShareObjectInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareObject", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteShareObject", - "description": null, - "args": [ - { - "name": "shareUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "addSharedItem", - "description": null, - "args": [ - { - "name": "shareUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "AddSharedItemInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareItem", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "removeSharedItem", - "description": null, - "args": [ - { - "name": "shareItemUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "submitShareObject", - "description": null, - "args": [ - { - "name": "shareUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareObject", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "approveShareObject", - "description": null, - "args": [ - { - "name": "shareUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareObject", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejectShareObject", - "description": null, - "args": [ - { - "name": "shareUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejectPurpose", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareObject", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "revokeItemsShareObject", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ShareItemSelectorInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareObject", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verifyItemsShareObject", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ShareItemSelectorInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareObject", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reApplyItemsShareObject", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ShareItemSelectorInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "ShareObject", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateShareRejectReason", - "description": null, - "args": [ - { - "name": "shareUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "rejectPurpose", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateShareRequestReason", - "description": null, - "args": [ - { - "name": "shareUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "requestPurpose", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "verifyDatasetShareObjects", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "ShareObjectSelectorInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createWorksheet", - "description": null, - "args": [ - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "NewWorksheetInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Worksheet", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updateWorksheet", - "description": null, - "args": [ - { - "name": "worksheetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "input", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "UpdateWorksheetInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "OBJECT", - "name": "Worksheet", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deleteWorksheet", - "description": null, - "args": [ - { - "name": "worksheetUri", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Schema", - "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", - "specifiedByURL": null, - "fields": [ - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "types", - "description": "A list of all types supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "queryType", - "description": "The type that query operations will be rooted at.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subscriptionType", - "description": "If this server support subscription, the type that subscription operations will be rooted at.", - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "directives", - "description": "A list of all directives supported by this server.", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Type", - "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", - "specifiedByURL": null, - "fields": [ - { - "name": "kind", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "specifiedByURL", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "fields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Field", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "interfaces", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "possibleTypes", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "enumValues", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "inputFields", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ofType", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given `__Type` is.", - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "SCALAR", - "description": "Indicates this type is a scalar.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Field", - "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", - "specifiedByURL": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__InputValue", - "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", - "specifiedByURL": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "specifiedByURL": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isDeprecated", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deprecationReason", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__Directive", - "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - "specifiedByURL": null, - "fields": [ - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "isRepeatable", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "args", - "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", - "specifiedByURL": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSCRIPTION", - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Location adjacent to a field.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_DEFINITION", - "description": "Location adjacent to a fragment definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FRAGMENT_SPREAD", - "description": "Location adjacent to a fragment spread.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INLINE_FRAGMENT", - "description": "Location adjacent to an inline fragment.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "VARIABLE_DEFINITION", - "description": "Location adjacent to a variable definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCHEMA", - "description": "Location adjacent to a schema definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SCALAR", - "description": "Location adjacent to a scalar definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "OBJECT", - "description": "Location adjacent to an object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD_DEFINITION", - "description": "Location adjacent to a field definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ARGUMENT_DEFINITION", - "description": "Location adjacent to an argument definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INTERFACE", - "description": "Location adjacent to an interface definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "UNION", - "description": "Location adjacent to a union definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM", - "description": "Location adjacent to an enum definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ENUM_VALUE", - "description": "Location adjacent to an enum value definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_OBJECT", - "description": "Location adjacent to an input object type definition.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - } - ], - "directives": [ - { - "name": "include", - "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", - "isRepeatable": false, - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Included when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ] - }, - { - "name": "skip", - "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", - "isRepeatable": false, - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": "Skipped when true.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ] - }, - { - "name": "deprecated", - "description": "Marks an element of a GraphQL schema as no longer supported.", - "isRepeatable": false, - "locations": [ - "FIELD_DEFINITION", - "ARGUMENT_DEFINITION", - "INPUT_FIELD_DEFINITION", - "ENUM_VALUE" - ], - "args": [ - { - "name": "reason", - "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": "\"No longer supported\"", - "isDeprecated": false, - "deprecationReason": null - } - ] - }, - { - "name": "specifiedBy", - "description": "Exposes a URL that specifies the behaviour of this scalar.", - "isRepeatable": false, - "locations": [ - "SCALAR" - ], - "args": [ - { - "name": "url", - "description": "The URL that specifies the behaviour of this scalar.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ] - } - ] - } -} \ No newline at end of file diff --git a/backend/test.py b/backend/test.py deleted file mode 100644 index 7ff90435a..000000000 --- a/backend/test.py +++ /dev/null @@ -1,15 +0,0 @@ -from ariadne import ( - gql, -) -from graphql import print_schema, print_introspection_schema, introspection_from_schema -from dataall.base.api import bootstrap as bootstrap_schema, get_executable_schema -from dataall.base.loader import load_modules, ImportMode -import json -load_modules(ImportMode.all()) - -SCHEMA = bootstrap_schema() -TYPE_DEFS = gql(SCHEMA.gql(with_directives=False)) -executable_schema = get_executable_schema() - -with open("test.json", "x") as f: - f.write(json.dumps(introspection_from_schema(executable_schema))) \ No newline at end of file diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 03551bed6..ceb9487ea 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -44,6 +44,7 @@ "prop-types": "^15.8.1", "react": "^17.0.2", "react-apexcharts": "^1.4.0", + "react-chatbot-kit": "2.2.2", "react-copy-to-clipboard": "^5.0.4", "react-dom": "^17.0.2", "react-dropzone": "^12.0.4", @@ -25422,6 +25423,19 @@ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" }, + "node_modules/react-chatbot-kit": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/react-chatbot-kit/-/react-chatbot-kit-2.2.2.tgz", + "integrity": "sha512-8p/i0KkzkhoyG2XsL6Pb6f72k9j7GYNAc5SOa4f9OZwbCD3Q34uEruNPc06qa1wZHKfT6aFna19PA2plFuO2NA==", + "dependencies": { + "react-conditionally-render": "^1.0.2" + } + }, + "node_modules/react-conditionally-render": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/react-conditionally-render/-/react-conditionally-render-1.0.2.tgz", + "integrity": "sha512-CtjIgaLHVDSgHis3gv/PT/8EnD6GPUL8PrhUjh7DP6S5Y3p56dGu7y2nVg6pYv1kv+fGznRhRmX3assr/vRw3A==" + }, "node_modules/react-copy-to-clipboard": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.0.tgz", @@ -48800,6 +48814,19 @@ } } }, + "react-chatbot-kit": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/react-chatbot-kit/-/react-chatbot-kit-2.2.2.tgz", + "integrity": "sha512-8p/i0KkzkhoyG2XsL6Pb6f72k9j7GYNAc5SOa4f9OZwbCD3Q34uEruNPc06qa1wZHKfT6aFna19PA2plFuO2NA==", + "requires": { + "react-conditionally-render": "^1.0.2" + } + }, + "react-conditionally-render": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/react-conditionally-render/-/react-conditionally-render-1.0.2.tgz", + "integrity": "sha512-CtjIgaLHVDSgHis3gv/PT/8EnD6GPUL8PrhUjh7DP6S5Y3p56dGu7y2nVg6pYv1kv+fGznRhRmX3assr/vRw3A==" + }, "react-copy-to-clipboard": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.0.tgz", diff --git a/frontend/package.json b/frontend/package.json index 06c9af25a..72c3a2cc6 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -67,7 +67,8 @@ "simplebar": "^5.3.6", "simplebar-react": "^2.3.6", "web-vitals": "^2.1.4", - "yup": "^0.32.11" + "yup": "^0.32.11", + "react-chatbot-kit": "2.2.2" }, "overrides": { "@appbaseio/reactivesearch": { diff --git a/frontend/src/design/components/DataallChatbot.js b/frontend/src/design/components/DataallChatbot.js new file mode 100644 index 000000000..3f217e0f2 --- /dev/null +++ b/frontend/src/design/components/DataallChatbot.js @@ -0,0 +1,118 @@ +import { Box, Fab, Tooltip } from '@mui/material'; +import { useState, Children, cloneElement } from 'react'; //useEffect +import ChatIcon from '@mui/icons-material/Chat'; +import { Chatbot, createChatBotMessage } from 'react-chatbot-kit'; +import { useClient } from 'services'; +// import { SET_ERROR } from 'globalErrors'; +import './chatbot.css'; +import 'react-chatbot-kit/build/main.css'; +import { sendQueryChatbot } from 'services/graphql/Chatbot/sendQueryChatbot'; + +const config = { + lang: 'en', + botName: 'DataallBot', + initialMessages: [ + createChatBotMessage( + `Hi, I'm here to provide you with help navigating data.all!` + ) + ], + state: {} +}; + +const ActionProvider = ({ createChatBotMessage, setState, children }) => { + const client = useClient(); + + const handleQuery = (message) => { + const response = client.mutate( + sendQueryChatbot({ + queryString: message + }) + ); + + response.then((res) => { + let botResponse = ''; + + if (!res.errors) { + console.error('RESPONSE'); + + console.error(res); + botResponse = res.data.sendQueryChatbot.response; + } else { + botResponse = + 'I am sorry I am having trouble answering that question, is there anything else I can help you with?'; + } + const botMessage = createChatBotMessage(botResponse); + setState((prev) => ({ + ...prev, + messages: [...prev.messages, botMessage] + })); + }); + }; + return ( +