OBJECT
Cluster
link GraphQL Schema definition
1 type Cluster { 2 3 : ID! 4 5 : ClusterNodeList 6 7 : String 8 9 : Boolean 10 11 : ClusterType 12 13 : ID 14 15 : [ID!] 16 17 : String 18 19 : Boolean 20 21 : Float 22 23 : Float 24 25 : DateTime 26 27 : DateTime 28 29 : DateTime 30 31 : DateTime 32 33 : Boolean 34 35 : Boolean 36 37 (: Int, : Int): ClusterCollaboratorList 38 39 # Edge version. Default is 3. 40 : Int 41 42 # Retrieve jobs 43 # 44 # Arguments 45 # id: Provide an ID to retrieve a single specific job. 46 # status: Provide a list of status strings to filter by status 47 # offset: Provide an offset to skip to a certain element in the 48 # result, for paging. 49 # limit: Specify the maximum number of results to included in 50 # this response, or page size. 51 # applicationId: Provide an application ID to filter jobs for a 52 # given application. 53 # Defaults to the user's own application. 54 # targetId: Provide a target ID to get the set of jobs running 55 # against a particular TDO. 56 # scheduledJobIds: Provide a list of scheduled job IDs to get 57 # jobs associated with the scheduled jobs 58 # orderBy: Provide sort information. The default is to sort by 59 # createdDateTime descending. 60 # dateTimeFilter: Filter by date/time field. If a filter is not 61 # provided, a default of 62 # `createdDateTime` between now and 1 day ago will be applied. 63 # applicationIds: Provide list of application IDs to filter jobs. 64 # Defaults to the user's own application. 65 ( 66 : ID, 67 : [JobStatusFilter!], 68 : Int, 69 : Int, 70 : ID, 71 : ID, 72 : [ID!], 73 : [JobSortField!], 74 : [JobDateTimeFilter!], 75 : [ID] 76 ): JobList! 77 78 # Arguments 79 # status: Specify a list of job status strings to filter by 80 # status 81 # offset: Provide an offset to skip to a certain element in the 82 # result, for paging. 83 # limit: Maximum number of results to retrieve in this query 84 # id: Specify an ID to retrieve a single specific task 85 # dateTimeFilter: If a filter is not provided, a default of 86 # `createdDateTime` between 87 # now and 1 day ago will be applied. 88 ( 89 : [TaskStatus!], 90 : Int, 91 : Int, 92 : ID, 93 : [TaskDateTimeFilter!] 94 ): TaskList! 95 96 # Base url controller 97 : String 98 99 # Retrieve current subscriptions for events on this cluster. 100 : ClusterSubscriptionList! 101 102 # Retrieve tags for this cluster 103 : [String!] 104 105 # Retrieve the cluster's current status 106 : ClusterStatus! 107 108 # Cluster configuration overrides 109 : JSONData 110 111 # State information about the cluster, conforming to a stable schema. 112 : JSONData 113 114 # Date and time at which the state was last updated the system. 115 : DateTime 116 117 # media storage option 118 : MediaStorageOption! 119 120 # media storage path -- applies to edge only 121 : String 122 123 # ID of the management node. Applies to portable/edge clusters only. 124 : ID 125 126 # Optionally, specify a time at which the edge cluster should 127 # be restarted daily. Applies only to edge clusters. 128 : Time 129 130 # Retrieve the cluster's service token 131 : String 132 133 # Cluster deployment process status 134 : ClusterStatus 135 136 # Cluster is a group or not 137 : Boolean 138 139 # The GroupId that includes this cluster 140 : ID 141 142 # Retrieve clusters in group 143 # 144 # Arguments 145 # offset: Provide an offset to skip to a certain element in the 146 # result, for paging. 147 # limit: Maximum number of results to retrieve in this query 148 (: Int, : Int): ClusterList! 149 150 # ID for the core that the cluster is pulling jobs from 151 : String 152 153 }