-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
5584 lines (4260 loc) · 128 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
The @defer directive may be specified on a fragment spread to imply de-prioritization, that causes the fragment to be omitted in the initial response, and delivered as a subsequent response afterward. A query with @defer directive will cause the request to potentially return multiple responses, where non-deferred data is delivered in the initial response and data deferred delivered in a subsequent response. @include and @skip take precedence over @defer.
"""
directive @defer(if: Boolean = true, label: String) on FRAGMENT_SPREAD | INLINE_FRAGMENT
"""
The `@oneOf` _built-in directive_ is used within the type system definition language to indicate an Input Object is a OneOf Input Object.
"""
directive @oneOf on INPUT_OBJECT
"""Interface for activity log entries."""
interface ActivityLogEntry {
"""
The identity of the actor who performed the action. The value is either the name of a service account, or the email address of a user.
"""
actor: String!
"""Creation time of the entry."""
createdAt: Time!
"""The environment name that the entry belongs to."""
environmentName: String
"""ID of the entry."""
id: ID!
"""Message that summarizes the entry."""
message: String!
"""Name of the resource that was affected by the action."""
resourceName: String!
"""Type of the resource that was affected by the action."""
resourceType: ActivityLogEntryResourceType!
"""The team slug that the entry belongs to."""
teamSlug: Slug
}
"""Activity log connection."""
type ActivityLogEntryConnection {
"""List of edges."""
edges: [ActivityLogEntryEdge!]!
"""List of nodes."""
nodes: [ActivityLogEntry!]!
"""Pagination information."""
pageInfo: PageInfo!
}
"""Activity log edge."""
type ActivityLogEntryEdge {
"""Cursor for this edge that can be used for pagination."""
cursor: Cursor!
"""The log entry."""
node: ActivityLogEntry!
}
"""The type of the resource that was affected by the activity."""
enum ActivityLogEntryResourceType {
"""
All activity log entries related to applications will use this resource type.
"""
APP
"""
All activity log entries related to deploy keys will use this resource type.
"""
DEPLOY_KEY
"""All activity log entries related to jobs will use this resource type."""
JOB
"""
All activity log entries related to reconcilers will use this resource type.
"""
RECONCILER
"""
All activity log entries related to repositories will use this resource type.
"""
REPOSITORY
"""
All activity log entries related to secrets will use this resource type.
"""
SECRET
"""All activity log entries related to teams will use this resource type."""
TEAM
"""Unknown type."""
UNKNOWN
"""
All activity log entries related to unleash will use this resource type.
"""
UNLEASH
"""
All activity log entries related to vulnerabilities will use this resource type.
"""
VULNERABILITY
}
input AddRepositoryToTeamInput {
"""Name of the repository, with the org prefix, for instance 'org/repo'."""
repositoryName: String!
"""Slug of the team to add the repository to."""
teamSlug: Slug!
}
type AddRepositoryToTeamPayload {
"""Repository that was added to the team."""
repository: Repository
}
input AddSecretValueInput {
"""The environment the secret exists in."""
environment: String!
"""The name of the secret."""
name: String!
"""The team that owns the secret."""
team: Slug!
"""The secret value to set."""
value: SecretValueInput!
}
type AddSecretValuePayload {
"""The updated secret."""
secret: Secret
}
input AddTeamMemberInput {
"""The role that the user will have in the team."""
role: TeamMemberRole!
"""Slug of the team that should receive a new member."""
teamSlug: Slug!
"""The email address of the user to add to the team."""
userEmail: String!
}
type AddTeamMemberPayload {
"""The added team member."""
member: TeamMember
}
input AllowTeamAccessToUnleashInput {
allowedTeamSlug: Slug!
teamSlug: Slug!
}
type AllowTeamAccessToUnleashPayload {
unleash: UnleashInstance
}
"""
An application lets you run one or more instances of a container image on the [NAIS platform](https://nais.io/).
Learn more about how to create and configure your applications in the [NAIS documentation](https://docs.nais.io/workloads/application/).
"""
type Application implements Node & Workload {
"""List of authentication and authorization for the application."""
authIntegrations: [ApplicationAuthIntegrations!]!
"""
BigQuery datasets referenced by the application. This does not currently support pagination, but will return all available datasets.
"""
bigQueryDatasets(
"""Ordering options for items returned from the connection."""
orderBy: BigQueryDatasetOrder
): BigQueryDatasetConnection!
"""
Google Cloud Storage referenced by the application. This does not currently support pagination, but will return all available buckets.
"""
buckets(
"""Ordering options for items returned from the connection."""
orderBy: BucketOrder
): BucketConnection!
"""The cost for the application."""
cost: WorkloadCost!
"""List of deployments for the application."""
deployments(
"""Get items after this cursor."""
after: Cursor
"""Get items before this cursor."""
before: Cursor
"""
Get the first n items in the connection. This can be used in combination with the after parameter.
"""
first: Int
"""
Get the last n items in the connection. This can be used in combination with the before parameter.
"""
last: Int
): DeploymentConnection!
"""The environment the application is deployed in."""
environment: TeamEnvironment!
"""The globally unique ID of the application."""
id: ID!
"""The container image of the application."""
image: ContainerImage!
"""List of ingresses for the application."""
ingresses: [Ingress!]!
"""The application instances."""
instances(
"""Get items after this cursor."""
after: Cursor
"""Get items before this cursor."""
before: Cursor
"""
Get the first n items in the connection. This can be used in combination with the after parameter.
"""
first: Int
"""
Get the last n items in the connection. This can be used in combination with the before parameter.
"""
last: Int
): ApplicationInstanceConnection!
"""
Kafka topics the application has access to. This does not currently support pagination, but will return all available Kafka topics.
"""
kafkaTopicAcls(
"""Ordering options for items returned from the connection."""
orderBy: KafkaTopicAclOrder
): KafkaTopicAclConnection!
"""The application manifest."""
manifest: ApplicationManifest!
"""The name of the application."""
name: String!
"""Network policies for the application."""
networkPolicy: NetworkPolicy!
"""OpenSearch instance referenced by the workload."""
openSearch: OpenSearch
"""
Redis instances referenced by the application. This does not currently support pagination, but will return all available Redis instances.
"""
redisInstances(
"""Ordering options for items returned from the connection."""
orderBy: RedisInstanceOrder
): RedisInstanceConnection! @deprecated(reason: "We are switching to Valkey")
"""Resources for the application."""
resources: ApplicationResources!
"""Secrets used by the application."""
secrets(
"""Get items after this cursor."""
after: Cursor
"""Get items before this cursor."""
before: Cursor
"""
Get the first n items in the connection. This can be used in combination with the after parameter.
"""
first: Int
"""
Get the last n items in the connection. This can be used in combination with the before parameter.
"""
last: Int
): SecretConnection!
"""
SQL instances referenced by the application. This does not currently support pagination, but will return all available SQL instances.
"""
sqlInstances(
"""Ordering options for items returned from the connection."""
orderBy: SqlInstanceOrder
): SqlInstanceConnection!
"""Status of the application"""
status: WorkloadStatus!
"""The team that owns the application."""
team: Team!
utilization: WorkloadUtilization!
"""
Valkey instances referenced by the application. This does not currently support pagination, but will return all available Valkey instances.
"""
valkeyInstances(
"""Ordering options for items returned from the connection."""
orderBy: ValkeyInstanceOrder
): ValkeyInstanceConnection!
}
"""Authentication integrations for the application."""
union ApplicationAuthIntegrations = EntraIDAuthIntegration | IDPortenAuthIntegration | MaskinportenAuthIntegration | TokenXAuthIntegration
"""Application connection."""
type ApplicationConnection {
"""List of edges."""
edges: [ApplicationEdge!]!
"""List of nodes."""
nodes: [Application!]!
"""Pagination information."""
pageInfo: PageInfo!
}
type ApplicationDeletedActivityLogEntry implements ActivityLogEntry & Node {
"""
The identity of the actor who performed the action. The value is either the name of a service account, or the email address of a user.
"""
actor: String!
"""Creation time of the entry."""
createdAt: Time!
"""The environment name that the entry belongs to."""
environmentName: String
"""ID of the entry."""
id: ID!
"""Message that summarizes the entry."""
message: String!
"""Name of the resource that was affected by the action."""
resourceName: String!
"""Type of the resource that was affected by the action."""
resourceType: ActivityLogEntryResourceType!
"""The team slug that the entry belongs to."""
teamSlug: Slug!
}
"""Application edge."""
type ApplicationEdge {
"""Cursor for this edge that can be used for pagination."""
cursor: Cursor!
"""The application."""
node: Application!
}
type ApplicationInstance implements Node {
created: Time!
id: ID!
image: ContainerImage!
name: String!
restarts: Int!
status: ApplicationInstanceStatus!
}
type ApplicationInstanceConnection {
"""List of edges."""
edges: [ApplicationInstanceEdge!]!
"""List of nodes."""
nodes: [ApplicationInstance!]!
"""Pagination information."""
pageInfo: PageInfo!
}
type ApplicationInstanceEdge {
"""Cursor for this edge that can be used for pagination."""
cursor: Cursor!
"""The instance."""
node: ApplicationInstance!
}
enum ApplicationInstanceState {
FAILING
RUNNING
UNKNOWN
}
type ApplicationInstanceStatus {
message: String!
state: ApplicationInstanceState!
}
"""The manifest that describes the application."""
type ApplicationManifest implements WorkloadManifest {
"""The manifest content, serialized as a YAML document."""
content: String!
}
"""Ordering options when fetching applications."""
input ApplicationOrder {
"""The direction to order items by."""
direction: OrderDirection!
"""The field to order items by."""
field: ApplicationOrderField!
}
"""Fields to order applications by."""
enum ApplicationOrderField {
"""Order applications by the deployment time."""
DEPLOYMENT_TIME
"""Order applications by the name of the environment."""
ENVIRONMENT
"""Order applications by name."""
NAME
"""Order applications by status."""
STATUS
}
type ApplicationResources implements WorkloadResources {
"""Instances using resources above this threshold will be killed."""
limits: WorkloadResourceQuantity!
"""How many resources are allocated to each instance."""
requests: WorkloadResourceQuantity!
"""Scaling strategies for the application."""
scaling: ApplicationScaling!
}
type ApplicationRestartedActivityLogEntry implements ActivityLogEntry & Node {
"""
The identity of the actor who performed the action. The value is either the name of a service account, or the email address of a user.
"""
actor: String!
"""Creation time of the entry."""
createdAt: Time!
"""The environment name that the entry belongs to."""
environmentName: String
"""ID of the entry."""
id: ID!
"""Message that summarizes the entry."""
message: String!
"""Name of the resource that was affected by the action."""
resourceName: String!
"""Type of the resource that was affected by the action."""
resourceType: ActivityLogEntryResourceType!
"""The team slug that the entry belongs to."""
teamSlug: Slug!
}
"""The scaling configuration of an application."""
type ApplicationScaling {
"""The maximum number of application instances."""
maxInstances: Int!
"""The minimum number of application instances."""
minInstances: Int!
"""Scaling strategies for the application."""
strategies: [ScalingStrategy!]!
}
"""
Interface for authentication and authorization integrations.
Read more about this topic in the [NAIS documentation](https://docs.nais.io/auth/).
"""
interface AuthIntegration {
"""The name of the integration."""
name: String!
}
"""Authenticated user type."""
union AuthenticatedUser = ServiceAccount | User
type BigQueryDataset implements Node & Persistence {
access(after: Cursor, before: Cursor, first: Int, last: Int, orderBy: BigQueryDatasetAccessOrder): BigQueryDatasetAccessConnection!
cascadingDelete: Boolean!
cost: BigQueryDatasetCost!
description: String
environment: TeamEnvironment!
id: ID!
name: String!
status: BigQueryDatasetStatus!
team: Team!
workload: Workload
}
type BigQueryDatasetAccess {
email: String!
role: String!
}
type BigQueryDatasetAccessConnection {
edges: [BigQueryDatasetAccessEdge!]!
nodes: [BigQueryDatasetAccess!]!
pageInfo: PageInfo!
}
type BigQueryDatasetAccessEdge {
cursor: Cursor!
node: BigQueryDatasetAccess!
}
input BigQueryDatasetAccessOrder {
direction: OrderDirection!
field: BigQueryDatasetAccessOrderField!
}
enum BigQueryDatasetAccessOrderField {
EMAIL
ROLE
}
type BigQueryDatasetConnection {
edges: [BigQueryDatasetEdge!]!
nodes: [BigQueryDataset!]!
pageInfo: PageInfo!
}
type BigQueryDatasetCost {
sum: Float!
}
type BigQueryDatasetEdge {
cursor: Cursor!
node: BigQueryDataset!
}
input BigQueryDatasetOrder {
direction: OrderDirection!
field: BigQueryDatasetOrderField!
}
enum BigQueryDatasetOrderField {
ENVIRONMENT
NAME
}
type BigQueryDatasetStatus {
creationTime: Time!
lastModifiedTime: Time
}
type Bucket implements Node & Persistence {
cascadingDelete: Boolean!
environment: TeamEnvironment!
id: ID!
name: String!
publicAccessPrevention: String!
status: BucketStatus!
team: Team!
uniformBucketLevelAccess: Boolean!
workload: Workload
}
type BucketConnection {
edges: [BucketEdge!]!
nodes: [Bucket!]!
pageInfo: PageInfo!
}
type BucketEdge {
cursor: Cursor!
node: Bucket!
}
type BucketError {
details: String
message: String!
}
input BucketOrder {
direction: OrderDirection!
field: BucketOrderField!
}
enum BucketOrderField {
ENVIRONMENT
NAME
}
enum BucketState {
ERROR
HEALTHY
UNKNOWN
}
type BucketStatus {
errors: [BucketError!]!
state: BucketState!
}
"""
A scaling strategy based on CPU usage
Read more: https://docs.nais.io/workloads/application/reference/automatic-scaling/#cpu-based-scaling
"""
type CPUScalingStrategy {
"""The threshold that must be met for the scaling to trigger."""
threshold: Int!
}
input ChangeDeploymentKeyInput {
"""The name of the team to update the deploy key for."""
teamSlug: Slug!
}
type ChangeDeploymentKeyPayload {
"""The updated deploy key."""
deploymentKey: DeploymentKey
}
input ConfigureReconcilerInput {
"""List of reconciler config inputs."""
config: [ReconcilerConfigInput!]!
"""The name of the reconciler to configure."""
name: String!
}
input ConfirmTeamDeletionInput {
"""Deletion key, acquired using the requestTeamDeletion mutation."""
key: String!
"""Slug of the team to confirm deletion for."""
slug: Slug!
}
type ConfirmTeamDeletionPayload {
"""Whether or not the asynchronous deletion process was started."""
deletionStarted: Boolean
}
"""Container image."""
type ContainerImage implements Node {
"""
Whether the image has a software bill of materials (SBOM) attached to it.
"""
hasSBOM: Boolean!
"""The globally unique ID of the container image node."""
id: ID!
"""Name of the container image."""
name: String!
"""Tag of the container image."""
tag: String!
"""Get the vulnerabilities of the image."""
vulnerabilities(
"""Get items after this cursor."""
after: Cursor
"""Get items before this cursor."""
before: Cursor
"""
Get the first n items in the connection. This can be used in combination with the after parameter.
"""
first: Int
"""
Get the last n items in the connection. This can be used in combination with the before parameter.
"""
last: Int
"""Ordering options for items returned from the connection."""
orderBy: ImageVulnerabilityOrder
): ImageVulnerabilityConnection!
"""Get the summary of the vulnerabilities of the image."""
vulnerabilitySummary: ImageVulnerabilitySummary
"""Workloads using this container image."""
workloadReferences(
"""Get items after this cursor."""
after: Cursor
"""Get items before this cursor."""
before: Cursor
"""
Get the first n items in the connection. This can be used in combination with the after parameter.
"""
first: Int
"""
Get the last n items in the connection. This can be used in combination with the before parameter.
"""
last: Int
): ContainerImageWorkloadReferenceConnection!
}
type ContainerImageWorkloadReference {
"""The workload using the container image."""
workload: Workload!
}
type ContainerImageWorkloadReferenceConnection {
"""List of edges."""
edges: [ContainerImageWorkloadReferenceEdge!]!
"""List of nodes."""
nodes: [ContainerImageWorkloadReference!]!
"""Information to aid in pagination."""
pageInfo: PageInfo!
}
type ContainerImageWorkloadReferenceEdge {
"""A cursor for use in pagination."""
cursor: Cursor!
"""The workload reference."""
node: ContainerImageWorkloadReference!
}
input CreateSecretInput {
"""The environment the secret exists in."""
environment: String!
"""The name of the secret."""
name: String!
"""The team that owns the secret."""
team: Slug!
}
type CreateSecretPayload {
"""The created secret."""
secret: Secret
}
input CreateTeamInput {
"""
The purpose / description of the team.
What is the team for? What is the team working on? This value is meant for human consumption, and should be enough
to give a newcomer an idea of what the team is about.
"""
purpose: String!
"""
The main Slack channel for the team.
Where does the team communicate? This value is used to link to the team's main Slack channel.
"""
slackChannel: String!
"""
Unique team slug.
After creation, this value can not be changed. Also, after a potential deletion of the team, the slug can not be
reused, so please choose wisely.
"""
slug: Slug!
}
type CreateTeamPayload {
"""The newly created team."""
team: Team
}
input CreateUnleashForTeamInput {
teamSlug: Slug!
}
type CreateUnleashForTeamPayload {
unleash: UnleashInstance
}
"""
A cursor for use in pagination
Cursors are opaque strings that are returned by the server for paginated results, and used when performing backwards / forwards pagination.
"""
scalar Cursor
"""Date type in YYYY-MM-DD format."""
scalar Date
input DeleteApplicationInput {
"""Name of the environment where the application runs."""
environmentName: String!
"""Name of the application."""
name: String!
"""Slug of the team that owns the application."""
teamSlug: Slug!
}
type DeleteApplicationPayload {
"""Whether or not the application was deleted."""
success: Boolean
"""The team that owned the deleted application."""
team: Team
}
input DeleteJobInput {
"""Name of the environment where the job runs."""
environmentName: String!
"""Name of the job."""
name: String!
"""Slug of the team that owns the job."""
teamSlug: Slug!
}
type DeleteJobPayload {
"""Whether or not the application was deleted."""
success: Boolean
"""The team that owned the deleted job."""
team: Team
}
input DeleteSecretInput {
"""The environment the secret exists in."""
environment: String!
"""The name of the secret."""
name: String!
"""The team that owns the secret."""
team: Slug!
}
type DeleteSecretPayload {
"""The deleted secret."""
secretDeleted: Boolean
}
"""Description of a deployment."""
type Deployment implements Node {
"""The git commit SHA that was deployed."""
commitSha: String
"""Creation timestamp of the deployment."""
createdAt: Time!
"""Username of the actor who initiated the deployment."""
deployerUsername: String
"""Name of the environment that the deployment belongs to."""
environmentName: String!
"""ID of the deployment."""
id: ID!
"""The repository that triggered the deployment."""
repository: String
"""Resources that were deployed."""
resources(
"""Get items after this cursor."""
after: Cursor
"""Get items before this cursor."""
before: Cursor
"""
Get the first n items in the connection. This can be used in combination with the after parameter.
"""
first: Int
"""
Get the last n items in the connection. This can be used in combination with the before parameter.
"""
last: Int
): DeploymentResourceConnection!
"""Statuses of the deployment."""
statuses(
"""Get items after this cursor."""
after: Cursor
"""Get items before this cursor."""
before: Cursor
"""
Get the first n items in the connection. This can be used in combination with the after parameter.
"""
first: Int
"""
Get the last n items in the connection. This can be used in combination with the before parameter.
"""
last: Int
): DeploymentStatusConnection!
"""Team slug that the deployment belongs to."""
teamSlug: Slug!
"""The URL of the workflow that triggered the deployment."""
triggerUrl: String
}
type DeploymentConnection {
"""List of edges."""
edges: [DeploymentEdge!]!
"""List of nodes."""
nodes: [Deployment!]!
"""Pagination information."""
pageInfo: PageInfo!
}
type DeploymentEdge {
"""Cursor for this edge that can be used for pagination."""
cursor: Cursor!
"""The deployment."""
node: Deployment!
}
"""Deployment key type."""
type DeploymentKey implements Node {
"""The date the deployment key was created."""
created: Time!
"""The date the deployment key expires."""
expires: Time!
"""The unique identifier of the deployment key."""
id: ID!
"""The actual key."""
key: String!
}
"""Resource connected to a deployment."""
type DeploymentResource implements Node {
"""Globally unique ID of the deployment resource."""
id: ID!
"""Deployment resource kind."""
kind: String!
"""The name of the resource."""
name: String!
}
type DeploymentResourceConnection {
"""List of edges."""
edges: [DeploymentResourceEdge!]!
"""List of nodes."""
nodes: [DeploymentResource!]!
"""Pagination information."""
pageInfo: PageInfo!
}
type DeploymentResourceEdge {
"""Cursor for this edge that can be used for pagination."""
cursor: Cursor!
"""The deployment resource."""
node: DeploymentResource!
}
"""Resource connected to a deployment."""
type DeploymentStatus implements Node {
"""Creation timestamp of the deployment status."""
createdAt: Time!
"""Globally unique ID of the deployment resource."""
id: ID!