fly_io 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +15 -0
- data/CONTRIBUTING.md +14 -0
- data/LICENSE +21 -0
- data/README.md +239 -0
- data/Rakefile +30 -0
- data/contracts/additional_rest/network_policies.json +94 -0
- data/contracts/additional_rest/prometheus.json +103 -0
- data/contracts/graphql/fly_go_operations.json +948 -0
- data/contracts/graphql/flyctl_named_operations.graphql +316 -0
- data/contracts/graphql/flyctl_operations.json +336 -0
- data/contracts/graphql/official_examples.json +75 -0
- data/contracts/graphql/schema.graphql +10995 -0
- data/contracts/graphql/source.json +29 -0
- data/contracts/machines/openapi.headers +9 -0
- data/contracts/machines/openapi.json +1 -0
- data/contracts/machines/source.json +20 -0
- data/contracts/public_surface_inventory.json +164 -0
- data/contracts/research_metadata.json +17 -0
- data/contracts/sources/metrics.html.md +474 -0
- data/contracts/sources/network-policies.html.markerb +142 -0
- data/docs/API.md +149 -0
- data/docs/SURFACES.md +60 -0
- data/lib/fly_io/client.rb +52 -0
- data/lib/fly_io/configuration.rb +115 -0
- data/lib/fly_io/errors.rb +45 -0
- data/lib/fly_io/generated/additional_operations.json +123 -0
- data/lib/fly_io/generated/graphql_operations.json +1658 -0
- data/lib/fly_io/generated/operations.json +6130 -0
- data/lib/fly_io/generated/prometheus_operations.json +503 -0
- data/lib/fly_io/generated/schemas.json +4237 -0
- data/lib/fly_io/graphql_client.rb +103 -0
- data/lib/fly_io/model.rb +65 -0
- data/lib/fly_io/operation_registry.rb +79 -0
- data/lib/fly_io/redactor.rb +34 -0
- data/lib/fly_io/resources/base.rb +68 -0
- data/lib/fly_io/resources.rb +30 -0
- data/lib/fly_io/response.rb +45 -0
- data/lib/fly_io/schema_registry.rb +89 -0
- data/lib/fly_io/schema_validator.rb +56 -0
- data/lib/fly_io/transport.rb +282 -0
- data/lib/fly_io/version.rb +5 -0
- data/lib/fly_io.rb +23 -0
- data/script/check_api_coverage +60 -0
- data/script/fetch_openapi +18 -0
- data/script/generate_api +302 -0
- metadata +197 -0
|
@@ -0,0 +1,948 @@
|
|
|
1
|
+
{
|
|
2
|
+
"retrieved_at": "2026-08-26",
|
|
3
|
+
"repository": "https://github.com/superfly/fly-go",
|
|
4
|
+
"version": "v0.9.8",
|
|
5
|
+
"revision": "858ec691152ab3faa0b0a0438726bda8144d8734",
|
|
6
|
+
"document_count": 85,
|
|
7
|
+
"counts_by_type": {
|
|
8
|
+
"query": 44,
|
|
9
|
+
"mutation": 41
|
|
10
|
+
},
|
|
11
|
+
"documents": [
|
|
12
|
+
{
|
|
13
|
+
"operation_type": "query",
|
|
14
|
+
"operation_name": null,
|
|
15
|
+
"root_fields": [
|
|
16
|
+
"apps"
|
|
17
|
+
],
|
|
18
|
+
"adapter": "getAppsPage",
|
|
19
|
+
"document": "query($org: ID, $role: String, $after: String) {\n\t\t\tapps(type: \"container\", first: 200, after: $after, organizationId: $org, role: $role) {\n\t\t\t\tpageInfo {\n\t\t\t\t\thasNextPage\n\t\t\t\t\tendCursor\n\t\t\t\t}\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tname\n\t\t\t\t\tdeployed\n\t\t\t\t\thostname\n\t\t\t\t\tplatformVersion\n\t\t\t\t\torganization {\n\t\t\t\t\t\tslug\n\t\t\t\t\t\tname\n\t\t\t\t\t}\n\t\t\t\t\tcurrentRelease {\n\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\tstatus\n\t\t\t\t\t}\n\t\t\t\t\tstatus\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
20
|
+
"source_path": "resource_apps.go",
|
|
21
|
+
"source_line": 48
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"operation_type": "query",
|
|
25
|
+
"operation_name": null,
|
|
26
|
+
"root_fields": [
|
|
27
|
+
"app"
|
|
28
|
+
],
|
|
29
|
+
"adapter": "GetApp",
|
|
30
|
+
"document": "query ($appName: String!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\tid\n\t\t\t\tinternalNumericId\n\t\t\t\tname\n\t\t\t\thostname\n\t\t\t\tdeployed\n\t\t\t\tstatus\n\t\t\t\tversion\n\t\t\t\tappUrl\n\t\t\t\tplatformVersion\n\t\t\t\tcurrentRelease {\n\t\t\t\t\tevaluationId\n\t\t\t\t\tstatus\n\t\t\t\t\tinProgress\n\t\t\t\t\tversion\n\t\t\t\t}\n\t\t\t\tconfig {\n\t\t\t\t\tdefinition\n\t\t\t\t}\n\t\t\t\torganization {\n\t\t\t\t\tid\n\t\t\t\t\tslug\n\t\t\t\t\tpaidPlan\n\t\t\t\t}\n\t\t\t\tservices {\n\t\t\t\t\tdescription\n\t\t\t\t\tprotocol\n\t\t\t\t\tinternalPort\n\t\t\t\t\tports {\n\t\t\t\t\t\tport\n\t\t\t\t\t\thandlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tipAddresses {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t\taddress\n\t\t\t\t\t\ttype\n\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tsharedIpAddress\n\t\t\t\tcnameTarget\n\t\t\t\timageDetails {\n\t\t\t\t\tregistry\n\t\t\t\t\trepository\n\t\t\t\t\ttag\n\t\t\t\t\tdigest\n\t\t\t\t\tversion\n\t\t\t\t}\n\t\t\t\tmachines{\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tname\n\t\t\t\t\t\tconfig\n\t\t\t\t\t\tstate\n\t\t\t\t\t\tregion\n\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\tapp {\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t}\n\t\t\t\t\t\tips {\n\t\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\t\tfamily\n\t\t\t\t\t\t\t\tkind\n\t\t\t\t\t\t\t\tip\n\t\t\t\t\t\t\t\tmaskSize\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\thost {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpostgresAppRole: role {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
31
|
+
"source_path": "resource_apps.go",
|
|
32
|
+
"source_line": 96
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"operation_type": "query",
|
|
36
|
+
"operation_name": null,
|
|
37
|
+
"root_fields": [
|
|
38
|
+
"app"
|
|
39
|
+
],
|
|
40
|
+
"adapter": "GetAppRemoteBuilder",
|
|
41
|
+
"document": "query ($appName: String!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\tid\n\t\t\t\tname\n\t\t\t\thostname\n\t\t\t\tdeployed\n\t\t\t\tstatus\n\t\t\t\tversion\n\t\t\t\tappUrl\n\t\t\t\tplatformVersion\n\t\t\t\tcurrentRelease {\n\t\t\t\t\tevaluationId\n\t\t\t\t\tstatus\n\t\t\t\t\tinProgress\n\t\t\t\t\tversion\n\t\t\t\t}\n\t\t\t\tconfig {\n\t\t\t\t\tdefinition\n\t\t\t\t}\n\t\t\t\torganization {\n\t\t\t\t\tid\n\t\t\t\t\tslug\n\t\t\t\t\tpaidPlan\n\t\t\t\t\tremoteBuilderApp {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tname\n\t\t\t\t\t\thostname\n\t\t\t\t\t\tdeployed\n\t\t\t\t\t\tstatus\n\t\t\t\t\t\tversion\n\t\t\t\t\t\tappUrl\n\t\t\t\t\t\tplatformVersion\n\t\t\t\t\t\tcurrentRelease {\n\t\t\t\t\t\t\tevaluationId\n\t\t\t\t\t\t\tstatus\n\t\t\t\t\t\t\tinProgress\n\t\t\t\t\t\t\tversion\n\t\t\t\t\t\t}\n\t\t\t\t\t\tipAddresses {\n\t\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\taddress\n\t\t\t\t\t\t\t\ttype\n\t\t\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\torganization {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tslug\n\t\t\t\t\t\t\tpaidPlan\n\t\t\t\t\t\t}\n\t\t\t\t\t\timageDetails {\n\t\t\t\t\t\t\tregistry\n\t\t\t\t\t\t\trepository\n\t\t\t\t\t\t\ttag\n\t\t\t\t\t\t\tdigest\n\t\t\t\t\t\t\tversion\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmachines{\n\t\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\tconfig\n\t\t\t\t\t\t\t\tstate\n\t\t\t\t\t\t\t\tregion\n\t\t\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\t\t\tapp {\n\t\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tips {\n\t\t\t\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\t\t\t\tfamily\n\t\t\t\t\t\t\t\t\t\tkind\n\t\t\t\t\t\t\t\t\t\tip\n\t\t\t\t\t\t\t\t\t\tmaskSize\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\thost {\n\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tpostgresAppRole: role {\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t\tservices {\n\t\t\t\t\tdescription\n\t\t\t\t\tprotocol\n\t\t\t\t\tinternalPort\n\t\t\t\t\tports {\n\t\t\t\t\t\tport\n\t\t\t\t\t\thandlers\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tipAddresses {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t\taddress\n\t\t\t\t\t\ttype\n\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\timageDetails {\n\t\t\t\t\tregistry\n\t\t\t\t\trepository\n\t\t\t\t\ttag\n\t\t\t\t\tdigest\n\t\t\t\t\tversion\n\t\t\t\t}\n\t\t\t\tmachines{\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tname\n\t\t\t\t\t\tconfig\n\t\t\t\t\t\tstate\n\t\t\t\t\t\tregion\n\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\tapp {\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t}\n\t\t\t\t\t\tips {\n\t\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\t\tfamily\n\t\t\t\t\t\t\t\tkind\n\t\t\t\t\t\t\t\tip\n\t\t\t\t\t\t\t\tmaskSize\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\thost {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpostgresAppRole: role {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
42
|
+
"source_path": "resource_apps.go",
|
|
43
|
+
"source_line": 192
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"operation_type": "query",
|
|
47
|
+
"operation_name": null,
|
|
48
|
+
"root_fields": [
|
|
49
|
+
"app"
|
|
50
|
+
],
|
|
51
|
+
"adapter": "GetAppNetwork",
|
|
52
|
+
"document": "query ($appName: String!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\tnetwork\n\t\t\t}\n\t\t}",
|
|
53
|
+
"source_path": "resource_apps.go",
|
|
54
|
+
"source_line": 368
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"operation_type": "query",
|
|
58
|
+
"operation_name": null,
|
|
59
|
+
"root_fields": [
|
|
60
|
+
"app"
|
|
61
|
+
],
|
|
62
|
+
"adapter": "GetAppCNAMETarget",
|
|
63
|
+
"document": "query ($appName: String!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\tcnameTarget\n\t\t\t}\n\t\t}",
|
|
64
|
+
"source_path": "resource_apps.go",
|
|
65
|
+
"source_line": 389
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"operation_type": "query",
|
|
69
|
+
"operation_name": null,
|
|
70
|
+
"root_fields": [
|
|
71
|
+
"app"
|
|
72
|
+
],
|
|
73
|
+
"adapter": "GetAppCompact",
|
|
74
|
+
"document": "query ($appName: String!) {\n\t\t\tappcompact:app(name: $appName) {\n\t\t\t\tid\n\t\t\t\tinternalNumericId\n\t\t\t\tname\n\t\t\t\thostname\n\t\t\t\tcnameTarget\n\t\t\t\tdeployed\n\t\t\t\tnetwork\n\t\t\t\tstatus\n\t\t\t\tappUrl\n\t\t\t\tplatformVersion\n\t\t\t\torganization {\n\t\t\t\t\tid\n\t\t\t\t\tinternalNumericId\n\t\t\t\t\tslug\n\t\t\t\t\tpaidPlan\n\t\t\t\t}\n\t\t\t\tpostgresAppRole: role {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
75
|
+
"source_path": "resource_apps.go",
|
|
76
|
+
"source_line": 410
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"operation_type": "query",
|
|
80
|
+
"operation_name": null,
|
|
81
|
+
"root_fields": [
|
|
82
|
+
"app"
|
|
83
|
+
],
|
|
84
|
+
"adapter": "GetAppBasic",
|
|
85
|
+
"document": "query ($appName: String!) {\n\t\t\tappbasic:app(name: $appName) {\n\t\t\t\tid\n\t\t\t\tname\n\t\t\t\tplatformVersion\n\t\t\t\torganization {\n\t\t\t\t\tid\n\t\t\t\t\tinternalNumericId\n\t\t\t\t\tslug\n\t\t\t\t\trawSlug\n\t\t\t\t\tpaidPlan\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
86
|
+
"source_path": "resource_apps.go",
|
|
87
|
+
"source_line": 449
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"operation_type": "mutation",
|
|
91
|
+
"operation_name": null,
|
|
92
|
+
"root_fields": [
|
|
93
|
+
"createApp"
|
|
94
|
+
],
|
|
95
|
+
"adapter": "CreateApp",
|
|
96
|
+
"document": "mutation($input: CreateAppInput!) {\n\t\t\tcreateApp(input: $input) {\n\t\t\t\tapp {\n\t\t\t\t\tid\n\t\t\t\t\tname\n\t\t\t\t\torganization {\n\t\t\t\t\t\tslug\n\t\t\t\t\t}\n\t\t\t\t\tconfig {\n\t\t\t\t\t\tdefinition\n\t\t\t\t\t}\n\t\t\t\t\tregions {\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\tcode\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
97
|
+
"source_path": "resource_apps.go",
|
|
98
|
+
"source_line": 479
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"operation_type": "mutation",
|
|
102
|
+
"operation_name": null,
|
|
103
|
+
"root_fields": [
|
|
104
|
+
"deleteApp"
|
|
105
|
+
],
|
|
106
|
+
"adapter": "DeleteApp",
|
|
107
|
+
"document": "mutation($appId: ID!) {\n\t\t\t\tdeleteApp(appId: $appId) {\n\t\t\t\t\torganization {\n\t\t\t\t\t\tid\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}",
|
|
108
|
+
"source_path": "resource_apps.go",
|
|
109
|
+
"source_line": 514
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"operation_type": "mutation",
|
|
113
|
+
"operation_name": null,
|
|
114
|
+
"root_fields": [
|
|
115
|
+
"moveApp"
|
|
116
|
+
],
|
|
117
|
+
"adapter": "MoveApp",
|
|
118
|
+
"document": "mutation ($input: MoveAppInput!) {\n\t\t\tmoveApp(input: $input) {\n\t\t\t\tapp {\n\t\t\t\t\tid\n\t\t\t\t\tnetworkId\n\t\t\t\t\torganization {\n\t\t\t\t\t\tslug\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
119
|
+
"source_path": "resource_apps.go",
|
|
120
|
+
"source_line": 535
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"operation_type": "query",
|
|
124
|
+
"operation_name": null,
|
|
125
|
+
"root_fields": [
|
|
126
|
+
"app"
|
|
127
|
+
],
|
|
128
|
+
"adapter": "ResolveImageForApp",
|
|
129
|
+
"document": "query ($appName: String!, $imageRef: String!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\tid\n\t\t\t\timage(ref: $imageRef) {\n\t\t\t\t\tid\n\t\t\t\t\tdigest\n\t\t\t\t\tref\n\t\t\t\t\tcompressedSize: compressedSizeFull\n\t\t\t\t\tmanifest\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
130
|
+
"source_path": "resource_apps.go",
|
|
131
|
+
"source_line": 563
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"operation_type": "query",
|
|
135
|
+
"operation_name": null,
|
|
136
|
+
"root_fields": [
|
|
137
|
+
"appNameAvailable"
|
|
138
|
+
],
|
|
139
|
+
"adapter": "AppNameAvailable",
|
|
140
|
+
"document": "query ($appName: String!) {\n\t\t\tappNameAvailable(name: $appName)\n\t\t}",
|
|
141
|
+
"source_path": "resource_apps.go",
|
|
142
|
+
"source_line": 592
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"operation_type": "mutation",
|
|
146
|
+
"operation_name": null,
|
|
147
|
+
"root_fields": [
|
|
148
|
+
"lockApp"
|
|
149
|
+
],
|
|
150
|
+
"adapter": "LockApp",
|
|
151
|
+
"document": "mutation($input: LockAppInput!) {\n\t\t\tlockApp(input: $input) {\n\t\t\t\tlockId\n\t\t\t\texpiration\n\t\t\t}\n\t\t}",
|
|
152
|
+
"source_path": "resource_apps.go",
|
|
153
|
+
"source_line": 612
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"operation_type": "mutation",
|
|
157
|
+
"operation_name": null,
|
|
158
|
+
"root_fields": [
|
|
159
|
+
"unlockApp"
|
|
160
|
+
],
|
|
161
|
+
"adapter": "UnlockApp",
|
|
162
|
+
"document": "mutation($input: UnlockAppInput!) {\n\t\t\tunlockApp(input: $input) {\n\t\t\t\tapp {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
163
|
+
"source_path": "resource_apps.go",
|
|
164
|
+
"source_line": 637
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"operation_type": "query",
|
|
168
|
+
"operation_name": null,
|
|
169
|
+
"root_fields": [
|
|
170
|
+
"app"
|
|
171
|
+
],
|
|
172
|
+
"adapter": "GetAppLock",
|
|
173
|
+
"document": "query($name: String!) {\n\t\tapp(name: $name) {\n\t\t currentLock {\n\t\t\tlockId\n\t\t\texpiration\n\t\t }\n\t\t}\n\t }",
|
|
174
|
+
"source_path": "resource_apps.go",
|
|
175
|
+
"source_line": 664
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"operation_type": "mutation",
|
|
179
|
+
"operation_name": "CreateBuild",
|
|
180
|
+
"root_fields": [
|
|
181
|
+
"createBuild"
|
|
182
|
+
],
|
|
183
|
+
"adapter": "CreateBuild",
|
|
184
|
+
"document": "# @genqlient\n\tmutation CreateBuild($input:CreateBuildInput!) {\n\t\tcreateBuild(input:$input) {\n\t\t\tid\n\t\t\tstatus\n\t\t}\n\t}",
|
|
185
|
+
"source_path": "resource_build.go",
|
|
186
|
+
"source_line": 8
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"operation_type": "mutation",
|
|
190
|
+
"operation_name": "FinishBuild",
|
|
191
|
+
"root_fields": [
|
|
192
|
+
"finishBuild"
|
|
193
|
+
],
|
|
194
|
+
"adapter": "FinishBuild",
|
|
195
|
+
"document": "# @genqlient\n\tmutation FinishBuild($input:FinishBuildInput!) {\n\t\tfinishBuild(input:$input) {\n\t\t\tid\n\t\t\tstatus\n\t\t\twallclockTimeMs\n\t\t}\n\t}",
|
|
196
|
+
"source_path": "resource_build.go",
|
|
197
|
+
"source_line": 21
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"operation_type": "query",
|
|
201
|
+
"operation_name": null,
|
|
202
|
+
"root_fields": [
|
|
203
|
+
"app"
|
|
204
|
+
],
|
|
205
|
+
"adapter": "GetAppCertificates",
|
|
206
|
+
"document": "query($appName: String!) {\n\t\t\tappcertscompact:app(name: $appName) {\n\t\t\t\tcertificates {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\thostname\n\t\t\t\t\t\tclientStatus\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
207
|
+
"source_path": "resource_certificates.go",
|
|
208
|
+
"source_line": 6
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"operation_type": "mutation",
|
|
212
|
+
"operation_name": null,
|
|
213
|
+
"root_fields": [
|
|
214
|
+
"checkCertificate"
|
|
215
|
+
],
|
|
216
|
+
"adapter": "CheckAppCertificate",
|
|
217
|
+
"document": "mutation($input: CheckCertificateInput!) {\n\t\t\tcheckCertificate(input: $input) {\n\t\t\t\tcertificate {\n\t\t\t\t\tacmeDnsConfigured\n\t\t\t\t\tacmeAlpnConfigured\n\t\t\t\t\tconfigured\n\t\t\t\t\tcertificateAuthority\n\t\t\t\t\tcreatedAt\n\t\t\t\t\tdnsProvider\n\t\t\t\t\tdnsValidationInstructions\n\t\t\t\t\tdnsValidationHostname\n\t\t\t\t\tdnsValidationTarget\n\t\t\t\t\thostname\n\t\t\t\t\tid\n\t\t\t\t\tsource\n\t\t\t\t\tclientStatus\n\t\t\t\t\tisApex\n\t\t\t\t\tisWildcard\n\t\t\t\t\tissued {\n\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\ttype\n\t\t\t\t\t\t\texpiresAt\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tvalidationErrors {\n\t\t\t\t\t\terrorCode\n\t\t\t\t\t\tmessage\n\t\t\t\t\t\tremediation\n\t\t\t\t\t\ttimestamp\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tcheck {\n\t\t\t\t\taRecords\n\t\t\t\t \taaaaRecords\n\t\t\t\t \tcnameRecords\n\t\t\t\t \tsoa\n\t\t\t \t\tdnsProvider\n\t\t\t \t\tdnsVerificationRecord\n\t\t\t\t \tresolvedAddresses\n\t\t\t }\n\t\t\t}\n\t\t}",
|
|
218
|
+
"source_path": "resource_certificates.go",
|
|
219
|
+
"source_line": 34
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"operation_type": "mutation",
|
|
223
|
+
"operation_name": null,
|
|
224
|
+
"root_fields": [
|
|
225
|
+
"addCertificate"
|
|
226
|
+
],
|
|
227
|
+
"adapter": "AddCertificate",
|
|
228
|
+
"document": "mutation($appId: ID!, $hostname: String!) {\n\t\t\taddCertificate(appId: $appId, hostname: $hostname) {\n\t\t\t\tcertificate {\n\t\t\t\t\tacmeDnsConfigured\n\t\t\t\t\tacmeAlpnConfigured\n\t\t\t\t\tconfigured\n\t\t\t\t\tcertificateAuthority\n\t\t\t\t\tcreatedAt\n\t\t\t\t\tdnsProvider\n\t\t\t\t\tdnsValidationInstructions\n\t\t\t\t\tdnsValidationHostname\n\t\t\t\t\tdnsValidationTarget\n\t\t\t\t\thostname\n\t\t\t\t\tid\n\t\t\t\t\tsource\n\t\t\t\t\tclientStatus\n\t\t\t\t\tisApex\n\t\t\t\t\tisWildcard\n\t\t\t\t\tissued {\n\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\ttype\n\t\t\t\t\t\t\texpiresAt\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tvalidationErrors {\n\t\t\t\t\t\terrorCode\n\t\t\t\t\t\tmessage\n\t\t\t\t\t\tremediation\n\t\t\t\t\t\ttimestamp\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tcheck {\n\t\t\t\t\taRecords\n\t\t\t\t\taaaaRecords\n\t\t\t\t\tcnameRecords\n\t\t\t\t\tsoa\n\t\t\t\t\tdnsProvider\n\t\t\t\t\tdnsVerificationRecord\n\t\t\t\t \tresolvedAddresses\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
229
|
+
"source_path": "resource_certificates.go",
|
|
230
|
+
"source_line": 96
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"operation_type": "mutation",
|
|
234
|
+
"operation_name": null,
|
|
235
|
+
"root_fields": [
|
|
236
|
+
"deleteCertificate"
|
|
237
|
+
],
|
|
238
|
+
"adapter": "DeleteCertificate",
|
|
239
|
+
"document": "mutation($appId: ID!, $hostname: String!) {\n\t\t\tdeleteCertificate(appId: $appId, hostname: $hostname) {\n\t\t\t\tapp {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t\tcertificate {\n\t\t\t\t\thostname\n\t\t\t\t\tid\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
240
|
+
"source_path": "resource_certificates.go",
|
|
241
|
+
"source_line": 156
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"operation_type": "query",
|
|
245
|
+
"operation_name": null,
|
|
246
|
+
"root_fields": [
|
|
247
|
+
"canPerformBluegreenDeployment"
|
|
248
|
+
],
|
|
249
|
+
"adapter": "CanPerformBluegreenDeployment",
|
|
250
|
+
"document": "query ($appName: String!) {\n\t\t\tcanPerformBluegreenDeployment(name: $appName)\n\t\t}",
|
|
251
|
+
"source_path": "resource_deploy.go",
|
|
252
|
+
"source_line": 6
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"operation_type": "mutation",
|
|
256
|
+
"operation_name": null,
|
|
257
|
+
"root_fields": [
|
|
258
|
+
"createDoctorUrl"
|
|
259
|
+
],
|
|
260
|
+
"adapter": "CreateDoctorUrl",
|
|
261
|
+
"document": "mutation {\n\t\t\tcreateDoctorUrl {\n\t\t\t\tputUrl\n\t\t\t}\n\t\t}",
|
|
262
|
+
"source_path": "resource_doctor.go",
|
|
263
|
+
"source_line": 6
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"operation_type": "query",
|
|
267
|
+
"operation_name": null,
|
|
268
|
+
"root_fields": [
|
|
269
|
+
"latestImageTag"
|
|
270
|
+
],
|
|
271
|
+
"adapter": "GetLatestImageTag",
|
|
272
|
+
"document": "query($repository: String!, $snapshotId: ID) {\n\t\t\tlatestImageTag(repository: $repository, snapshotId: $snapshotId)\n\t\t}",
|
|
273
|
+
"source_path": "resource_images.go",
|
|
274
|
+
"source_line": 9
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"operation_type": "query",
|
|
278
|
+
"operation_name": null,
|
|
279
|
+
"root_fields": [
|
|
280
|
+
"latestImageDetails"
|
|
281
|
+
],
|
|
282
|
+
"adapter": "GetLatestImageDetails",
|
|
283
|
+
"document": "query($image: String!, $flyVersion: String) {\n\t\t\tlatestImageDetails(image: $image, flyVersion: $flyVersion) {\n\t\t\t registry\n\t\t\t repository\n\t\t\t tag\n\t\t\t version\n\t\t\t digest\n\t\t\t}\n\t\t}",
|
|
284
|
+
"source_path": "resource_images.go",
|
|
285
|
+
"source_line": 28
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"operation_type": "query",
|
|
289
|
+
"operation_name": "LatestImage",
|
|
290
|
+
"root_fields": [
|
|
291
|
+
"app"
|
|
292
|
+
],
|
|
293
|
+
"adapter": "LatestImage",
|
|
294
|
+
"document": "# @genqlient\n\t query LatestImage($appName:String!) {\n\t app(name:$appName) {\n\t currentReleaseUnprocessed {\n\t id\n\t version\n\t imageRef\n\t }\n\t }\n\t }",
|
|
295
|
+
"source_path": "resource_images.go",
|
|
296
|
+
"source_line": 54
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"operation_type": "query",
|
|
300
|
+
"operation_name": null,
|
|
301
|
+
"root_fields": [
|
|
302
|
+
"app"
|
|
303
|
+
],
|
|
304
|
+
"adapter": "GetIPAddresses",
|
|
305
|
+
"document": "query ($appName: String!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\tipAddresses {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t\taddress\n\t\t\t\t\t\ttype\n\t\t\t\t\t\tregion\n\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\tnetwork {\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\torganization {\n\t\t\t\t\t\t\t\tslug\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tserviceName\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tsharedIpAddress\n\t\t\t}\n\t\t}",
|
|
306
|
+
"source_path": "resource_ip_addresses.go",
|
|
307
|
+
"source_line": 10
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"operation_type": "mutation",
|
|
311
|
+
"operation_name": null,
|
|
312
|
+
"root_fields": [
|
|
313
|
+
"allocateIpAddress"
|
|
314
|
+
],
|
|
315
|
+
"adapter": "AllocateIPAddress",
|
|
316
|
+
"document": "mutation($input: AllocateIPAddressInput!) {\n\t\t\tallocateIpAddress(input: $input) {\n\t\t\t\tipAddress {\n\t\t\t\t\tid\n\t\t\t\t\taddress\n\t\t\t\t\ttype\n\t\t\t\t\tregion\n\t\t\t\t\tcreatedAt\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
317
|
+
"source_path": "resource_ip_addresses.go",
|
|
318
|
+
"source_line": 60
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"operation_type": "mutation",
|
|
322
|
+
"operation_name": null,
|
|
323
|
+
"root_fields": [
|
|
324
|
+
"allocateIpAddress"
|
|
325
|
+
],
|
|
326
|
+
"adapter": "AllocateSharedIPAddress",
|
|
327
|
+
"document": "mutation($input: AllocateIPAddressInput!) {\n\t\t\tallocateIpAddress(input: $input) {\n\t\t\t\tapp {\n\t\t\t\t\tsharedIpAddress\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
328
|
+
"source_path": "resource_ip_addresses.go",
|
|
329
|
+
"source_line": 97
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"operation_type": "mutation",
|
|
333
|
+
"operation_name": null,
|
|
334
|
+
"root_fields": [
|
|
335
|
+
"allocateEgressIpAddress"
|
|
336
|
+
],
|
|
337
|
+
"adapter": "AllocateEgressIPAddress",
|
|
338
|
+
"document": "mutation($input: AllocateEgressIPAddressInput!) {\n\t\t\tallocateEgressIpAddress(input: $input) {\n\t\t\t\tv4,\n\t\t\t\tv6\n\t\t\t}\n\t\t}",
|
|
339
|
+
"source_path": "resource_ip_addresses.go",
|
|
340
|
+
"source_line": 120
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"operation_type": "query",
|
|
344
|
+
"operation_name": null,
|
|
345
|
+
"root_fields": [
|
|
346
|
+
"app"
|
|
347
|
+
],
|
|
348
|
+
"adapter": "GetEgressIPAddresses",
|
|
349
|
+
"document": "query ($appName: String!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\tmachines {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tegressIpAddresses {\n\t\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\tip\n\t\t\t\t\t\t\t\tversion\n\t\t\t\t\t\t\t\tregion\n\t\t\t\t\t\t\t\tupdatedAt\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
350
|
+
"source_path": "resource_ip_addresses.go",
|
|
351
|
+
"source_line": 142
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"operation_type": "mutation",
|
|
355
|
+
"operation_name": null,
|
|
356
|
+
"root_fields": [
|
|
357
|
+
"releaseEgressIpAddress"
|
|
358
|
+
],
|
|
359
|
+
"adapter": "ReleaseEgressIPAddress",
|
|
360
|
+
"document": "mutation($input: ReleaseEgressIPAddressInput!) {\n\t\t\treleaseEgressIpAddress(input: $input) {\n\t\t\t\tv4\n\t\t\t\tv6\n\t\t\t\tclientMutationId\n\t\t\t}\n\t\t}",
|
|
361
|
+
"source_path": "resource_ip_addresses.go",
|
|
362
|
+
"source_line": 189
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"operation_type": "mutation",
|
|
366
|
+
"operation_name": null,
|
|
367
|
+
"root_fields": [
|
|
368
|
+
"releaseIpAddress"
|
|
369
|
+
],
|
|
370
|
+
"adapter": "ReleaseIPAddress",
|
|
371
|
+
"document": "mutation($input: ReleaseIPAddressInput!) {\n\t\t\treleaseIpAddress(input: $input) {\n\t\t\t\tclientMutationId\n\t\t\t}\n\t\t}",
|
|
372
|
+
"source_path": "resource_ip_addresses.go",
|
|
373
|
+
"source_line": 212
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"operation_type": "query",
|
|
377
|
+
"operation_name": null,
|
|
378
|
+
"root_fields": [
|
|
379
|
+
"app"
|
|
380
|
+
],
|
|
381
|
+
"adapter": "GetAppScopedEgressIPAddresses",
|
|
382
|
+
"document": "query ($appName: String!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\tegressIpAddresses {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tip\n\t\t\t\t\t\tversion\n\t\t\t\t\t\tregion\n\t\t\t\t\t\tupdatedAt\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
383
|
+
"source_path": "resource_ip_addresses.go",
|
|
384
|
+
"source_line": 233
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"operation_type": "mutation",
|
|
388
|
+
"operation_name": null,
|
|
389
|
+
"root_fields": [
|
|
390
|
+
"allocateEgressIpAddress"
|
|
391
|
+
],
|
|
392
|
+
"adapter": "AllocateAppScopedEgressIPAddress",
|
|
393
|
+
"document": "mutation($input: AllocateEgressIPAddressInput!) {\n\t\t\tallocateEgressIpAddress(input: $input) {\n\t\t\t\tv4,\n\t\t\t\tv6\n\t\t\t}\n\t\t}",
|
|
394
|
+
"source_path": "resource_ip_addresses.go",
|
|
395
|
+
"source_line": 271
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"operation_type": "mutation",
|
|
399
|
+
"operation_name": null,
|
|
400
|
+
"root_fields": [
|
|
401
|
+
"releaseEgressIpAddress"
|
|
402
|
+
],
|
|
403
|
+
"adapter": "ReleaseAppScopedEgressIPAddress",
|
|
404
|
+
"document": "mutation($input: ReleaseEgressIPAddressInput!) {\n\t\t\treleaseEgressIpAddress(input: $input) {\n\t\t\t\tv4\n\t\t\t\tv6\n\t\t\t\tclientMutationId\n\t\t\t}\n\t\t}",
|
|
405
|
+
"source_path": "resource_ip_addresses.go",
|
|
406
|
+
"source_line": 293
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"operation_type": "query",
|
|
410
|
+
"operation_name": null,
|
|
411
|
+
"root_fields": [
|
|
412
|
+
"app"
|
|
413
|
+
],
|
|
414
|
+
"adapter": "GetAppHostIssues",
|
|
415
|
+
"document": "query($appName: String!) {\n\t\t\tapphostissues:app(name: $appName) {\n\t\t\t\thostIssues {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tinternalId\n\t\t\t\t\t\tmessage\n\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\tupdatedAt\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
416
|
+
"source_path": "resource_issues.go",
|
|
417
|
+
"source_line": 6
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"operation_type": "query",
|
|
421
|
+
"operation_name": null,
|
|
422
|
+
"root_fields": [
|
|
423
|
+
"machine"
|
|
424
|
+
],
|
|
425
|
+
"adapter": "GetMachine",
|
|
426
|
+
"document": "query ($machineId: String!) {\n\t\t\tgqlmachine:machine(machineId: $machineId) {\n\t\t\t\tid\n\t\t\t\tname\n\t\t\t\tapp {\n\t\t\t\t\tname\n\t\t\t\t\torganization {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tslug\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
427
|
+
"source_path": "resource_machines.go",
|
|
428
|
+
"source_line": 6
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"operation_type": "query",
|
|
432
|
+
"operation_name": null,
|
|
433
|
+
"root_fields": [
|
|
434
|
+
"organizations"
|
|
435
|
+
],
|
|
436
|
+
"adapter": "GetOrganizations",
|
|
437
|
+
"document": "query($admin: Boolean!) {\n\t\t\torganizations(admin: $admin) {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tslug\n\t\t\t\t\trawSlug\n\t\t\t\t\tname\n\t\t\t\t\ttype\n\t\t\t\t\tpaidPlan\n\t\t\t\t\tbillable\n\t\t\t\t\tviewerRole\n\t\t\t\t\tinternalNumericId\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
438
|
+
"source_path": "resource_organizations.go",
|
|
439
|
+
"source_line": 29
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"operation_type": "query",
|
|
443
|
+
"operation_name": null,
|
|
444
|
+
"root_fields": [
|
|
445
|
+
"organization"
|
|
446
|
+
],
|
|
447
|
+
"adapter": "GetOrganizationRemoteBuilderBySlug",
|
|
448
|
+
"document": "query($slug: String!) {\n\t\t\torganization(slug: $slug) {\n\t\t\t\tid\n\t\t\t\tinternalNumericId\n\t\t\t\tslug\n\t\t\t\tname\n\t\t\t\ttype\n\t\t\t\tbillable\n\t\t\t\tremoteBuilderImage\n\t\t\t\tremoteBuilderApp {\n\t\t\t\t\tid\n\t\t\t\t\tname\n\t\t\t\t\thostname\n\t\t\t\t\tdeployed\n\t\t\t\t\tstatus\n\t\t\t\t\tversion\n\t\t\t\t\tappUrl\n\t\t\t\t\tplatformVersion\n\t\t\t\t\tcurrentRelease {\n\t\t\t\t\t\tevaluationId\n\t\t\t\t\t\tstatus\n\t\t\t\t\t\tinProgress\n\t\t\t\t\t\tversion\n\t\t\t\t\t}\n\t\t\t\t\tipAddresses {\n\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\taddress\n\t\t\t\t\t\t\ttype\n\t\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\torganization {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tslug\n\t\t\t\t\t\tpaidPlan\n\t\t\t\t\t}\n\t\t\t\t\timageDetails {\n\t\t\t\t\t\tregistry\n\t\t\t\t\t\trepository\n\t\t\t\t\t\ttag\n\t\t\t\t\t\tdigest\n\t\t\t\t\t\tversion\n\t\t\t\t\t}\n\t\t\t\t\tmachines{\n\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\tconfig\n\t\t\t\t\t\t\tstate\n\t\t\t\t\t\t\tregion\n\t\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\t\tapp {\n\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tips {\n\t\t\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\t\t\tfamily\n\t\t\t\t\t\t\t\t\tkind\n\t\t\t\t\t\t\t\t\tip\n\t\t\t\t\t\t\t\t\tmaskSize\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\thost {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostgresAppRole: role {\n\t\t\t\t\t\tname\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
449
|
+
"source_path": "resource_organizations.go",
|
|
450
|
+
"source_line": 66
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"operation_type": "query",
|
|
454
|
+
"operation_name": null,
|
|
455
|
+
"root_fields": [
|
|
456
|
+
"organization"
|
|
457
|
+
],
|
|
458
|
+
"adapter": "GetOrganizationBySlug",
|
|
459
|
+
"document": "query($slug: String!) {\n\t\t\torganization(slug: $slug) {\n\t\t\t\tid\n\t\t\t\tinternalNumericId\n\t\t\t\tslug\n\t\t\t\trawSlug\n\t\t\t\tname\n\t\t\t\ttype\n\t\t\t\tbillable\n\t\t\t}\n\t\t}",
|
|
460
|
+
"source_path": "resource_organizations.go",
|
|
461
|
+
"source_line": 156
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"operation_type": "query",
|
|
465
|
+
"operation_name": null,
|
|
466
|
+
"root_fields": [
|
|
467
|
+
"organization"
|
|
468
|
+
],
|
|
469
|
+
"adapter": "GetDetailedOrganizationBySlug",
|
|
470
|
+
"document": "query($slug: String!) {\n\t\torganizationdetails: organization(slug: $slug) {\n\t\t\tid\n\t\t\tslug\n\t\t\trawSlug\n\t\t\tname\n\t\t\ttype\n\t\t\tviewerRole\n\t\t\tinternalNumericId\n\t\t\tremoteBuilderImage\n\t\t\tremoteBuilderApp {\n\t\t\t\tname\n\t\t\t}\n\t\t\tmembers {\n\t\t\t\tedges {\n\t\t\t\t\tcursor\n\t\t\t\t\tnode {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tname\n\t\t\t\t\t\temail\n\t\t\t\t\t}\n\t\t\t\t\tjoinedAt\n\t\t\t\t\trole\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}",
|
|
471
|
+
"source_path": "resource_organizations.go",
|
|
472
|
+
"source_line": 183
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"operation_type": "mutation",
|
|
476
|
+
"operation_name": null,
|
|
477
|
+
"root_fields": [
|
|
478
|
+
"createOrganization"
|
|
479
|
+
],
|
|
480
|
+
"adapter": "CreateOrganization",
|
|
481
|
+
"document": "mutation($input: CreateOrganizationInput!) {\n\t\t\tcreateOrganization(input: $input) {\n\t\t\t organization {\n\t\t\t\t\tid\n\t\t\t\t\tname\n\t\t\t\t\tslug\n\t\t\t\t\ttype\n\t\t\t\t\tviewerRole\n\t\t\t\t }\n\t\t\t}\n\t\t}",
|
|
482
|
+
"source_path": "resource_organizations.go",
|
|
483
|
+
"source_line": 224
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"operation_type": "mutation",
|
|
487
|
+
"operation_name": null,
|
|
488
|
+
"root_fields": [
|
|
489
|
+
"deleteOrganization"
|
|
490
|
+
],
|
|
491
|
+
"adapter": "DeleteOrganization",
|
|
492
|
+
"document": "mutation($input: DeleteOrganizationInput!) {\n\t\tdeleteOrganization(input: $input) {\n\t\t clientMutationId\n\t\t deletedOrganizationId\n\t\t }\n\t\t}",
|
|
493
|
+
"source_path": "resource_organizations.go",
|
|
494
|
+
"source_line": 254
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"operation_type": "mutation",
|
|
498
|
+
"operation_name": null,
|
|
499
|
+
"root_fields": [
|
|
500
|
+
"createOrganizationInvitation"
|
|
501
|
+
],
|
|
502
|
+
"adapter": "CreateOrganizationInvite",
|
|
503
|
+
"document": "mutation($input: CreateOrganizationInvitationInput!){\n\t\tcreateOrganizationInvitation(input: $input){\n\t\t\tinvitation {\n\t\t\t\tid\n\t\t\t\temail\n\t\t\t\tcreatedAt\n\t\t\t\tredeemed\n\t\t\t\torganization {\n\t\t\t \t\tslug\n\t\t\t\t}\n\t\t }\n\t\t}\n\t }",
|
|
504
|
+
"source_path": "resource_organizations.go",
|
|
505
|
+
"source_line": 280
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"operation_type": "mutation",
|
|
509
|
+
"operation_name": null,
|
|
510
|
+
"root_fields": [
|
|
511
|
+
"deleteOrganizationMembership"
|
|
512
|
+
],
|
|
513
|
+
"adapter": "DeleteOrganizationMembership",
|
|
514
|
+
"document": "mutation($input: DeleteOrganizationMembershipInput!){\n\t\tdeleteOrganizationMembership(input: $input){\n\t\torganization{\n\t\t slug\n\t\t}\n\t\tuser{\n\t\t name\n\t\t email\n\t\t}\n\t }\n\t}",
|
|
515
|
+
"source_path": "resource_organizations.go",
|
|
516
|
+
"source_line": 313
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"operation_type": "query",
|
|
520
|
+
"operation_name": null,
|
|
521
|
+
"root_fields": [
|
|
522
|
+
"app"
|
|
523
|
+
],
|
|
524
|
+
"adapter": "GetOrganizationByApp",
|
|
525
|
+
"document": "query ($appName: String!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\tid\n\t\t\t\tname\n\t\t\t\torganization {\n\t\t\t\t\tid\n\t\t\t\t\tslug\n\t\t\t\t\trawSlug\n\t\t\t\t\tpaidPlan\n\t\t\t\t\tremoteBuilderImage\n\t\t\t\t\tremoteBuilderApp {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tname\n\t\t\t\t\t\thostname\n\t\t\t\t\t\tdeployed\n\t\t\t\t\t\tstatus\n\t\t\t\t\t\tversion\n\t\t\t\t\t\tappUrl\n\t\t\t\t\t\tplatformVersion\n\t\t\t\t\t\tcurrentRelease {\n\t\t\t\t\t\t\tevaluationId\n\t\t\t\t\t\t\tstatus\n\t\t\t\t\t\t\tinProgress\n\t\t\t\t\t\t\tversion\n\t\t\t\t\t\t}\n\t\t\t\t\t\tipAddresses {\n\t\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\taddress\n\t\t\t\t\t\t\t\ttype\n\t\t\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\torganization {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tslug\n\t\t\t\t\t\t\tpaidPlan\n\t\t\t\t\t\t}\n\t\t\t\t\t\timageDetails {\n\t\t\t\t\t\t\tregistry\n\t\t\t\t\t\t\trepository\n\t\t\t\t\t\t\ttag\n\t\t\t\t\t\t\tdigest\n\t\t\t\t\t\t\tversion\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmachines{\n\t\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\tconfig\n\t\t\t\t\t\t\t\tstate\n\t\t\t\t\t\t\t\tregion\n\t\t\t\t\t\t\t\tcreatedAt\n\t\t\t\t\t\t\t\tapp {\n\t\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tips {\n\t\t\t\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\t\t\t\tfamily\n\t\t\t\t\t\t\t\t\t\tkind\n\t\t\t\t\t\t\t\t\t\tip\n\t\t\t\t\t\t\t\t\t\tmaskSize\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\thost {\n\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tpostgresAppRole: role {\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\t\t}",
|
|
526
|
+
"source_path": "resource_organizations.go",
|
|
527
|
+
"source_line": 344
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"operation_type": "query",
|
|
531
|
+
"operation_name": null,
|
|
532
|
+
"root_fields": [
|
|
533
|
+
"organization"
|
|
534
|
+
],
|
|
535
|
+
"adapter": "GetAllowedReplaySourceOrgSlugs",
|
|
536
|
+
"document": "query($slug: String!) {\n\t\t\torganization(slug: $slug) {\n\t\t\t\tallowedReplaySourceOrgSlugs\n\t\t\t}\n\t\t}",
|
|
537
|
+
"source_path": "resource_organizations.go",
|
|
538
|
+
"source_line": 439
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"operation_type": "mutation",
|
|
542
|
+
"operation_name": null,
|
|
543
|
+
"root_fields": [
|
|
544
|
+
"addAllowedReplaySourceOrgs"
|
|
545
|
+
],
|
|
546
|
+
"adapter": "AddAllowedReplaySourceOrgs",
|
|
547
|
+
"document": "mutation($input: AddAllowedReplaySourceOrgsInput!) {\n\t\t\taddAllowedReplaySourceOrgs(input: $input) {\n\t\t\t\torganization {\n\t\t\t\t\tid\n\t\t\t\t\tslug\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
548
|
+
"source_path": "resource_organizations.go",
|
|
549
|
+
"source_line": 464
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"operation_type": "mutation",
|
|
553
|
+
"operation_name": null,
|
|
554
|
+
"root_fields": [
|
|
555
|
+
"removeAllowedReplaySourceOrgs"
|
|
556
|
+
],
|
|
557
|
+
"adapter": "RemoveAllowedReplaySourceOrgs",
|
|
558
|
+
"document": "mutation($input: RemoveAllowedReplaySourceOrgsInput!) {\n\t\t\tremoveAllowedReplaySourceOrgs(input: $input) {\n\t\t\t\torganization {\n\t\t\t\t\tid\n\t\t\t\t\tslug\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
559
|
+
"source_path": "resource_organizations.go",
|
|
560
|
+
"source_line": 496
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"operation_type": "mutation",
|
|
564
|
+
"operation_name": null,
|
|
565
|
+
"root_fields": [
|
|
566
|
+
"setAllowAllCrossNetworkReplays"
|
|
567
|
+
],
|
|
568
|
+
"adapter": "SetAllowAllCrossNetworkReplays",
|
|
569
|
+
"document": "mutation($input: SetAllowAllCrossNetworkReplaysInput!) {\n\t\t\tsetAllowAllCrossNetworkReplays(input: $input) {\n\t\t\t\torganization {\n\t\t\t\t\tid\n\t\t\t\t\tslug\n\t\t\t\t\tname\n\t\t\t\t\tallowAllCrossNetworkReplays\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
570
|
+
"source_path": "resource_organizations.go",
|
|
571
|
+
"source_line": 528
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"operation_type": "query",
|
|
575
|
+
"operation_name": null,
|
|
576
|
+
"root_fields": [
|
|
577
|
+
"organization"
|
|
578
|
+
],
|
|
579
|
+
"adapter": "GetAllowAllCrossNetworkReplays",
|
|
580
|
+
"document": "query($slug: String!) {\n\t\t\torganization(slug: $slug) {\n\t\t\t\tallowAllCrossNetworkReplays\n\t\t\t}\n\t\t}",
|
|
581
|
+
"source_path": "resource_organizations.go",
|
|
582
|
+
"source_line": 557
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"operation_type": "query",
|
|
586
|
+
"operation_name": null,
|
|
587
|
+
"root_fields": [
|
|
588
|
+
"platform"
|
|
589
|
+
],
|
|
590
|
+
"adapter": "PlatformRegions",
|
|
591
|
+
"document": "query {\n\t\t\tplatform {\n\t\t\t\trequestRegion\n\t\t\t\tregions {\n\t\t\t\t\tname\n\t\t\t\t\tcode\n\t\t\t\t\tlatitude\n\t\t\t\t\tlongitude\n\t\t\t\t\tgatewayAvailable\n\t\t\t\t\trequiresPaidPlan\n\t\t\t\t\tdeprecated\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
592
|
+
"source_path": "resource_platform.go",
|
|
593
|
+
"source_line": 6
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"operation_type": "mutation",
|
|
597
|
+
"operation_name": null,
|
|
598
|
+
"root_fields": [
|
|
599
|
+
"attachPostgresCluster"
|
|
600
|
+
],
|
|
601
|
+
"adapter": "AttachPostgresCluster",
|
|
602
|
+
"document": "mutation($input: AttachPostgresClusterInput!) {\n\t\t\tattachPostgresCluster(input: $input) {\n\t\t\t\tapp {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t\tpostgresClusterApp {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t\tenvironmentVariableName\n\t\t\t\tconnectionString\n\t\t\t\tenvironmentVariableName\n\t\t\t}\n\t\t}",
|
|
603
|
+
"source_path": "resource_postgres.go",
|
|
604
|
+
"source_line": 8
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"operation_type": "mutation",
|
|
608
|
+
"operation_name": null,
|
|
609
|
+
"root_fields": [
|
|
610
|
+
"detachPostgresCluster"
|
|
611
|
+
],
|
|
612
|
+
"adapter": "DetachPostgresCluster",
|
|
613
|
+
"document": "mutation($input: DetachPostgresClusterInput!) {\n\t\t\tdetachPostgresCluster(input: $input) {\n\t\t\t\tclientMutationId\n\t\t\t}\n\t\t}",
|
|
614
|
+
"source_path": "resource_postgres.go",
|
|
615
|
+
"source_line": 37
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"operation_type": "query",
|
|
619
|
+
"operation_name": null,
|
|
620
|
+
"root_fields": [
|
|
621
|
+
"postgresAttachments"
|
|
622
|
+
],
|
|
623
|
+
"adapter": "ListPostgresClusterAttachments",
|
|
624
|
+
"document": "query($appName: String!, $postgresAppName: String!) {\n\t\t\tpostgresAttachments(appName: $appName, postgresAppName: $postgresAppName) {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tdatabaseName\n\t\t\t\t\tdatabaseUser\n\t\t\t\t\tenvironmentVariableName\n\t\t\t\t}\n\t\t }\n\t\t}",
|
|
625
|
+
"source_path": "resource_postgres.go",
|
|
626
|
+
"source_line": 55
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
"operation_type": "mutation",
|
|
630
|
+
"operation_name": null,
|
|
631
|
+
"root_fields": [
|
|
632
|
+
"enablePostgresConsul"
|
|
633
|
+
],
|
|
634
|
+
"adapter": "EnablePostgresConsul",
|
|
635
|
+
"document": "mutation($appName: ID!) {\n\t\t\tenablePostgresConsul(input: {appId: $appName}) {\n\t\t\t\tconsulUrl\n\t\t\t}\n\t\t}",
|
|
636
|
+
"source_path": "resource_postgres.go",
|
|
637
|
+
"source_line": 82
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"operation_type": "query",
|
|
641
|
+
"operation_name": null,
|
|
642
|
+
"root_fields": [
|
|
643
|
+
"nearestRegion"
|
|
644
|
+
],
|
|
645
|
+
"adapter": "GetNearestRegion",
|
|
646
|
+
"document": "query {\n\t\t\tnearestRegion {\n\t\t\t\tcode\n\t\t\t\tname\n\t\t\t\tgatewayAvailable\n\t\t\t\tdeprecated\n\t\t\t}\n\t\t}",
|
|
647
|
+
"source_path": "resource_regions.go",
|
|
648
|
+
"source_line": 6
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"operation_type": "query",
|
|
652
|
+
"operation_name": null,
|
|
653
|
+
"root_fields": [
|
|
654
|
+
"app"
|
|
655
|
+
],
|
|
656
|
+
"adapter": "GetAppReleasesMachines",
|
|
657
|
+
"document": "query($appName: String!, $limit: Int!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\treleases: releasesUnprocessed(first: $limit) {\n\t\t\t\t\tnodes {\n\t\t\t \t\t\tid\n\t\t\t \t\t\tversion\n\t\t\t \t\t\tdescription\n\t\t\t \t\t\treason\n\t\t\t \t\t\tstatus\n\t\t\t \t\t\timageRef\n\t\t\t \t\t\tstable\n\t\t\t \t\t\tuser {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\temail\n\t\t\t\t\t\t\tname\n\t\t\t\t\t\t}\n\t\t\t \t\t\tcreatedAt\n\t\t\t\t\t}\n\t\t \t\t}\n\t\t\t}\n\t\t}",
|
|
658
|
+
"source_path": "resource_releases.go",
|
|
659
|
+
"source_line": 6
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"operation_type": "query",
|
|
663
|
+
"operation_name": null,
|
|
664
|
+
"root_fields": [
|
|
665
|
+
"app"
|
|
666
|
+
],
|
|
667
|
+
"adapter": "GetAppCurrentReleaseMachines",
|
|
668
|
+
"document": "query ($appName: String!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\tcurrentRelease: currentReleaseUnprocessed {\n\t\t\t\t\tid\n\t\t\t\t\tversion\n\t\t\t\t\tdescription\n\t\t\t\t\treason\n\t\t\t\t\tstatus\n\t\t\t\t\timageRef\n\t\t\t\t\tstable\n\t\t\t\t\tuser {\n\t\t\t\t\t\tid\n\t\t\t\t\t\temail\n\t\t\t\t\t\tname\n\t\t\t\t\t}\n\t\t\t\t\tcreatedAt\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
669
|
+
"source_path": "resource_releases.go",
|
|
670
|
+
"source_line": 47
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"operation_type": "mutation",
|
|
674
|
+
"operation_name": "CreateRelease",
|
|
675
|
+
"root_fields": [
|
|
676
|
+
"createRelease"
|
|
677
|
+
],
|
|
678
|
+
"adapter": "CreateRelease",
|
|
679
|
+
"document": "# @genqlient\n\tmutation CreateRelease($input:CreateReleaseInput!) {\n\t\tcreateRelease(input:$input) {\n\t\t\trelease {\n\t\t\t\tid\n\t\t\t\tversion\n\t\t\t}\n\t\t}\n\t}",
|
|
680
|
+
"source_path": "resource_releases.go",
|
|
681
|
+
"source_line": 82
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"operation_type": "mutation",
|
|
685
|
+
"operation_name": "UpdateRelease",
|
|
686
|
+
"root_fields": [
|
|
687
|
+
"updateRelease"
|
|
688
|
+
],
|
|
689
|
+
"adapter": "UpdateRelease",
|
|
690
|
+
"document": "# @genqlient\n\tmutation UpdateRelease($input:UpdateReleaseInput!) {\n\t\tupdateRelease(input:$input) {\n\t\t\trelease {\n\t\t\t\tid\n\t\t\t}\n\t\t}\n\t}",
|
|
691
|
+
"source_path": "resource_releases.go",
|
|
692
|
+
"source_line": 97
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"operation_type": "mutation",
|
|
696
|
+
"operation_name": null,
|
|
697
|
+
"root_fields": [
|
|
698
|
+
"ensureMachineRemoteBuilder"
|
|
699
|
+
],
|
|
700
|
+
"adapter": "EnsureRemoteBuilder",
|
|
701
|
+
"document": "mutation($input: EnsureMachineRemoteBuilderInput!) {\n\t\t\tensureMachineRemoteBuilder(input: $input) {\n\t\t\t\tmachine {\n\t\t\t\t\tid\n\t\t\t\t\tstate\n\t\t\t\t\tips {\n\t\t\t\t\t\tnodes {\n\t\t\t\t\t\t\tfamily\n\t\t\t\t\t\t\tkind\n\t\t\t\t\t\t\tip\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\tapp {\n\t\t\t\t\tname\n\t\t\t\t\torganization {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tslug\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
702
|
+
"source_path": "resource_remote_builders.go",
|
|
703
|
+
"source_line": 6
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"operation_type": "mutation",
|
|
707
|
+
"operation_name": "EnsureDepotRemoteBuilder",
|
|
708
|
+
"root_fields": [
|
|
709
|
+
"ensureDepotRemoteBuilder"
|
|
710
|
+
],
|
|
711
|
+
"adapter": "EnsureDepotRemoteBuilder",
|
|
712
|
+
"document": "# @genqlient(pointer: true)\n\t\tmutation EnsureDepotRemoteBuilder($input: EnsureDepotRemoteBuilderInput!) {\n\t\t\tensureDepotRemoteBuilder(input:$input) {\n\t\t\t\tbuildId\n\t\t\t\tbuildToken\n\t\t\t}\n\t\t}",
|
|
713
|
+
"source_path": "resource_remote_builders.go",
|
|
714
|
+
"source_line": 56
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"operation_type": "mutation",
|
|
718
|
+
"operation_name": null,
|
|
719
|
+
"root_fields": [
|
|
720
|
+
"setSecrets"
|
|
721
|
+
],
|
|
722
|
+
"adapter": "SetSecrets",
|
|
723
|
+
"document": "mutation($input: SetSecretsInput!) {\n\t\t\tsetSecrets(input: $input) {\n\t\t\t\trelease {\n\t\t\t\t\tid\n\t\t\t\t\tversion\n\t\t\t\t\treason\n\t\t\t\t\tdescription\n\t\t\t\t\tuser {\n\t\t\t\t\t\tid\n\t\t\t\t\t\temail\n\t\t\t\t\t\tname\n\t\t\t\t\t}\n\t\t\t\t\tevaluationId\n\t\t\t\t\tcreatedAt\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
724
|
+
"source_path": "resource_secrets.go",
|
|
725
|
+
"source_line": 6
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"operation_type": "mutation",
|
|
729
|
+
"operation_name": null,
|
|
730
|
+
"root_fields": [
|
|
731
|
+
"unsetSecrets"
|
|
732
|
+
],
|
|
733
|
+
"adapter": "UnsetSecrets",
|
|
734
|
+
"document": "mutation($input: UnsetSecretsInput!) {\n\t\t\tunsetSecrets(input: $input) {\n\t\t\t\trelease {\n\t\t\t\t\tid\n\t\t\t\t\tversion\n\t\t\t\t\treason\n\t\t\t\t\tdescription\n\t\t\t\t\tuser {\n\t\t\t\t\t\tid\n\t\t\t\t\t\temail\n\t\t\t\t\t\tname\n\t\t\t\t\t}\n\t\t\t\t\tevaluationId\n\t\t\t\t\tcreatedAt\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
735
|
+
"source_path": "resource_secrets.go",
|
|
736
|
+
"source_line": 45
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"operation_type": "query",
|
|
740
|
+
"operation_name": null,
|
|
741
|
+
"root_fields": [
|
|
742
|
+
"app"
|
|
743
|
+
],
|
|
744
|
+
"adapter": "GetAppSecrets",
|
|
745
|
+
"document": "query ($appName: String!) {\n\t\t\tapp(name: $appName) {\n\t\t\t\tsecrets {\n\t\t\t\t\tname\n\t\t\t\t\tdigest\n\t\t\t\t\tcreatedAt\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
746
|
+
"source_path": "resource_secrets.go",
|
|
747
|
+
"source_line": 79
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"operation_type": "query",
|
|
751
|
+
"operation_name": null,
|
|
752
|
+
"root_fields": [
|
|
753
|
+
"organization"
|
|
754
|
+
],
|
|
755
|
+
"adapter": "GetLoggedCertificates",
|
|
756
|
+
"document": "query($slug: String!) {\n organization(slug: $slug) {\n loggedCertificates {\n nodes {\n root\n cert\n }\n }\n }\n}",
|
|
757
|
+
"source_path": "resource_ssh.go",
|
|
758
|
+
"source_line": 12
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"operation_type": "mutation",
|
|
762
|
+
"operation_name": null,
|
|
763
|
+
"root_fields": [
|
|
764
|
+
"issueCertificate"
|
|
765
|
+
],
|
|
766
|
+
"adapter": "IssueSSHCertificate",
|
|
767
|
+
"document": "mutation($input: IssueCertificateInput!) {\n issueCertificate(input: $input) {\n certificate, key\n }\n}",
|
|
768
|
+
"source_path": "resource_ssh.go",
|
|
769
|
+
"source_line": 36
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"operation_type": "query",
|
|
773
|
+
"operation_name": null,
|
|
774
|
+
"root_fields": [
|
|
775
|
+
"organization"
|
|
776
|
+
],
|
|
777
|
+
"adapter": "GetOrgLimitedAccessTokens",
|
|
778
|
+
"document": "query ($slug: String!) {\n\t\t\torgLimitedAccessTokens: organization(slug: $slug) {\n\t\t\t\tlimitedAccessTokens {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tname\n\t\t\t\t\t\texpiresAt\n\t\t\t\t\t\trevokedAt\n\t\t\t\t\t\tuser {\n\t\t\t\t\t\t\temail\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
779
|
+
"source_path": "resource_tokens.go",
|
|
780
|
+
"source_line": 8
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"operation_type": "query",
|
|
784
|
+
"operation_name": null,
|
|
785
|
+
"root_fields": [
|
|
786
|
+
"app"
|
|
787
|
+
],
|
|
788
|
+
"adapter": "GetAppLimitedAccessTokens",
|
|
789
|
+
"document": "query ($appName: String!) {\n\t\t\tappLimitedAccessTokens: app(name: $appName) {\n\t\t\t\tlimitedAccessTokens {\n\t\t\t\t\tnodes {\n\t\t\t\t\t\tid\n\t\t\t\t\t\tname\n\t\t\t\t\t\ttoken\n\t\t\t\t\t\texpiresAt\n\t\t\t\t\t\trevokedAt\n\t\t\t\t\t\tuser {\n\t\t\t\t\t\t\temail\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}",
|
|
790
|
+
"source_path": "resource_tokens.go",
|
|
791
|
+
"source_line": 43
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
"operation_type": "mutation",
|
|
795
|
+
"operation_name": null,
|
|
796
|
+
"root_fields": [
|
|
797
|
+
"deleteLimitedAccessToken"
|
|
798
|
+
],
|
|
799
|
+
"adapter": "RevokeLimitedAccessToken",
|
|
800
|
+
"document": "mutation($input:DeleteLimitedAccessTokenInput!) {\n\t\t\tdeleteLimitedAccessToken(input: $input) {\n\t\t\t\ttoken\n\t\t\t}\n\t\t}",
|
|
801
|
+
"source_path": "resource_tokens.go",
|
|
802
|
+
"source_line": 79
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"operation_type": "query",
|
|
806
|
+
"operation_name": null,
|
|
807
|
+
"root_fields": [
|
|
808
|
+
"viewer"
|
|
809
|
+
],
|
|
810
|
+
"adapter": "GetCurrentUser",
|
|
811
|
+
"document": "query {\n\t\t\t\tviewer {\n\t\t\t\t\t... on User {\n\t\t\t\t\t\tid\n\t\t\t\t\t\temail\n\t\t\t\t\t\tenablePaidHobby\n\t\t\t\t\t}\n\t\t\t\t\t... on Macaroon {\n\t\t\t\t\t\temail\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t}",
|
|
812
|
+
"source_path": "resource_user.go",
|
|
813
|
+
"source_line": 8
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"operation_type": "query",
|
|
817
|
+
"operation_name": null,
|
|
818
|
+
"root_fields": [
|
|
819
|
+
"volume"
|
|
820
|
+
],
|
|
821
|
+
"adapter": "GetAppNameFromVolume",
|
|
822
|
+
"document": "query($id: ID!) {\n\tvolume: volume(id: $id) {\n\t\t... on Volume {\n\t\t\tapp {\n\t\t\t\tname\n\t\t\t}\n\t\t}\n\t}\n}",
|
|
823
|
+
"source_path": "resource_volumes.go",
|
|
824
|
+
"source_line": 8
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"operation_type": "query",
|
|
828
|
+
"operation_name": "GetAppNameStateFromVolume",
|
|
829
|
+
"root_fields": [
|
|
830
|
+
"volume"
|
|
831
|
+
],
|
|
832
|
+
"adapter": "GetAppNameStateFromVolume",
|
|
833
|
+
"document": "query GetAppNameStateFromVolume($id: ID!) {\n\tvolume: volume(id: $id) {\n\t\t... on Volume {\n\t\t\tapp {\n\t\t\t\tname\n\t\t\t}\n\t\t\tstate\n\t\t}\n\t}\n}",
|
|
834
|
+
"source_path": "resource_volumes.go",
|
|
835
|
+
"source_line": 34
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"operation_type": "query",
|
|
839
|
+
"operation_name": "GetSnapshotsFromVolume",
|
|
840
|
+
"root_fields": [
|
|
841
|
+
"volume"
|
|
842
|
+
],
|
|
843
|
+
"adapter": "GetSnapshotsFromVolume",
|
|
844
|
+
"document": "query GetSnapshotsFromVolume($id: ID!) {\n\tvolume: volume(id: $id) {\n\t\t... on Volume {\n\t\t\tsnapshots {\n\t\t\t\tnodes {\n\t\t\t\t\tid\n\t\t\t\t\tsize\n\t\t\t\t\tdigest\n\t\t\t\t\tcreatedAt\n\t\t\t\t\tretentionDays\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
|
|
845
|
+
"source_path": "resource_volumes.go",
|
|
846
|
+
"source_line": 61
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"operation_type": "query",
|
|
850
|
+
"operation_name": null,
|
|
851
|
+
"root_fields": [
|
|
852
|
+
"organization"
|
|
853
|
+
],
|
|
854
|
+
"adapter": "GetWireGuardPeer",
|
|
855
|
+
"document": "query($slug: String!, $name: String!) {\n organization(slug: $slug) {\n wireGuardPeer(name: $name) {\n id\n name\n pubkey\n region\n peerip\n }\n }\n}",
|
|
856
|
+
"source_path": "resource_wireguard.go",
|
|
857
|
+
"source_line": 10
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"operation_type": "query",
|
|
861
|
+
"operation_name": null,
|
|
862
|
+
"root_fields": [
|
|
863
|
+
"organization"
|
|
864
|
+
],
|
|
865
|
+
"adapter": "GetWireGuardPeers",
|
|
866
|
+
"document": "query($slug: String!) {\n organization(slug: $slug) {\n wireGuardPeers {\n nodes {\n id\n name\n pubkey\n region\n peerip\n }\n }\n }\n}",
|
|
867
|
+
"source_path": "resource_wireguard.go",
|
|
868
|
+
"source_line": 37
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"operation_type": "mutation",
|
|
872
|
+
"operation_name": null,
|
|
873
|
+
"root_fields": [
|
|
874
|
+
"addWireGuardPeer"
|
|
875
|
+
],
|
|
876
|
+
"adapter": "CreateWireGuardPeer",
|
|
877
|
+
"document": "mutation($input: AddWireGuardPeerInput!) {\n addWireGuardPeer(input: $input) {\n peerip\n endpointip\n pubkey\n }\n}",
|
|
878
|
+
"source_path": "resource_wireguard.go",
|
|
879
|
+
"source_line": 64
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"operation_type": "mutation",
|
|
883
|
+
"operation_name": null,
|
|
884
|
+
"root_fields": [
|
|
885
|
+
"removeWireGuardPeer"
|
|
886
|
+
],
|
|
887
|
+
"adapter": "RemoveWireGuardPeer",
|
|
888
|
+
"document": "mutation($input: RemoveWireGuardPeerInput!) {\n removeWireGuardPeer(input: $input) {\n organization {\n id\n }\n }\n}",
|
|
889
|
+
"source_path": "resource_wireguard.go",
|
|
890
|
+
"source_line": 108
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"operation_type": "mutation",
|
|
894
|
+
"operation_name": null,
|
|
895
|
+
"root_fields": [
|
|
896
|
+
"createDelegatedWireGuardToken"
|
|
897
|
+
],
|
|
898
|
+
"adapter": "CreateDelegatedWireGuardToken",
|
|
899
|
+
"document": "mutation($input: CreateDelegatedWireGuardTokenInput!) {\n createDelegatedWireGuardToken(input: $input) {\n token\n }\n}",
|
|
900
|
+
"source_path": "resource_wireguard.go",
|
|
901
|
+
"source_line": 129
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"operation_type": "mutation",
|
|
905
|
+
"operation_name": null,
|
|
906
|
+
"root_fields": [
|
|
907
|
+
"deleteDelegatedWireGuardToken"
|
|
908
|
+
],
|
|
909
|
+
"adapter": "DeleteDelegatedWireGuardToken",
|
|
910
|
+
"document": "mutation($input: DeleteDelegatedWireGuardTokenInput!) {\n deleteDelegatedWireGuardToken(input: $input) {\n token\n }\n}",
|
|
911
|
+
"source_path": "resource_wireguard.go",
|
|
912
|
+
"source_line": 151
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"operation_type": "query",
|
|
916
|
+
"operation_name": null,
|
|
917
|
+
"root_fields": [
|
|
918
|
+
"organization"
|
|
919
|
+
],
|
|
920
|
+
"adapter": "GetDelegatedWireGuardTokens",
|
|
921
|
+
"document": "query($slug: String!) {\n organization(slug: $slug) {\n delegatedWireGuardTokens {\n nodes {\n name\n }\n }\n }\n}",
|
|
922
|
+
"source_path": "resource_wireguard.go",
|
|
923
|
+
"source_line": 181
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"operation_type": "query",
|
|
927
|
+
"operation_name": null,
|
|
928
|
+
"root_fields": [
|
|
929
|
+
"nearestRegion"
|
|
930
|
+
],
|
|
931
|
+
"adapter": "ClosestWireguardGatewayRegion",
|
|
932
|
+
"document": "query {\n\t\t\tnearestRegion(wireguardGateway: true) {\n\t\t\t\tcode\n\t\t\t\tname\n\t\t\t\tgatewayAvailable\n\t\t\t\tdeprecated\n\t\t\t}\n\t\t}",
|
|
933
|
+
"source_path": "resource_wireguard.go",
|
|
934
|
+
"source_line": 204
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"operation_type": "mutation",
|
|
938
|
+
"operation_name": null,
|
|
939
|
+
"root_fields": [
|
|
940
|
+
"validateWireGuardPeers"
|
|
941
|
+
],
|
|
942
|
+
"adapter": "ValidateWireGuardPeers",
|
|
943
|
+
"document": "mutation($input: ValidateWireGuardPeersInput!) {\n validateWireGuardPeers(input: $input) {\n\t\tinvalidPeerIps\n\t}\n}",
|
|
944
|
+
"source_path": "resource_wireguard.go",
|
|
945
|
+
"source_line": 225
|
|
946
|
+
}
|
|
947
|
+
]
|
|
948
|
+
}
|