@@ -22,41 +22,42 @@ const StackConfigVendorKubernetes = "StackConfigVendorKubernetes"
2222
2323// Stack represents the Stack data relevant to the provider.
2424type Stack struct {
25- ID string `graphql:"id"`
26- Administrative bool `graphql:"administrative"`
27- AfterApply []string `graphql:"afterApply"`
28- AfterDestroy []string `graphql:"afterDestroy"`
29- AfterInit []string `graphql:"afterInit"`
30- AfterPerform []string `graphql:"afterPerform"`
31- AfterPlan []string `graphql:"afterPlan"`
32- AfterRun []string `graphql:"afterRun"`
33- Autodeploy bool `graphql:"autodeploy"`
34- Autoretry bool `graphql:"autoretry"`
35- BeforeApply []string `graphql:"beforeApply"`
36- BeforeDestroy []string `graphql:"beforeDestroy"`
37- BeforeInit []string `graphql:"beforeInit"`
38- BeforePerform []string `graphql:"beforePerform"`
39- BeforePlan []string `graphql:"beforePlan"`
40- Branch string `graphql:"branch"`
41- Deleting bool `graphql:"deleting"`
42- Description * string `graphql:"description"`
43- IsDisabled bool `graphql:"isDisabled"`
44- GitHubActionDeploy bool `graphql:"githubActionDeploy"`
45- Integrations * Integrations `graphql:"integrations"`
46- Labels []string `graphql:"labels"`
47- LocalPreviewEnabled bool `graphql:"localPreviewEnabled"`
48- ManagesStateFile bool `graphql:"managesStateFile"`
49- Name string `graphql:"name"`
50- Namespace string `graphql:"namespace"`
51- ProjectRoot * string `graphql:"projectRoot"`
52- ProtectFromDeletion bool `graphql:"protectFromDeletion"`
53- Provider string `graphql:"provider"`
54- Repository string `graphql:"repository"`
55- RepositoryURL * string `graphql:"repositoryURL"`
56- RunnerImage * string `graphql:"runnerImage"`
57- Space string `graphql:"space"`
58- TerraformVersion * string `graphql:"terraformVersion"`
59- VendorConfig struct {
25+ ID string `graphql:"id"`
26+ Administrative bool `graphql:"administrative"`
27+ AfterApply []string `graphql:"afterApply"`
28+ AfterDestroy []string `graphql:"afterDestroy"`
29+ AfterInit []string `graphql:"afterInit"`
30+ AfterPerform []string `graphql:"afterPerform"`
31+ AfterPlan []string `graphql:"afterPlan"`
32+ AfterRun []string `graphql:"afterRun"`
33+ Autodeploy bool `graphql:"autodeploy"`
34+ Autoretry bool `graphql:"autoretry"`
35+ BeforeApply []string `graphql:"beforeApply"`
36+ BeforeDestroy []string `graphql:"beforeDestroy"`
37+ BeforeInit []string `graphql:"beforeInit"`
38+ BeforePerform []string `graphql:"beforePerform"`
39+ BeforePlan []string `graphql:"beforePlan"`
40+ Branch string `graphql:"branch"`
41+ Deleting bool `graphql:"deleting"`
42+ Description * string `graphql:"description"`
43+ IsDisabled bool `graphql:"isDisabled"`
44+ GitHubActionDeploy bool `graphql:"githubActionDeploy"`
45+ Integrations * Integrations `graphql:"integrations"`
46+ Labels []string `graphql:"labels"`
47+ LocalPreviewEnabled bool `graphql:"localPreviewEnabled"`
48+ ManagesStateFile bool `graphql:"managesStateFile"`
49+ Name string `graphql:"name"`
50+ Namespace string `graphql:"namespace"`
51+ ProjectRoot * string `graphql:"projectRoot"`
52+ AdditionalProjectGlobs []string `graphql:"additionalProjectGlobs"`
53+ ProtectFromDeletion bool `graphql:"protectFromDeletion"`
54+ Provider string `graphql:"provider"`
55+ Repository string `graphql:"repository"`
56+ RepositoryURL * string `graphql:"repositoryURL"`
57+ RunnerImage * string `graphql:"runnerImage"`
58+ Space string `graphql:"space"`
59+ TerraformVersion * string `graphql:"terraformVersion"`
60+ VendorConfig struct {
6061 Typename string `graphql:"__typename"`
6162 Ansible struct {
6263 Playbook string `graphql:"playbook"`
0 commit comments