@payfit/nx-core 5.13.0-ephemeral-feature-migrate-to-github-actions.2 → 5.13.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.
- package/dist/src/generators/init/globalFiles/.circleci/config.yml.template +282 -0
- package/dist/src/generators/init/globalFiles/.dockerignore.template +12 -0
- package/dist/src/generators/init/globalFiles/.npmrc.template +1 -0
- package/dist/src/generators/local-lambda-setup/files/scripts/invoke_lambda_local.sh.template +0 -0
- package/dist/src/utils/spacelift/lib/__generated__/gql.js +1 -1
- package/dist/src/utils/spacelift/lib/__generated__/graphql.d.ts +1416 -31
- package/dist/src/utils/spacelift/lib/__generated__/graphql.js +117 -9
- package/dist/src/utils/spacelift/lib/__generated__/graphql.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type Maybe<T> = T | null;
|
|
2
|
-
export type InputMaybe<T> =
|
|
2
|
+
export type InputMaybe<T> = T | null | undefined;
|
|
3
3
|
export type Exact<T extends {
|
|
4
4
|
[key: string]: unknown;
|
|
5
5
|
}> = {
|
|
@@ -69,14 +69,50 @@ export declare enum AccountType {
|
|
|
69
69
|
/** Individual user account. */
|
|
70
70
|
User = "USER"
|
|
71
71
|
}
|
|
72
|
+
export type AccountUpdateDefaultWorkerPoolRunnerImagesResult = {
|
|
73
|
+
__typename?: 'AccountUpdateDefaultWorkerPoolRunnerImagesResult';
|
|
74
|
+
privateWorkerPoolRunnerImage?: Maybe<Scalars['String']['output']>;
|
|
75
|
+
publicWorkerPoolRunnerImage?: Maybe<Scalars['String']['output']>;
|
|
76
|
+
};
|
|
72
77
|
/** Action represents an action in Spacelift that can be performed by a user. */
|
|
73
78
|
export declare enum Action {
|
|
74
79
|
ContextCreate = "CONTEXT_CREATE",
|
|
75
80
|
ContextDelete = "CONTEXT_DELETE",
|
|
76
81
|
ContextUpdate = "CONTEXT_UPDATE",
|
|
82
|
+
IntentDependenciesAdd = "INTENT_DEPENDENCIES_ADD",
|
|
83
|
+
IntentDependenciesRemove = "INTENT_DEPENDENCIES_REMOVE",
|
|
84
|
+
IntentPolicyCreate = "INTENT_POLICY_CREATE",
|
|
85
|
+
IntentPolicyDelete = "INTENT_POLICY_DELETE",
|
|
86
|
+
IntentPolicyUpdate = "INTENT_POLICY_UPDATE",
|
|
87
|
+
IntentProjectCloudIntegrationAttach = "INTENT_PROJECT_CLOUD_INTEGRATION_ATTACH",
|
|
88
|
+
IntentProjectCloudIntegrationDetach = "INTENT_PROJECT_CLOUD_INTEGRATION_DETACH",
|
|
89
|
+
IntentProjectConfigAdd = "INTENT_PROJECT_CONFIG_ADD",
|
|
90
|
+
IntentProjectConfigDelete = "INTENT_PROJECT_CONFIG_DELETE",
|
|
91
|
+
IntentProjectConfigUpdate = "INTENT_PROJECT_CONFIG_UPDATE",
|
|
92
|
+
IntentProjectCreate = "INTENT_PROJECT_CREATE",
|
|
93
|
+
IntentProjectDelete = "INTENT_PROJECT_DELETE",
|
|
94
|
+
IntentProjectDisable = "INTENT_PROJECT_DISABLE",
|
|
95
|
+
IntentProjectEnable = "INTENT_PROJECT_ENABLE",
|
|
96
|
+
IntentProjectLock = "INTENT_PROJECT_LOCK",
|
|
97
|
+
IntentProjectPolicyAttach = "INTENT_PROJECT_POLICY_ATTACH",
|
|
98
|
+
IntentProjectPolicyDetach = "INTENT_PROJECT_POLICY_DETACH",
|
|
99
|
+
IntentProjectUnlock = "INTENT_PROJECT_UNLOCK",
|
|
100
|
+
IntentProjectUpdate = "INTENT_PROJECT_UPDATE",
|
|
101
|
+
IntentResourceCreate = "INTENT_RESOURCE_CREATE",
|
|
102
|
+
IntentResourceDelete = "INTENT_RESOURCE_DELETE",
|
|
103
|
+
IntentResourceImport = "INTENT_RESOURCE_IMPORT",
|
|
104
|
+
IntentResourceOperationReview = "INTENT_RESOURCE_OPERATION_REVIEW",
|
|
105
|
+
IntentResourceRefresh = "INTENT_RESOURCE_REFRESH",
|
|
106
|
+
IntentResourceResume = "INTENT_RESOURCE_RESUME",
|
|
107
|
+
IntentResourceUpdate = "INTENT_RESOURCE_UPDATE",
|
|
108
|
+
IntentStateEject = "INTENT_STATE_EJECT",
|
|
109
|
+
IntentStateRead = "INTENT_STATE_READ",
|
|
110
|
+
ModuleCreate = "MODULE_CREATE",
|
|
77
111
|
ModuleDisable = "MODULE_DISABLE",
|
|
78
112
|
ModuleEnable = "MODULE_ENABLE",
|
|
113
|
+
ModuleMarkAsBad = "MODULE_MARK_AS_BAD",
|
|
79
114
|
ModulePublish = "MODULE_PUBLISH",
|
|
115
|
+
ModuleTriggerVersion = "MODULE_TRIGGER_VERSION",
|
|
80
116
|
RunCancel = "RUN_CANCEL",
|
|
81
117
|
RunCancelBlocking = "RUN_CANCEL_BLOCKING",
|
|
82
118
|
RunComment = "RUN_COMMENT",
|
|
@@ -110,11 +146,15 @@ export declare enum Action {
|
|
|
110
146
|
StackReslug = "STACK_RESLUG",
|
|
111
147
|
StackSetCurrentCommit = "STACK_SET_CURRENT_COMMIT",
|
|
112
148
|
StackSetStar = "STACK_SET_STAR",
|
|
149
|
+
StackStateDownload = "STACK_STATE_DOWNLOAD",
|
|
150
|
+
StackStateRead = "STACK_STATE_READ",
|
|
113
151
|
StackSyncCommit = "STACK_SYNC_COMMIT",
|
|
114
152
|
StackUnlock = "STACK_UNLOCK",
|
|
115
153
|
StackUnlockForce = "STACK_UNLOCK_FORCE",
|
|
116
154
|
StackUpdate = "STACK_UPDATE",
|
|
117
155
|
StackUploadLocalWorkspace = "STACK_UPLOAD_LOCAL_WORKSPACE",
|
|
156
|
+
StackWorkspaceLock = "STACK_WORKSPACE_LOCK",
|
|
157
|
+
StackWorkspaceUnlock = "STACK_WORKSPACE_UNLOCK",
|
|
118
158
|
TaskCreate = "TASK_CREATE",
|
|
119
159
|
TerraformProviderCreate = "TERRAFORM_PROVIDER_CREATE",
|
|
120
160
|
TerraformProviderDelete = "TERRAFORM_PROVIDER_DELETE",
|
|
@@ -299,6 +339,8 @@ export type ApiKeyRoleBinding = {
|
|
|
299
339
|
apiKeyID: Scalars['ID']['output'];
|
|
300
340
|
id: Scalars['ID']['output'];
|
|
301
341
|
role: Role;
|
|
342
|
+
space: Space;
|
|
343
|
+
/** @deprecated Use space field instead. */
|
|
302
344
|
spaceID: Scalars['ID']['output'];
|
|
303
345
|
};
|
|
304
346
|
export type ApiKeyRoleBindingBatchInput = {
|
|
@@ -416,6 +458,15 @@ export type AuditTrailApiKeyMetadata = {
|
|
|
416
458
|
/** The ID of the API key. */
|
|
417
459
|
id: Scalars['ID']['output'];
|
|
418
460
|
};
|
|
461
|
+
export type AuditTrailApiKeyRoleBindingMetadata = {
|
|
462
|
+
__typename?: 'AuditTrailAPIKeyRoleBindingMetadata';
|
|
463
|
+
/** The ULID of the API key. */
|
|
464
|
+
apiKeyULID: Scalars['ID']['output'];
|
|
465
|
+
/** The ULID of the role. */
|
|
466
|
+
roleULID: Scalars['ID']['output'];
|
|
467
|
+
/** The ULID of the space. */
|
|
468
|
+
spaceULID: Scalars['ID']['output'];
|
|
469
|
+
};
|
|
419
470
|
export type AuditTrailAwsIntegrationMetadata = {
|
|
420
471
|
__typename?: 'AuditTrailAWSIntegrationMetadata';
|
|
421
472
|
/** The ID of the integration. */
|
|
@@ -456,6 +507,13 @@ export type AuditTrailBitbucketDatacenterIntegrationMetadata = {
|
|
|
456
507
|
/** The name of the integration. */
|
|
457
508
|
name: Scalars['String']['output'];
|
|
458
509
|
};
|
|
510
|
+
export type AuditTrailBlueprintDeploymentMetadata = {
|
|
511
|
+
__typename?: 'AuditTrailBlueprintDeploymentMetadata';
|
|
512
|
+
/** The ID of the deployment. */
|
|
513
|
+
id: Scalars['ID']['output'];
|
|
514
|
+
/** The name of the deployment. */
|
|
515
|
+
name: Scalars['String']['output'];
|
|
516
|
+
};
|
|
459
517
|
export type AuditTrailBlueprintMetadata = {
|
|
460
518
|
__typename?: 'AuditTrailBlueprintMetadata';
|
|
461
519
|
/** The ID of the blueprint. */
|
|
@@ -510,6 +568,8 @@ export type AuditTrailEntry = {
|
|
|
510
568
|
* example a Blueprint that was used to create a stack. This is only populated for certain events.
|
|
511
569
|
*/
|
|
512
570
|
relatedResource?: Maybe<AuditTrailResource>;
|
|
571
|
+
/** RemoteIP is the IP address of the user who triggered the event */
|
|
572
|
+
remoteIP?: Maybe<Scalars['String']['output']>;
|
|
513
573
|
/** UpdatedAt is unix timestamp (in seconds) at which the entry was updated */
|
|
514
574
|
updatedAt: Scalars['Int']['output'];
|
|
515
575
|
};
|
|
@@ -563,6 +623,11 @@ export type AuditTrailGitlabIntegrationMetadata = {
|
|
|
563
623
|
/** The name of the integration. */
|
|
564
624
|
name: Scalars['String']['output'];
|
|
565
625
|
};
|
|
626
|
+
export type AuditTrailIntentProjectMetadata = {
|
|
627
|
+
__typename?: 'AuditTrailIntentProjectMetadata';
|
|
628
|
+
id: Scalars['ID']['output'];
|
|
629
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
630
|
+
};
|
|
566
631
|
export type AuditTrailLoginMetadata = {
|
|
567
632
|
__typename?: 'AuditTrailLoginMetadata';
|
|
568
633
|
/** The username. */
|
|
@@ -582,6 +647,16 @@ export type AuditTrailNamedWebhooksIntegrationMetadata = {
|
|
|
582
647
|
/** The name of the integration. */
|
|
583
648
|
name: Scalars['String']['output'];
|
|
584
649
|
};
|
|
650
|
+
export type AuditTrailPluginMetadata = {
|
|
651
|
+
__typename?: 'AuditTrailPluginMetadata';
|
|
652
|
+
id: Scalars['ID']['output'];
|
|
653
|
+
name: Scalars['String']['output'];
|
|
654
|
+
};
|
|
655
|
+
export type AuditTrailPluginTemplateMetadata = {
|
|
656
|
+
__typename?: 'AuditTrailPluginTemplateMetadata';
|
|
657
|
+
id: Scalars['ID']['output'];
|
|
658
|
+
name: Scalars['String']['output'];
|
|
659
|
+
};
|
|
585
660
|
export type AuditTrailPolicyMetadata = {
|
|
586
661
|
__typename?: 'AuditTrailPolicyMetadata';
|
|
587
662
|
/** The ID of the policy. */
|
|
@@ -603,16 +678,18 @@ export type AuditTrailResource = {
|
|
|
603
678
|
* Each AuditTrailResourceType has a corresponding metadata type containing additional information
|
|
604
679
|
* about that resource.
|
|
605
680
|
*/
|
|
606
|
-
export type AuditTrailResourceMetadata = AuditTrailApiKeyMetadata | AuditTrailAwsIntegrationMetadata | AuditTrailAccountMetadata | AuditTrailAzureDevOpsRepoIntegrationMetadata | AuditTrailAzureIntegrationMetadata | AuditTrailBitbucketCloudIntegrationMetadata | AuditTrailBitbucketDatacenterIntegrationMetadata | AuditTrailBlueprintMetadata | AuditTrailBlueprintVersionedGroupMetadata | AuditTrailContextMetadata | AuditTrailDriftDetectionIntegrationMetadata | AuditTrailExternalIntegrationMetadata | AuditTrailGpgKeyMetadata | AuditTrailGenericFormMetadata | AuditTrailGithubAppInstallationMetadata | AuditTrailGithubEnterpriseIntegrationMetadata | AuditTrailGitlabIntegrationMetadata | AuditTrailLoginMetadata | AuditTrailModuleMetadata | AuditTrailNamedWebhooksIntegrationMetadata | AuditTrailPolicyMetadata | AuditTrailRunMetadata | AuditTrailScheduledDeleteMetadata | AuditTrailScheduledRunMetadata | AuditTrailScheduledTaskMetadata | AuditTrailSecurityKeyMetadata | AuditTrailSessionMetadata | AuditTrailSpaceMetadata | AuditTrailStackMetadata | AuditTrailTaskMetadata | AuditTrailTerraformProviderMetadata | AuditTrailTerraformProviderVersionMetadata | AuditTrailUserGroupIntegrationMetadata | AuditTrailUserGroupMetadata | AuditTrailUserMetadata | AuditTrailVersionMetadata | AuditTrailWebhookMetadata | AuditTrailWorkerMetadata | AuditTrailWorkerPoolMetadata;
|
|
681
|
+
export type AuditTrailResourceMetadata = AuditTrailApiKeyMetadata | AuditTrailApiKeyRoleBindingMetadata | AuditTrailAwsIntegrationMetadata | AuditTrailAccountMetadata | AuditTrailAzureDevOpsRepoIntegrationMetadata | AuditTrailAzureIntegrationMetadata | AuditTrailBitbucketCloudIntegrationMetadata | AuditTrailBitbucketDatacenterIntegrationMetadata | AuditTrailBlueprintDeploymentMetadata | AuditTrailBlueprintMetadata | AuditTrailBlueprintVersionedGroupMetadata | AuditTrailContextMetadata | AuditTrailDriftDetectionIntegrationMetadata | AuditTrailExternalIntegrationMetadata | AuditTrailGpgKeyMetadata | AuditTrailGenericFormMetadata | AuditTrailGithubAppInstallationMetadata | AuditTrailGithubEnterpriseIntegrationMetadata | AuditTrailGitlabIntegrationMetadata | AuditTrailIntentProjectMetadata | AuditTrailLoginMetadata | AuditTrailModuleMetadata | AuditTrailNamedWebhooksIntegrationMetadata | AuditTrailPluginMetadata | AuditTrailPluginTemplateMetadata | AuditTrailPolicyMetadata | AuditTrailRoleMetadata | AuditTrailRunMetadata | AuditTrailScheduledDeleteMetadata | AuditTrailScheduledRunMetadata | AuditTrailScheduledTaskMetadata | AuditTrailSecurityKeyMetadata | AuditTrailSessionMetadata | AuditTrailSpaceMetadata | AuditTrailStackMetadata | AuditTrailStackRoleBindingMetadata | AuditTrailTaskMetadata | AuditTrailTerraformProviderMetadata | AuditTrailTerraformProviderVersionMetadata | AuditTrailUserGroupIntegrationMetadata | AuditTrailUserGroupMetadata | AuditTrailUserGroupRoleBindingMetadata | AuditTrailUserGuideMetadata | AuditTrailUserMetadata | AuditTrailUserRoleBindingMetadata | AuditTrailVersionMetadata | AuditTrailWebhookMetadata | AuditTrailWorkerMetadata | AuditTrailWorkerPoolMetadata;
|
|
607
682
|
export declare enum AuditTrailResourceType {
|
|
608
683
|
Account = "ACCOUNT",
|
|
609
684
|
ApiKey = "API_KEY",
|
|
685
|
+
ApiKeyRoleBinding = "API_KEY_ROLE_BINDING",
|
|
610
686
|
AwsIntegration = "AWS_INTEGRATION",
|
|
611
687
|
AzureDevopsRepoIntegration = "AZURE_DEVOPS_REPO_INTEGRATION",
|
|
612
688
|
AzureIntegration = "AZURE_INTEGRATION",
|
|
613
689
|
BitbucketCloudIntegration = "BITBUCKET_CLOUD_INTEGRATION",
|
|
614
690
|
BitbucketDatacenterIntegration = "BITBUCKET_DATACENTER_INTEGRATION",
|
|
615
691
|
Blueprint = "BLUEPRINT",
|
|
692
|
+
BlueprintDeployment = "BLUEPRINT_DEPLOYMENT",
|
|
616
693
|
BlueprintVersionedGroup = "BLUEPRINT_VERSIONED_GROUP",
|
|
617
694
|
Context = "CONTEXT",
|
|
618
695
|
DriftDetectionIntegration = "DRIFT_DETECTION_INTEGRATION",
|
|
@@ -622,11 +699,15 @@ export declare enum AuditTrailResourceType {
|
|
|
622
699
|
GithubEnterpriseIntegration = "GITHUB_ENTERPRISE_INTEGRATION",
|
|
623
700
|
GitlabIntegration = "GITLAB_INTEGRATION",
|
|
624
701
|
GpgKey = "GPG_KEY",
|
|
702
|
+
IntentProject = "INTENT_PROJECT",
|
|
625
703
|
Login = "LOGIN",
|
|
626
704
|
Module = "MODULE",
|
|
627
705
|
NamedWebhooksIntegration = "NAMED_WEBHOOKS_INTEGRATION",
|
|
628
706
|
Notification = "NOTIFICATION",
|
|
707
|
+
Plugin = "PLUGIN",
|
|
708
|
+
PluginTemplate = "PLUGIN_TEMPLATE",
|
|
629
709
|
Policy = "POLICY",
|
|
710
|
+
Role = "ROLE",
|
|
630
711
|
Run = "RUN",
|
|
631
712
|
ScheduledDelete = "SCHEDULED_DELETE",
|
|
632
713
|
ScheduledRun = "SCHEDULED_RUN",
|
|
@@ -635,6 +716,7 @@ export declare enum AuditTrailResourceType {
|
|
|
635
716
|
Session = "SESSION",
|
|
636
717
|
Space = "SPACE",
|
|
637
718
|
Stack = "STACK",
|
|
719
|
+
StackRoleBinding = "STACK_ROLE_BINDING",
|
|
638
720
|
Task = "TASK",
|
|
639
721
|
TerraformProvider = "TERRAFORM_PROVIDER",
|
|
640
722
|
TerraformProviderVersion = "TERRAFORM_PROVIDER_VERSION",
|
|
@@ -642,11 +724,23 @@ export declare enum AuditTrailResourceType {
|
|
|
642
724
|
User = "USER",
|
|
643
725
|
UserGroup = "USER_GROUP",
|
|
644
726
|
UserGroupIntegration = "USER_GROUP_INTEGRATION",
|
|
727
|
+
UserGroupRoleBinding = "USER_GROUP_ROLE_BINDING",
|
|
728
|
+
UserGuide = "USER_GUIDE",
|
|
729
|
+
UserRoleBinding = "USER_ROLE_BINDING",
|
|
645
730
|
Version = "VERSION",
|
|
646
731
|
Webhook = "WEBHOOK",
|
|
647
732
|
Worker = "WORKER",
|
|
648
733
|
WorkerPool = "WORKER_POOL"
|
|
649
734
|
}
|
|
735
|
+
export type AuditTrailRoleMetadata = {
|
|
736
|
+
__typename?: 'AuditTrailRoleMetadata';
|
|
737
|
+
/** The ID of the role. */
|
|
738
|
+
id: Scalars['ID']['output'];
|
|
739
|
+
/** The name of the role. */
|
|
740
|
+
name: Scalars['String']['output'];
|
|
741
|
+
/** The slug of the role. */
|
|
742
|
+
slug: Scalars['String']['output'];
|
|
743
|
+
};
|
|
650
744
|
export type AuditTrailRunMetadata = {
|
|
651
745
|
__typename?: 'AuditTrailRunMetadata';
|
|
652
746
|
/** The ID of the run. */
|
|
@@ -700,6 +794,19 @@ export type AuditTrailStackMetadata = {
|
|
|
700
794
|
/** The name of the stack. */
|
|
701
795
|
name: Scalars['String']['output'];
|
|
702
796
|
};
|
|
797
|
+
export type AuditTrailStackRoleBindingMetadata = {
|
|
798
|
+
__typename?: 'AuditTrailStackRoleBindingMetadata';
|
|
799
|
+
/** The ID of the stack role binding. */
|
|
800
|
+
id: Scalars['ID']['output'];
|
|
801
|
+
/** The ULID of the role. */
|
|
802
|
+
roleULID: Scalars['ID']['output'];
|
|
803
|
+
/** The ID of the space. */
|
|
804
|
+
spaceID: Scalars['ID']['output'];
|
|
805
|
+
/** The ID of the stack. */
|
|
806
|
+
stackID: Scalars['ID']['output'];
|
|
807
|
+
/** The name of the stack. */
|
|
808
|
+
stackName: Scalars['String']['output'];
|
|
809
|
+
};
|
|
703
810
|
export type AuditTrailTaskMetadata = {
|
|
704
811
|
__typename?: 'AuditTrailTaskMetadata';
|
|
705
812
|
/** The ID of the task. */
|
|
@@ -735,11 +842,44 @@ export type AuditTrailUserGroupMetadata = {
|
|
|
735
842
|
/** The name of the group. */
|
|
736
843
|
name: Scalars['String']['output'];
|
|
737
844
|
};
|
|
845
|
+
export type AuditTrailUserGroupRoleBindingMetadata = {
|
|
846
|
+
__typename?: 'AuditTrailUserGroupRoleBindingMetadata';
|
|
847
|
+
/** The ID of the user group role binding. */
|
|
848
|
+
id: Scalars['ID']['output'];
|
|
849
|
+
/** The ULID of the role. */
|
|
850
|
+
roleULID: Scalars['ID']['output'];
|
|
851
|
+
/** The ID of the space. */
|
|
852
|
+
spaceID: Scalars['ID']['output'];
|
|
853
|
+
/** The ID of the user group. */
|
|
854
|
+
userGroupID: Scalars['ID']['output'];
|
|
855
|
+
/** The name of the user group. */
|
|
856
|
+
userGroupName: Scalars['String']['output'];
|
|
857
|
+
};
|
|
858
|
+
export type AuditTrailUserGuideMetadata = {
|
|
859
|
+
__typename?: 'AuditTrailUserGuideMetadata';
|
|
860
|
+
/** The ID of the user guide progress. */
|
|
861
|
+
id: Scalars['ID']['output'];
|
|
862
|
+
/** The name of the user guide. */
|
|
863
|
+
name: Scalars['String']['output'];
|
|
864
|
+
/** The status of the user guide progress. */
|
|
865
|
+
status: UserGuideStatus;
|
|
866
|
+
};
|
|
738
867
|
export type AuditTrailUserMetadata = {
|
|
739
868
|
__typename?: 'AuditTrailUserMetadata';
|
|
740
869
|
/** The user's username. */
|
|
741
870
|
username: Scalars['String']['output'];
|
|
742
871
|
};
|
|
872
|
+
export type AuditTrailUserRoleBindingMetadata = {
|
|
873
|
+
__typename?: 'AuditTrailUserRoleBindingMetadata';
|
|
874
|
+
/** The ID of the user role binding. */
|
|
875
|
+
id: Scalars['ID']['output'];
|
|
876
|
+
/** The ULID of the role. */
|
|
877
|
+
roleULID: Scalars['ID']['output'];
|
|
878
|
+
/** The ID of the space. */
|
|
879
|
+
spaceID: Scalars['ID']['output'];
|
|
880
|
+
/** The username of the user. */
|
|
881
|
+
username: Scalars['String']['output'];
|
|
882
|
+
};
|
|
743
883
|
export type AuditTrailVersionMetadata = {
|
|
744
884
|
__typename?: 'AuditTrailVersionMetadata';
|
|
745
885
|
/** The ID of the version. */
|
|
@@ -772,6 +912,7 @@ export type AuditTrailWebhook = {
|
|
|
772
912
|
* notifications.
|
|
773
913
|
*/
|
|
774
914
|
includeRuns: Scalars['Boolean']['output'];
|
|
915
|
+
retryOnFailure: Scalars['Boolean']['output'];
|
|
775
916
|
/**
|
|
776
917
|
* Secret used to validate incoming webhook.
|
|
777
918
|
* @deprecated This property is no longer used.
|
|
@@ -801,6 +942,7 @@ export type AuditTrailWebhookInput = {
|
|
|
801
942
|
* notifications.
|
|
802
943
|
*/
|
|
803
944
|
includeRuns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
945
|
+
retryOnFailure?: InputMaybe<Scalars['Boolean']['input']>;
|
|
804
946
|
/** Secret used to validate incoming webhook. */
|
|
805
947
|
secret?: InputMaybe<Scalars['String']['input']>;
|
|
806
948
|
};
|
|
@@ -876,6 +1018,8 @@ export type AwsIntegration = Notifiable & {
|
|
|
876
1018
|
attachedStack?: Maybe<AwsIntegrationStackAttachment>;
|
|
877
1019
|
/** The stacks attached to this integration. */
|
|
878
1020
|
attachedStacks: Array<AwsIntegrationStackAttachment>;
|
|
1021
|
+
/** Enable support for autoattach labels */
|
|
1022
|
+
autoattachEnabled: Scalars['Boolean']['output'];
|
|
879
1023
|
/** Duration in seconds for which the assumed role credentials should be valid. */
|
|
880
1024
|
durationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
881
1025
|
/** AWS external ID (only valid when generating credentials in private workers). */
|
|
@@ -924,15 +1068,35 @@ export type AwsIntegrationExternalIdForStackArgs = {
|
|
|
924
1068
|
stackId: Scalars['ID']['input'];
|
|
925
1069
|
write: Scalars['Boolean']['input'];
|
|
926
1070
|
};
|
|
1071
|
+
/** AwsIntegrationIntentProjectAttachment represents the attachment of an AWS integration to an intent project. */
|
|
1072
|
+
export type AwsIntegrationIntentProjectAttachment = {
|
|
1073
|
+
__typename?: 'AwsIntegrationIntentProjectAttachment';
|
|
1074
|
+
/** The AWS integration attached to the intent project. */
|
|
1075
|
+
awsIntegration: AwsIntegration;
|
|
1076
|
+
/** AWS region where this attachment should be used. */
|
|
1077
|
+
awsRegion: Scalars['String']['output'];
|
|
1078
|
+
/** Globally unique attachment identifier. */
|
|
1079
|
+
id: Scalars['ID']['output'];
|
|
1080
|
+
/** The intent project the AWS integration is attached to. */
|
|
1081
|
+
intentProject: IntentProject;
|
|
1082
|
+
/** True if this attachment is used for read operations. */
|
|
1083
|
+
read: Scalars['Boolean']['output'];
|
|
1084
|
+
/** True if this attachment is used for write operations. */
|
|
1085
|
+
write: Scalars['Boolean']['output'];
|
|
1086
|
+
};
|
|
927
1087
|
/** AwsIntegrationStackAttachment is the stack attachment viewed from the integration. */
|
|
928
1088
|
export type AwsIntegrationStackAttachment = {
|
|
929
1089
|
__typename?: 'AwsIntegrationStackAttachment';
|
|
930
1090
|
/** Globally unique attachment identifier. */
|
|
931
1091
|
id: Scalars['ID']['output'];
|
|
1092
|
+
/** Whether the context is autoattached to the stack. */
|
|
1093
|
+
isAutoattached: Scalars['Boolean']['output'];
|
|
932
1094
|
/** True if the attached stack is type of Module. */
|
|
933
1095
|
isModule: Scalars['Boolean']['output'];
|
|
934
1096
|
/** Whether the integration is used for read operations. */
|
|
935
1097
|
read: Scalars['Boolean']['output'];
|
|
1098
|
+
/** Details of the space the attached stack belongs to. */
|
|
1099
|
+
spaceDetails: Space;
|
|
936
1100
|
/** Slug of the attached stack. */
|
|
937
1101
|
stackId: Scalars['ID']['output'];
|
|
938
1102
|
/** Name of the attached stack. */
|
|
@@ -950,6 +1114,7 @@ export type AzureDevOpsRepoIntegration = {
|
|
|
950
1114
|
/** The API host where requests will be sent. */
|
|
951
1115
|
organizationURL: Scalars['String']['output'];
|
|
952
1116
|
space?: Maybe<Space>;
|
|
1117
|
+
useGitCheckout: Scalars['Boolean']['output'];
|
|
953
1118
|
userFacingHost: Scalars['String']['output'];
|
|
954
1119
|
vcsChecks: VcsCheck;
|
|
955
1120
|
/** Autogenerated password for Azure DevOps webhook integration */
|
|
@@ -969,6 +1134,8 @@ export type AzureIntegration = {
|
|
|
969
1134
|
attachedStack?: Maybe<AzureIntegrationStackAttachment>;
|
|
970
1135
|
/** The stacks attached to this integration. */
|
|
971
1136
|
attachedStacks: Array<AzureIntegrationStackAttachment>;
|
|
1137
|
+
/** Enable support for autoattach labels */
|
|
1138
|
+
autoattachEnabled: Scalars['Boolean']['output'];
|
|
972
1139
|
/** Unix timestamp representing the integration creation. */
|
|
973
1140
|
createdAt: Scalars['Int']['output'];
|
|
974
1141
|
/** The default subscription ID to use, if one isn't specified at the stack level. */
|
|
@@ -986,6 +1153,14 @@ export type AzureIntegration = {
|
|
|
986
1153
|
labels: Array<Scalars['String']['output']>;
|
|
987
1154
|
/** The friendly name of the integration. */
|
|
988
1155
|
name: Scalars['String']['output'];
|
|
1156
|
+
/** The Azure AD object ID. */
|
|
1157
|
+
objectId: Scalars['String']['output'];
|
|
1158
|
+
/**
|
|
1159
|
+
* The Object ID of the service principal in the customer's Azure AD tenant. This is only
|
|
1160
|
+
* populated after admin consent has been granted. Returns null if admin consent has not been
|
|
1161
|
+
* provided or if the service principal cannot be found.
|
|
1162
|
+
*/
|
|
1163
|
+
servicePrincipalObjectId?: Maybe<Scalars['String']['output']>;
|
|
989
1164
|
/** ID of the space this AzureIntegration belongs to. */
|
|
990
1165
|
space: Scalars['ID']['output'];
|
|
991
1166
|
/** Details of the space this Azure integration belongs to. */
|
|
@@ -1004,10 +1179,14 @@ export type AzureIntegrationStackAttachment = {
|
|
|
1004
1179
|
__typename?: 'AzureIntegrationStackAttachment';
|
|
1005
1180
|
/** Globally unique attachment identifier. */
|
|
1006
1181
|
id: Scalars['ID']['output'];
|
|
1182
|
+
/** Whether the context is autoattached to the stack. */
|
|
1183
|
+
isAutoattached: Scalars['Boolean']['output'];
|
|
1007
1184
|
/** True if the attached stack is type of Module. */
|
|
1008
1185
|
isModule: Scalars['Boolean']['output'];
|
|
1009
1186
|
/** True if this attachment is used for read operations. */
|
|
1010
1187
|
read: Scalars['Boolean']['output'];
|
|
1188
|
+
/** Details of the space the attached stack belongs to. */
|
|
1189
|
+
spaceDetails: Space;
|
|
1011
1190
|
/** Slug of the attached stack. */
|
|
1012
1191
|
stackId: Scalars['ID']['output'];
|
|
1013
1192
|
/** Name of the attached stack. */
|
|
@@ -1164,6 +1343,7 @@ export declare enum BillingTierFeature {
|
|
|
1164
1343
|
/** Obsolete - you can check for the AUDITING feature instead */
|
|
1165
1344
|
AuditWebhooks = "AUDIT_WEBHOOKS",
|
|
1166
1345
|
BackstageIntegration = "BACKSTAGE_INTEGRATION",
|
|
1346
|
+
BillingUsage = "BILLING_USAGE",
|
|
1167
1347
|
Blueprints = "BLUEPRINTS",
|
|
1168
1348
|
CanUpdateSsoSaml = "CAN_UPDATE_SSO_SAML",
|
|
1169
1349
|
CloudCredentialGeneration = "CLOUD_CREDENTIAL_GENERATION",
|
|
@@ -1189,16 +1369,33 @@ export declare enum BillingTierFeature {
|
|
|
1189
1369
|
export type BitbucketCloudIntegration = {
|
|
1190
1370
|
__typename?: 'BitbucketCloudIntegration';
|
|
1191
1371
|
description: Scalars['String']['output'];
|
|
1372
|
+
/** Email to be used for authentication. */
|
|
1373
|
+
email: Scalars['String']['output'];
|
|
1192
1374
|
id: Scalars['ID']['output'];
|
|
1193
1375
|
isDefault: Scalars['Boolean']['output'];
|
|
1194
1376
|
labels: Array<Scalars['String']['output']>;
|
|
1195
1377
|
name: Scalars['String']['output'];
|
|
1196
1378
|
space?: Maybe<Space>;
|
|
1379
|
+
/**
|
|
1380
|
+
* Indicates whether the integration should use git checkout. If false source code will be downloaded using the VCS API.
|
|
1381
|
+
* For Bitbucket Cloud this is always true because tarball download does not work with API Tokens.
|
|
1382
|
+
*/
|
|
1383
|
+
useGitCheckout: Scalars['Boolean']['output'];
|
|
1197
1384
|
/** Username to be used for authentication. */
|
|
1198
1385
|
username: Scalars['String']['output'];
|
|
1199
1386
|
vcsChecks: VcsCheck;
|
|
1200
1387
|
webhookUrl: Scalars['String']['output'];
|
|
1201
1388
|
};
|
|
1389
|
+
export type BitbucketCloudIntegrationInput = {
|
|
1390
|
+
apiToken: Scalars['String']['input'];
|
|
1391
|
+
customInput?: InputMaybe<CustomVcsInput>;
|
|
1392
|
+
email: Scalars['String']['input'];
|
|
1393
|
+
};
|
|
1394
|
+
export type BitbucketCloudIntegrationUpdateInput = {
|
|
1395
|
+
apiToken?: InputMaybe<Scalars['String']['input']>;
|
|
1396
|
+
customInput?: InputMaybe<CustomVcsUpdateInput>;
|
|
1397
|
+
email: Scalars['String']['input'];
|
|
1398
|
+
};
|
|
1202
1399
|
/** BitbucketDatacenterIntegration shows Bitbucket Datacenter integration details. */
|
|
1203
1400
|
export type BitbucketDatacenterIntegration = {
|
|
1204
1401
|
__typename?: 'BitbucketDatacenterIntegration';
|
|
@@ -1210,6 +1407,7 @@ export type BitbucketDatacenterIntegration = {
|
|
|
1210
1407
|
labels: Array<Scalars['String']['output']>;
|
|
1211
1408
|
name: Scalars['String']['output'];
|
|
1212
1409
|
space?: Maybe<Space>;
|
|
1410
|
+
useGitCheckout: Scalars['Boolean']['output'];
|
|
1213
1411
|
/** User Facing Host which will be user for all user-facing URLs displayed in the Spacelift UI. */
|
|
1214
1412
|
userFacingHost: Scalars['String']['output'];
|
|
1215
1413
|
/** Username which will be used to authenticate requests for cloning repositories. */
|
|
@@ -1282,12 +1480,37 @@ export type BlueprintCreateInput = {
|
|
|
1282
1480
|
/** Blueprint body */
|
|
1283
1481
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
1284
1482
|
};
|
|
1285
|
-
export
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1483
|
+
export type BlueprintDeployment = {
|
|
1484
|
+
__typename?: 'BlueprintDeployment';
|
|
1485
|
+
/** Deployment description */
|
|
1486
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1487
|
+
/** True if the deployment is currently being destroyed */
|
|
1488
|
+
destroying: Scalars['Boolean']['output'];
|
|
1489
|
+
/** Deployment ID */
|
|
1490
|
+
id: Scalars['ID']['output'];
|
|
1491
|
+
/** Deployment name */
|
|
1492
|
+
name: Scalars['String']['output'];
|
|
1493
|
+
};
|
|
1494
|
+
export type BlueprintDeploymentConnection = {
|
|
1495
|
+
__typename?: 'BlueprintDeploymentConnection';
|
|
1496
|
+
cursor: Scalars['String']['output'];
|
|
1497
|
+
node: BlueprintDeployment;
|
|
1498
|
+
};
|
|
1499
|
+
export type BlueprintDeploymentCreateInput = {
|
|
1500
|
+
/** Deployment description */
|
|
1501
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1502
|
+
/** Deployment inputs */
|
|
1503
|
+
inputs: Array<BlueprintDeploymentCreateInputPair>;
|
|
1504
|
+
/** Deployment name */
|
|
1505
|
+
name: Scalars['String']['input'];
|
|
1506
|
+
/** Space where the blueprint will be deployed */
|
|
1507
|
+
space: Scalars['ID']['input'];
|
|
1508
|
+
};
|
|
1509
|
+
export type BlueprintDeploymentCreateInputPair = {
|
|
1510
|
+
id: Scalars['String']['input'];
|
|
1511
|
+
sensitive: Scalars['Boolean']['input'];
|
|
1512
|
+
value: Scalars['String']['input'];
|
|
1513
|
+
};
|
|
1291
1514
|
export type BlueprintInput = {
|
|
1292
1515
|
__typename?: 'BlueprintInput';
|
|
1293
1516
|
/** Default of the blueprint input. */
|
|
@@ -1376,26 +1599,56 @@ export declare enum BlueprintState {
|
|
|
1376
1599
|
/** Invalid "zero value" for the type. */
|
|
1377
1600
|
Unknown = "UNKNOWN"
|
|
1378
1601
|
}
|
|
1602
|
+
export type BlueprintVersionCreateInput = {
|
|
1603
|
+
/** ID of the blueprint versioned group this version belongs to. */
|
|
1604
|
+
blueprintID: Scalars['ID']['input'];
|
|
1605
|
+
/** Blueprint version description. */
|
|
1606
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1607
|
+
/** Labels associated with the blueprint version. */
|
|
1608
|
+
labels: Array<Scalars['String']['input']>;
|
|
1609
|
+
/** Blueprint version state (draft, published). */
|
|
1610
|
+
state: BlueprintState;
|
|
1611
|
+
/** Blueprint template body. */
|
|
1612
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
1613
|
+
/** Version number. */
|
|
1614
|
+
versionNumber: Scalars['String']['input'];
|
|
1615
|
+
};
|
|
1616
|
+
export type BlueprintVersionUpdateInput = {
|
|
1617
|
+
/** Blueprint version description. */
|
|
1618
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1619
|
+
/** Labels associated with the blueprint version. */
|
|
1620
|
+
labels: Array<Scalars['String']['input']>;
|
|
1621
|
+
/** Blueprint version state (draft, published). */
|
|
1622
|
+
state: BlueprintState;
|
|
1623
|
+
/** Blueprint template body. */
|
|
1624
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
1625
|
+
/** Version number. */
|
|
1626
|
+
versionNumber: Scalars['String']['input'];
|
|
1627
|
+
};
|
|
1379
1628
|
export type BlueprintVersionedGroup = {
|
|
1380
1629
|
__typename?: 'BlueprintVersionedGroup';
|
|
1381
|
-
/** Get a single blueprint
|
|
1382
|
-
|
|
1383
|
-
/**
|
|
1384
|
-
|
|
1630
|
+
/** Get a single blueprint version. */
|
|
1631
|
+
blueprintVersion?: Maybe<Blueprint>;
|
|
1632
|
+
/** Whether the blueprint group can be deleted (has no versions). */
|
|
1633
|
+
canDelete: Scalars['Boolean']['output'];
|
|
1385
1634
|
/** CreatedAt is unix timestamp (in seconds) at which the blueprint was created */
|
|
1386
1635
|
createdAt: Scalars['Int']['output'];
|
|
1636
|
+
/** Number of deployments for this blueprint group. */
|
|
1637
|
+
deploymentsCount: Scalars['Int']['output'];
|
|
1387
1638
|
/** Description of the blueprint. */
|
|
1388
1639
|
description?: Maybe<Scalars['String']['output']>;
|
|
1389
1640
|
/** Blueprint ID, used to identify a blueprint by name (slug) */
|
|
1390
1641
|
id: Scalars['ID']['output'];
|
|
1391
1642
|
/** Labels associated with the blueprint. */
|
|
1392
1643
|
labels: Array<Scalars['String']['output']>;
|
|
1644
|
+
/** The latest blueprint version number based on creation time. */
|
|
1645
|
+
latestBlueprintVersion?: Maybe<Scalars['String']['output']>;
|
|
1393
1646
|
/** Name of the blueprint */
|
|
1394
1647
|
name: Scalars['String']['output'];
|
|
1395
|
-
/** Search for
|
|
1396
|
-
|
|
1397
|
-
/** Get search suggestions for
|
|
1398
|
-
|
|
1648
|
+
/** Search for blueprint versions. */
|
|
1649
|
+
searchBlueprintVersions: SearchBlueprintsOutput;
|
|
1650
|
+
/** Get search suggestions for blueprint versions. */
|
|
1651
|
+
searchBlueprintVersionsSuggestions: SearchSuggestionsOutput;
|
|
1399
1652
|
/** Space to which this blueprint belongs. */
|
|
1400
1653
|
space: Space;
|
|
1401
1654
|
/** Unique identifier of the blueprint (ULID) */
|
|
@@ -1403,16 +1656,28 @@ export type BlueprintVersionedGroup = {
|
|
|
1403
1656
|
/** UpdatedAt is unix timestamp (in seconds) at which the blueprint was updated */
|
|
1404
1657
|
updatedAt: Scalars['Int']['output'];
|
|
1405
1658
|
};
|
|
1406
|
-
export type
|
|
1659
|
+
export type BlueprintVersionedGroupBlueprintVersionArgs = {
|
|
1407
1660
|
id: Scalars['ID']['input'];
|
|
1408
1661
|
};
|
|
1409
|
-
export type
|
|
1662
|
+
export type BlueprintVersionedGroupSearchBlueprintVersionsArgs = {
|
|
1410
1663
|
input: SearchInput;
|
|
1411
1664
|
};
|
|
1412
|
-
export type
|
|
1665
|
+
export type BlueprintVersionedGroupSearchBlueprintVersionsSuggestionsArgs = {
|
|
1413
1666
|
input: SearchSuggestionsInput;
|
|
1414
1667
|
};
|
|
1415
1668
|
export type BlueprintVersionedGroupCreateInput = {
|
|
1669
|
+
/** Blueprint description */
|
|
1670
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
1671
|
+
/** Initial version details */
|
|
1672
|
+
initialVersion?: InputMaybe<InitialBlueprintVersionInput>;
|
|
1673
|
+
/** Blueprint labels */
|
|
1674
|
+
labels: Array<Scalars['String']['input']>;
|
|
1675
|
+
/** Blueprint name */
|
|
1676
|
+
name: Scalars['String']['input'];
|
|
1677
|
+
/** Space of the blueprint. */
|
|
1678
|
+
space: Scalars['ID']['input'];
|
|
1679
|
+
};
|
|
1680
|
+
export type BlueprintVersionedGroupUpdateInput = {
|
|
1416
1681
|
/** Blueprint description */
|
|
1417
1682
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
1418
1683
|
/** Blueprint labels */
|
|
@@ -1530,6 +1795,8 @@ export type Commit = {
|
|
|
1530
1795
|
*/
|
|
1531
1796
|
export type ConfigElement = {
|
|
1532
1797
|
__typename?: 'ConfigElement';
|
|
1798
|
+
/** Category of the config element (e.g., Spacelift-managed environment variables). */
|
|
1799
|
+
category?: Maybe<ConfigElementCategory>;
|
|
1533
1800
|
/** SHA256 checksum of the value. */
|
|
1534
1801
|
checksum: Scalars['String']['output'];
|
|
1535
1802
|
/**
|
|
@@ -1560,6 +1827,10 @@ export type ConfigElement = {
|
|
|
1560
1827
|
*/
|
|
1561
1828
|
writeOnly: Scalars['Boolean']['output'];
|
|
1562
1829
|
};
|
|
1830
|
+
export declare enum ConfigElementCategory {
|
|
1831
|
+
/** Element is managed by Spacelift (API tokens, OIDC tokens, TF_VAR_spacelift_* metadata). */
|
|
1832
|
+
SpaceliftEnvironment = "SPACELIFT_ENVIRONMENT"
|
|
1833
|
+
}
|
|
1563
1834
|
export type ConfigElementWithSource = {
|
|
1564
1835
|
__typename?: 'ConfigElementWithSource';
|
|
1565
1836
|
/** Optional context if the element is coming from a context. */
|
|
@@ -1609,6 +1880,11 @@ export type Context = Hookable & {
|
|
|
1609
1880
|
labels: Array<Scalars['String']['output']>;
|
|
1610
1881
|
/** Fancy, mutable name of the context to show in the UI. */
|
|
1611
1882
|
name: Scalars['String']['output'];
|
|
1883
|
+
/**
|
|
1884
|
+
* Plugin that is managing the context.
|
|
1885
|
+
* Used to indicate that modifications are restricted by a plugin action.
|
|
1886
|
+
*/
|
|
1887
|
+
plugin?: Maybe<Plugin>;
|
|
1612
1888
|
/** ID of the space this Context belongs to. */
|
|
1613
1889
|
space: Scalars['ID']['output'];
|
|
1614
1890
|
/** Details of the space this Context belongs to. */
|
|
@@ -1672,6 +1948,8 @@ export type CustomVcsInput = {
|
|
|
1672
1948
|
name: Scalars['String']['input'];
|
|
1673
1949
|
/** The space this VCS integration belongs to. */
|
|
1674
1950
|
spaceID: Scalars['ID']['input'];
|
|
1951
|
+
/** Indicates whether the integration should use git checkout. If false source code will be downloaded using the VCS API. */
|
|
1952
|
+
useGitCheckout?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1675
1953
|
/** vcsChecks contains all the VCS checks enabled for this integration. If not provided, defaults to INDIVIDUAL */
|
|
1676
1954
|
vcsChecks?: InputMaybe<VcsCheck>;
|
|
1677
1955
|
};
|
|
@@ -1687,6 +1965,8 @@ export type CustomVcsUpdateInput = {
|
|
|
1687
1965
|
* the update.
|
|
1688
1966
|
*/
|
|
1689
1967
|
space: Scalars['ID']['input'];
|
|
1968
|
+
/** Indicates whether the integration should use git checkout. If false source code will be downloaded using the VCS API. */
|
|
1969
|
+
useGitCheckout?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1690
1970
|
/** vcsChecks contains all the VCS checks enabled for this integration. If not provided, defaults to 1 (Individual). */
|
|
1691
1971
|
vcsChecks?: InputMaybe<VcsCheck>;
|
|
1692
1972
|
};
|
|
@@ -2136,6 +2416,7 @@ export type GithubEnterpriseIntegration = {
|
|
|
2136
2416
|
labels: Array<Scalars['String']['output']>;
|
|
2137
2417
|
name: Scalars['String']['output'];
|
|
2138
2418
|
space?: Maybe<Space>;
|
|
2419
|
+
useGitCheckout: Scalars['Boolean']['output'];
|
|
2139
2420
|
userFacingHost: Scalars['String']['output'];
|
|
2140
2421
|
vcsChecks: VcsCheck;
|
|
2141
2422
|
webhookSecret: Scalars['String']['output'];
|
|
@@ -2155,6 +2436,9 @@ export type GithubEnterpriseIntegrationInstallation = {
|
|
|
2155
2436
|
/** GithubIntegration shows build-in GitHub integration details. */
|
|
2156
2437
|
export type GithubIntegration = {
|
|
2157
2438
|
__typename?: 'GithubIntegration';
|
|
2439
|
+
apiHost: Scalars['String']['output'];
|
|
2440
|
+
isEnterprise: Scalars['Boolean']['output'];
|
|
2441
|
+
useGitCheckout: Scalars['Boolean']['output'];
|
|
2158
2442
|
vcsChecks: VcsCheck;
|
|
2159
2443
|
};
|
|
2160
2444
|
/** GitlabIntegration shows Gitlab integration details. */
|
|
@@ -2167,6 +2451,7 @@ export type GitlabIntegration = {
|
|
|
2167
2451
|
labels: Array<Scalars['String']['output']>;
|
|
2168
2452
|
name: Scalars['String']['output'];
|
|
2169
2453
|
space?: Maybe<Space>;
|
|
2454
|
+
useGitCheckout: Scalars['Boolean']['output'];
|
|
2170
2455
|
userFacingHost: Scalars['String']['output'];
|
|
2171
2456
|
vcsChecks: VcsCheck;
|
|
2172
2457
|
webhookSecret: Scalars['String']['output'];
|
|
@@ -2226,10 +2511,239 @@ export declare enum IdentityProvider {
|
|
|
2226
2511
|
Saml = "SAML",
|
|
2227
2512
|
Unknown = "UNKNOWN"
|
|
2228
2513
|
}
|
|
2514
|
+
export type InitialBlueprintVersionInput = {
|
|
2515
|
+
/** Blueprint version description */
|
|
2516
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
2517
|
+
/** Version number */
|
|
2518
|
+
number: Scalars['String']['input'];
|
|
2519
|
+
};
|
|
2229
2520
|
export type IntegrationCustomConfigData = {
|
|
2230
2521
|
/** ServiceNow integration-specific data (optional) */
|
|
2231
2522
|
serviceNow?: InputMaybe<ServiceNowExtraDataInput>;
|
|
2232
2523
|
};
|
|
2524
|
+
export type IntegrationsCount = {
|
|
2525
|
+
__typename?: 'IntegrationsCount';
|
|
2526
|
+
aws: Scalars['Int']['output'];
|
|
2527
|
+
azure: Scalars['Int']['output'];
|
|
2528
|
+
azureDevOps: Scalars['Int']['output'];
|
|
2529
|
+
backstage: Scalars['Int']['output'];
|
|
2530
|
+
bitbucketCloud: Scalars['Int']['output'];
|
|
2531
|
+
bitbucketDatacenter: Scalars['Int']['output'];
|
|
2532
|
+
github: Scalars['Int']['output'];
|
|
2533
|
+
gitlab: Scalars['Int']['output'];
|
|
2534
|
+
serviceNow: Scalars['Int']['output'];
|
|
2535
|
+
slack: Scalars['Int']['output'];
|
|
2536
|
+
vcsAgentPools: Scalars['Int']['output'];
|
|
2537
|
+
webhooks: Scalars['Int']['output'];
|
|
2538
|
+
};
|
|
2539
|
+
/** IntentProject represents the execution context for MCP tool operations. */
|
|
2540
|
+
export type IntentProject = {
|
|
2541
|
+
__typename?: 'IntentProject';
|
|
2542
|
+
/** List of policies that can be attached to this project. */
|
|
2543
|
+
attachablePolicies: Array<Policy>;
|
|
2544
|
+
/** List of policies attached to this project */
|
|
2545
|
+
attachedPolicies: Array<IntentProjectPolicyAttachment>;
|
|
2546
|
+
/** AWS integrations attached to this intent project. */
|
|
2547
|
+
awsIntegrationIntentProjectAttachment?: Maybe<AwsIntegrationIntentProjectAttachment>;
|
|
2548
|
+
/** List of configuration elements (environment variables and file mounts) */
|
|
2549
|
+
configElements: Array<ConfigElement>;
|
|
2550
|
+
/** Unix timestamp representing the intent project creation. */
|
|
2551
|
+
createdAt: Scalars['Int']['output'];
|
|
2552
|
+
/** Who created this intent project. */
|
|
2553
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
2554
|
+
/** Free-form intent project description for the users, supports Markdown. */
|
|
2555
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
2556
|
+
/**
|
|
2557
|
+
* HCL representation of the project with pagination support.
|
|
2558
|
+
* page: Page number (1-based), defaults to 1
|
|
2559
|
+
* pageSize: Number of resources per page (1-500), defaults to 50
|
|
2560
|
+
*/
|
|
2561
|
+
hcl: IntentProjectHclResult;
|
|
2562
|
+
/** Unique (within a single organization), immutable name of the intent project. */
|
|
2563
|
+
id: Scalars['ID']['output'];
|
|
2564
|
+
/** True if intent project is locked */
|
|
2565
|
+
isLocked: Scalars['Boolean']['output'];
|
|
2566
|
+
/** Unix timestamp when any resource in this intent project was last modified. */
|
|
2567
|
+
lastResourcesUpdatedAt?: Maybe<Scalars['Int']['output']>;
|
|
2568
|
+
/** User that has locked this intent project. */
|
|
2569
|
+
lockedBy?: Maybe<Scalars['String']['output']>;
|
|
2570
|
+
/** Lock expiration time unix timestamp. */
|
|
2571
|
+
lockedUntil?: Maybe<Scalars['Int']['output']>;
|
|
2572
|
+
/** Fancy, mutable name of the intent project to show in the UI. */
|
|
2573
|
+
name: Scalars['String']['output'];
|
|
2574
|
+
/** Search intent resources with a set of predicates, ordering and paging. */
|
|
2575
|
+
searchIntentResources: SearchIntentResourcesOutput;
|
|
2576
|
+
/** Search intent resources operations with a set of predicates, ordering and paging */
|
|
2577
|
+
searchIntentResourcesOperations: SearchIntentResourcesOperationsOutput;
|
|
2578
|
+
/** Information about fields available for searching intent resource operations */
|
|
2579
|
+
searchIntentResourcesOperationsSuggestions: SearchSuggestionsOutput;
|
|
2580
|
+
/** Information about fields available for searching intent resources. */
|
|
2581
|
+
searchIntentResourcesSuggestions: SearchSuggestionsOutput;
|
|
2582
|
+
/** ID of the space this IntentProject belongs to. */
|
|
2583
|
+
space: Space;
|
|
2584
|
+
/** Intent Project state */
|
|
2585
|
+
state: Scalars['String']['output'];
|
|
2586
|
+
/** Unix timestamp of the last intent project update. */
|
|
2587
|
+
updatedAt: Scalars['Int']['output'];
|
|
2588
|
+
};
|
|
2589
|
+
/** IntentProject represents the execution context for MCP tool operations. */
|
|
2590
|
+
export type IntentProjectHclArgs = {
|
|
2591
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2592
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
2593
|
+
};
|
|
2594
|
+
/** IntentProject represents the execution context for MCP tool operations. */
|
|
2595
|
+
export type IntentProjectSearchIntentResourcesArgs = {
|
|
2596
|
+
input: SearchInput;
|
|
2597
|
+
};
|
|
2598
|
+
/** IntentProject represents the execution context for MCP tool operations. */
|
|
2599
|
+
export type IntentProjectSearchIntentResourcesOperationsArgs = {
|
|
2600
|
+
input: SearchInput;
|
|
2601
|
+
};
|
|
2602
|
+
/** IntentProject represents the execution context for MCP tool operations. */
|
|
2603
|
+
export type IntentProjectSearchIntentResourcesOperationsSuggestionsArgs = {
|
|
2604
|
+
input: SearchSuggestionsInput;
|
|
2605
|
+
};
|
|
2606
|
+
/** IntentProject represents the execution context for MCP tool operations. */
|
|
2607
|
+
export type IntentProjectSearchIntentResourcesSuggestionsArgs = {
|
|
2608
|
+
input: SearchSuggestionsInput;
|
|
2609
|
+
};
|
|
2610
|
+
/** IntentProjectHclResult contains paginated HCL output for an intent project. */
|
|
2611
|
+
export type IntentProjectHclResult = {
|
|
2612
|
+
__typename?: 'IntentProjectHclResult';
|
|
2613
|
+
/** Whether there are more resources available */
|
|
2614
|
+
hasMore: Scalars['Boolean']['output'];
|
|
2615
|
+
/** HCL representation of the project resources */
|
|
2616
|
+
hcl: Scalars['String']['output'];
|
|
2617
|
+
};
|
|
2618
|
+
export type IntentProjectPolicyAttachment = {
|
|
2619
|
+
__typename?: 'IntentProjectPolicyAttachment';
|
|
2620
|
+
/**
|
|
2621
|
+
* List of all the policy evaluation records associated with this policy
|
|
2622
|
+
* attachment.
|
|
2623
|
+
*/
|
|
2624
|
+
evaluationRecords: Array<PolicyEvaluationRecord>;
|
|
2625
|
+
/** Returns a single policy evaluation sample */
|
|
2626
|
+
evaluationSample?: Maybe<PolicyEvaluationSample>;
|
|
2627
|
+
/** Globally unique Policy attachment identifier. */
|
|
2628
|
+
id: Scalars['ID']['output'];
|
|
2629
|
+
/** Body of the attached Policy. */
|
|
2630
|
+
policyBody: Scalars['String']['output'];
|
|
2631
|
+
/** ID of the attached Policy. */
|
|
2632
|
+
policyId: Scalars['ID']['output'];
|
|
2633
|
+
/** Labels of the attached Policy. */
|
|
2634
|
+
policyLabels: Array<Scalars['String']['output']>;
|
|
2635
|
+
/** Name of the attached Policy. */
|
|
2636
|
+
policyName: Scalars['String']['output'];
|
|
2637
|
+
/** Type of the attached Policy. */
|
|
2638
|
+
policyType: PolicyType;
|
|
2639
|
+
};
|
|
2640
|
+
export type IntentProjectPolicyAttachmentEvaluationSampleArgs = {
|
|
2641
|
+
key: Scalars['String']['input'];
|
|
2642
|
+
};
|
|
2643
|
+
export type IntentProjectsConnection = {
|
|
2644
|
+
__typename?: 'IntentProjectsConnection';
|
|
2645
|
+
cursor: Scalars['String']['output'];
|
|
2646
|
+
node: IntentProject;
|
|
2647
|
+
};
|
|
2648
|
+
/** Intent resource managed by intent projects */
|
|
2649
|
+
export type IntentResource = {
|
|
2650
|
+
__typename?: 'IntentResource';
|
|
2651
|
+
/** Address of the IntentResource in the module. */
|
|
2652
|
+
address: Scalars['String']['output'];
|
|
2653
|
+
/** Who changed this resource. */
|
|
2654
|
+
changedBy: Scalars['String']['output'];
|
|
2655
|
+
/** Hcl representation of the resource */
|
|
2656
|
+
hcl: Scalars['String']['output'];
|
|
2657
|
+
/** IntentProject this resource belongs to. */
|
|
2658
|
+
intentProjectID: Scalars['String']['output'];
|
|
2659
|
+
/** IntentResource Name. */
|
|
2660
|
+
name: Scalars['String']['output'];
|
|
2661
|
+
/** Operation performed on this resource. */
|
|
2662
|
+
operation: Scalars['String']['output'];
|
|
2663
|
+
/** Provider name. */
|
|
2664
|
+
provider: Scalars['String']['output'];
|
|
2665
|
+
/** Resource ID from the state. */
|
|
2666
|
+
resourceID: Scalars['String']['output'];
|
|
2667
|
+
/** IntentResource Type. */
|
|
2668
|
+
resourceType: Scalars['String']['output'];
|
|
2669
|
+
/** Resource state in JSON format */
|
|
2670
|
+
state: Scalars['String']['output'];
|
|
2671
|
+
};
|
|
2672
|
+
export type IntentResourceConnection = {
|
|
2673
|
+
__typename?: 'IntentResourceConnection';
|
|
2674
|
+
cursor: Scalars['String']['output'];
|
|
2675
|
+
node: IntentResource;
|
|
2676
|
+
};
|
|
2677
|
+
/** Intent resource operation */
|
|
2678
|
+
export type IntentResourceOperation = {
|
|
2679
|
+
__typename?: 'IntentResourceOperation';
|
|
2680
|
+
/** Policy allows */
|
|
2681
|
+
allow: Array<Scalars['String']['output']>;
|
|
2682
|
+
/** Author of the operation. */
|
|
2683
|
+
author?: Maybe<Scalars['String']['output']>;
|
|
2684
|
+
/** Timestamp representing the operation time. */
|
|
2685
|
+
createdAt: Scalars['Int']['output'];
|
|
2686
|
+
/** State before operation */
|
|
2687
|
+
currentState?: Maybe<Scalars['String']['output']>;
|
|
2688
|
+
/** Policy denials */
|
|
2689
|
+
deny: Array<Scalars['String']['output']>;
|
|
2690
|
+
/** Indicates the reason for failure, if the operation did not succeed */
|
|
2691
|
+
failed?: Maybe<Scalars['String']['output']>;
|
|
2692
|
+
id: Scalars['ID']['output'];
|
|
2693
|
+
/** Returns whether the operation applies to an existing resource. */
|
|
2694
|
+
isExistingResource: Scalars['Boolean']['output'];
|
|
2695
|
+
/** Operation */
|
|
2696
|
+
operation: Scalars['String']['output'];
|
|
2697
|
+
/** State after operation */
|
|
2698
|
+
proposedState?: Maybe<Scalars['String']['output']>;
|
|
2699
|
+
/** Provider */
|
|
2700
|
+
provider: Scalars['String']['output'];
|
|
2701
|
+
/** Resource ID */
|
|
2702
|
+
resourceID: Scalars['String']['output'];
|
|
2703
|
+
/** Resource type */
|
|
2704
|
+
resourceType: Scalars['String']['output'];
|
|
2705
|
+
/** List of reviews for this operation. */
|
|
2706
|
+
reviews: Array<IntentResourceOperationReview>;
|
|
2707
|
+
/** State of operation */
|
|
2708
|
+
state: IntentResourceOperationState;
|
|
2709
|
+
};
|
|
2710
|
+
export type IntentResourceOperationReview = {
|
|
2711
|
+
__typename?: 'IntentResourceOperationReview';
|
|
2712
|
+
/** Author of the review. */
|
|
2713
|
+
author: Scalars['String']['output'];
|
|
2714
|
+
/** Decision made by the reviewer. */
|
|
2715
|
+
decision: IntentResourceOperationReviewDecision;
|
|
2716
|
+
/** Unique ID of the operation review. */
|
|
2717
|
+
id: Scalars['ID']['output'];
|
|
2718
|
+
/** Optional note, if any. */
|
|
2719
|
+
note?: Maybe<Scalars['String']['output']>;
|
|
2720
|
+
/** Unix timestamp of the review. */
|
|
2721
|
+
timestamp: Scalars['Int']['output'];
|
|
2722
|
+
};
|
|
2723
|
+
export declare enum IntentResourceOperationReviewDecision {
|
|
2724
|
+
Allow = "ALLOW",
|
|
2725
|
+
Deny = "DENY"
|
|
2726
|
+
}
|
|
2727
|
+
/** IntentResourceOperationState represents a discrete state of a operation on intent resource. */
|
|
2728
|
+
export declare enum IntentResourceOperationState {
|
|
2729
|
+
/** The operation has failed. */
|
|
2730
|
+
Failed = "FAILED",
|
|
2731
|
+
/** The operation has finished successfully. */
|
|
2732
|
+
Finished = "FINISHED",
|
|
2733
|
+
/** The operation is pending execution. */
|
|
2734
|
+
Pending = "PENDING",
|
|
2735
|
+
/** The operation is pending for manual allow/deny. */
|
|
2736
|
+
PendingReview = "PENDING_REVIEW",
|
|
2737
|
+
/** The operation has reviewed and ready for execution. */
|
|
2738
|
+
ReadyForExecution = "READY_FOR_EXECUTION",
|
|
2739
|
+
/** An invalid "zero-value" for the intent resource operation state. */
|
|
2740
|
+
Unknown = "UNKNOWN"
|
|
2741
|
+
}
|
|
2742
|
+
export type IntentResourcesOperationConnection = {
|
|
2743
|
+
__typename?: 'IntentResourcesOperationConnection';
|
|
2744
|
+
cursor: Scalars['String']['output'];
|
|
2745
|
+
node: IntentResourceOperation;
|
|
2746
|
+
};
|
|
2233
2747
|
export type KeyValuePair = {
|
|
2234
2748
|
key: Scalars['String']['input'];
|
|
2235
2749
|
value: Scalars['String']['input'];
|
|
@@ -2657,6 +3171,8 @@ export type Module = {
|
|
|
2657
3171
|
attachedPolicies: Array<StackPolicyAttachment>;
|
|
2658
3172
|
/** Git branch of the repo that the Module is tracking. */
|
|
2659
3173
|
branch: Scalars['String']['output'];
|
|
3174
|
+
/** Whether the user has read privileges for this Module. */
|
|
3175
|
+
canRead: Scalars['Boolean']['output'];
|
|
2660
3176
|
/** Whether the user has write privileges for this Module. */
|
|
2661
3177
|
canWrite: Scalars['Boolean']['output'];
|
|
2662
3178
|
/** Full list of module config elements. */
|
|
@@ -2688,6 +3204,8 @@ export type Module = {
|
|
|
2688
3204
|
latest?: Maybe<Version>;
|
|
2689
3205
|
/** Whether triggering local workspace based Versions on this Module is enabled. */
|
|
2690
3206
|
localPreviewEnabled: Scalars['Boolean']['output'];
|
|
3207
|
+
/** List of the accounts and spaces which have access to the Module. */
|
|
3208
|
+
moduleShares: Array<ModuleShare>;
|
|
2691
3209
|
/** The value to use for the Terraform `source` property when accessing the module. */
|
|
2692
3210
|
moduleSource: Scalars['String']['output'];
|
|
2693
3211
|
/** Provider-independent name of the Terraform module. */
|
|
@@ -2745,7 +3263,10 @@ export type Module = {
|
|
|
2745
3263
|
runtimeConfig: Array<ConfigElementWithSource>;
|
|
2746
3264
|
searchModuleVersions: SearchVersionsOutput;
|
|
2747
3265
|
searchModuleVersionsSuggestions: SearchSuggestionsOutput;
|
|
2748
|
-
/**
|
|
3266
|
+
/**
|
|
3267
|
+
* List of the accounts (subdomains) which have access to the Module.
|
|
3268
|
+
* @deprecated Use moduleShares field instead.
|
|
3269
|
+
*/
|
|
2749
3270
|
sharedAccounts: Array<Scalars['String']['output']>;
|
|
2750
3271
|
/** ID of the space this Module belongs to. */
|
|
2751
3272
|
space: Scalars['ID']['output'];
|
|
@@ -2908,6 +3429,45 @@ export type ModuleResource = {
|
|
|
2908
3429
|
name: Scalars['String']['output'];
|
|
2909
3430
|
type: Scalars['String']['output'];
|
|
2910
3431
|
};
|
|
3432
|
+
export type ModuleShare = {
|
|
3433
|
+
__typename?: 'ModuleShare';
|
|
3434
|
+
/** Source of the module share (where it's shared from). */
|
|
3435
|
+
from: ModuleShareScope;
|
|
3436
|
+
/** Unique identifier of the module share. */
|
|
3437
|
+
id: Scalars['ID']['output'];
|
|
3438
|
+
/** Module information for the shared item. */
|
|
3439
|
+
module: ModuleShareModule;
|
|
3440
|
+
/** Target of the module share (where it's shared to). */
|
|
3441
|
+
to: ModuleShareScope;
|
|
3442
|
+
};
|
|
3443
|
+
export type ModuleShareAccount = {
|
|
3444
|
+
__typename?: 'ModuleShareAccount';
|
|
3445
|
+
subdomain: Scalars['String']['output'];
|
|
3446
|
+
};
|
|
3447
|
+
export type ModuleShareInput = {
|
|
3448
|
+
accounts: Array<Scalars['ID']['input']>;
|
|
3449
|
+
spaces: Array<Scalars['ID']['input']>;
|
|
3450
|
+
};
|
|
3451
|
+
export type ModuleShareModule = {
|
|
3452
|
+
__typename?: 'ModuleShareModule';
|
|
3453
|
+
current?: Maybe<SharedVersion>;
|
|
3454
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3455
|
+
id: Scalars['String']['output'];
|
|
3456
|
+
labels: Array<Scalars['String']['output']>;
|
|
3457
|
+
latest?: Maybe<SharedVersion>;
|
|
3458
|
+
name: Scalars['String']['output'];
|
|
3459
|
+
};
|
|
3460
|
+
export type ModuleShareScope = {
|
|
3461
|
+
__typename?: 'ModuleShareScope';
|
|
3462
|
+
/** Account information, if the sharing scope is an account. */
|
|
3463
|
+
account: ModuleShareAccount;
|
|
3464
|
+
/** Space information, if the sharing scope is a space. */
|
|
3465
|
+
space?: Maybe<Space>;
|
|
3466
|
+
};
|
|
3467
|
+
export type ModuleShareSpace = {
|
|
3468
|
+
__typename?: 'ModuleShareSpace';
|
|
3469
|
+
name: Scalars['String']['output'];
|
|
3470
|
+
};
|
|
2911
3471
|
/** Arguments used to create and update an individual Module. */
|
|
2912
3472
|
export type ModuleUpdateInput = {
|
|
2913
3473
|
/** Administrative stacks can manage other Stacks at runtime. */
|
|
@@ -3007,6 +3567,13 @@ export type Mutation = {
|
|
|
3007
3567
|
accountAcceptTermsAndConditionsVersionForAI: Scalars['Boolean']['output'];
|
|
3008
3568
|
/** Delete the account */
|
|
3009
3569
|
accountConfirmDelete: Scalars['Boolean']['output'];
|
|
3570
|
+
/** Set the OIDC subject template for the account */
|
|
3571
|
+
accountSetOIDCSubjectTemplate?: Maybe<Scalars['String']['output']>;
|
|
3572
|
+
/**
|
|
3573
|
+
* Enable/disable API key creation from non-human sessions.
|
|
3574
|
+
* When enabled, non-human sessions (API keys, Admin Stacks) can manage API keys.
|
|
3575
|
+
*/
|
|
3576
|
+
accountToggleAPIKeyManagementFromNonHumans: Scalars['Boolean']['output'];
|
|
3010
3577
|
/** Allow/Disallow non-root admins to create subspaces. */
|
|
3011
3578
|
accountToggleAllowNonRootAdminSpaceCreation: Scalars['Boolean']['output'];
|
|
3012
3579
|
/** Mark/unmark the Account for deletion. */
|
|
@@ -3019,6 +3586,8 @@ export type Mutation = {
|
|
|
3019
3586
|
accountUpdateAuthorizationScheme: AuthorizationScheme;
|
|
3020
3587
|
/** Update Account's Awareness Source */
|
|
3021
3588
|
accountUpdateAwarenessSourceSurvey?: Maybe<AwarenessSourceSurvey>;
|
|
3589
|
+
/** Update Account's default public worker pool runner image */
|
|
3590
|
+
accountUpdateDefaultWorkerPoolRunnerImages?: Maybe<AccountUpdateDefaultWorkerPoolRunnerImagesResult>;
|
|
3022
3591
|
/** Update Account's Security Email */
|
|
3023
3592
|
accountUpdateSecurityEmail: Scalars['String']['output'];
|
|
3024
3593
|
/** Update limit of runs created by a single VCS event for this account */
|
|
@@ -3062,6 +3631,10 @@ export type Mutation = {
|
|
|
3062
3631
|
awsIntegrationDelete?: Maybe<AwsIntegration>;
|
|
3063
3632
|
/** Detaches an AWS integration from a Stack, using the unique ID of the attachment. */
|
|
3064
3633
|
awsIntegrationDetach?: Maybe<AwsIntegrationStackAttachment>;
|
|
3634
|
+
/** Attach AWS integration to an intent project. */
|
|
3635
|
+
awsIntegrationIntentProjectAttach: AwsIntegrationIntentProjectAttachment;
|
|
3636
|
+
/** Detach AWS integration from an intent project. */
|
|
3637
|
+
awsIntegrationIntentProjectDetach: AwsIntegrationIntentProjectAttachment;
|
|
3065
3638
|
/** Updates the integration with the specified ID. */
|
|
3066
3639
|
awsIntegrationUpdate: AwsIntegration;
|
|
3067
3640
|
/** Creates the Azure DevOps Repo integration. */
|
|
@@ -3105,12 +3678,16 @@ export type Mutation = {
|
|
|
3105
3678
|
billingSubscriptionUpdateV2: BillingSubscription;
|
|
3106
3679
|
/** Creates the Bitbucket Cloud integration. */
|
|
3107
3680
|
bitbucketCloudIntegrationCreate: BitbucketCloudIntegration;
|
|
3681
|
+
/** Creates the Bitbucket Cloud integration. */
|
|
3682
|
+
bitbucketCloudIntegrationCreateV2: BitbucketCloudIntegration;
|
|
3108
3683
|
/** Deletes the Bitbucket Cloud integration. */
|
|
3109
3684
|
bitbucketCloudIntegrationDelete?: Maybe<BitbucketCloudIntegration>;
|
|
3110
3685
|
/** Tests the Bitbucket Cloud integration. */
|
|
3111
3686
|
bitbucketCloudIntegrationTest: Scalars['Boolean']['output'];
|
|
3112
3687
|
/** Updates the Bitbucket Cloud integration with new properties. */
|
|
3113
3688
|
bitbucketCloudIntegrationUpdate: BitbucketCloudIntegration;
|
|
3689
|
+
/** Updates the Bitbucket Cloud integration with new properties. */
|
|
3690
|
+
bitbucketCloudIntegrationUpdateV2: BitbucketCloudIntegration;
|
|
3114
3691
|
/** Creates the Bitbucket Datacenter integration. */
|
|
3115
3692
|
bitbucketDatacenterIntegrationCreate: BitbucketDatacenterIntegration;
|
|
3116
3693
|
/** Deletes the Bitbucket Datacenter integration. */
|
|
@@ -3126,10 +3703,15 @@ export type Mutation = {
|
|
|
3126
3703
|
blueprintCreateStack: BlueprintStackCreation;
|
|
3127
3704
|
/** Delete an existing blueprint. */
|
|
3128
3705
|
blueprintDelete?: Maybe<Blueprint>;
|
|
3706
|
+
/** Deploy a blueprint */
|
|
3707
|
+
blueprintDeploymentCreate?: Maybe<BlueprintDeployment>;
|
|
3129
3708
|
blueprintDetachIntegration: BlueprintIntegrationAttachment;
|
|
3130
3709
|
blueprintParseTemplate: BlueprintParseResult;
|
|
3131
3710
|
/** Update an existing blueprint. */
|
|
3132
3711
|
blueprintUpdate: Blueprint;
|
|
3712
|
+
blueprintVersionCreate: Blueprint;
|
|
3713
|
+
blueprintVersionDelete?: Maybe<Blueprint>;
|
|
3714
|
+
blueprintVersionUpdate: Blueprint;
|
|
3133
3715
|
blueprintVersionedGroupCreate: BlueprintVersionedGroup;
|
|
3134
3716
|
blueprintVersionedGroupDelete?: Maybe<BlueprintVersionedGroup>;
|
|
3135
3717
|
blueprintVersionedGroupUpdate: BlueprintVersionedGroup;
|
|
@@ -3147,9 +3729,9 @@ export type Mutation = {
|
|
|
3147
3729
|
completeGenericForm: Scalars['Boolean']['output'];
|
|
3148
3730
|
/** Attach context to a Stack. */
|
|
3149
3731
|
contextAttach: ContextStackAttachment;
|
|
3150
|
-
/** Add a context config element. */
|
|
3732
|
+
/** Add a context config element. Requires 'Context Update' permission on the context Space. */
|
|
3151
3733
|
contextConfigAdd: ConfigElement;
|
|
3152
|
-
/** Delete a context config element. */
|
|
3734
|
+
/** Delete a context config element. Requires 'Context Update' permission on the context Space. */
|
|
3153
3735
|
contextConfigDelete?: Maybe<ConfigElement>;
|
|
3154
3736
|
/**
|
|
3155
3737
|
* Create a new context.
|
|
@@ -3221,17 +3803,40 @@ export type Mutation = {
|
|
|
3221
3803
|
groupUserEvent: Scalars['Boolean']['output'];
|
|
3222
3804
|
/** Identify user event */
|
|
3223
3805
|
identifyUserEvent: Scalars['Boolean']['output'];
|
|
3806
|
+
/** Add a new configuration element to an intent project */
|
|
3807
|
+
intentProjectConfigAdd: ConfigElement;
|
|
3808
|
+
/** Delete a configuration element from an intent project */
|
|
3809
|
+
intentProjectConfigDelete: ConfigElement;
|
|
3810
|
+
/** Update a configuration element in an intent project */
|
|
3811
|
+
intentProjectConfigUpdate: ConfigElement;
|
|
3812
|
+
/** Create a new intent project. */
|
|
3813
|
+
intentProjectCreate: IntentProject;
|
|
3814
|
+
/** Delete an existing intent project. Optionally keep resources unmanaged. */
|
|
3815
|
+
intentProjectDelete?: Maybe<IntentProject>;
|
|
3816
|
+
/** Disable an intent project, puts the project into READ_ONLY state. */
|
|
3817
|
+
intentProjectDisable: IntentProject;
|
|
3818
|
+
/** Enable an intent project, puts the project into READ_WRITE state. */
|
|
3819
|
+
intentProjectEnable: IntentProject;
|
|
3820
|
+
/** Unlock an intent project. */
|
|
3821
|
+
intentProjectUnlock: IntentProject;
|
|
3822
|
+
/** Update an existing intent project. */
|
|
3823
|
+
intentProjectUpdate: IntentProject;
|
|
3824
|
+
/** Review resource operation */
|
|
3825
|
+
intentResourceOperationReview: IntentResourceOperationReview;
|
|
3224
3826
|
/** End the current session. */
|
|
3225
3827
|
logout?: Maybe<Session>;
|
|
3226
3828
|
managedUserDelete: ManagedUser;
|
|
3829
|
+
/** @deprecated Please use managedUserGroupCreateV2. */
|
|
3227
3830
|
managedUserGroupCreate: ManagedUserGroup;
|
|
3228
3831
|
managedUserGroupCreateV2: ManagedUserGroup;
|
|
3229
3832
|
managedUserGroupDelete: ManagedUserGroup;
|
|
3230
3833
|
managedUserGroupIntegrationCreate: ManagedUserGroupIntegration;
|
|
3231
3834
|
managedUserGroupIntegrationDelete: ManagedUserGroupIntegration;
|
|
3232
3835
|
managedUserGroupIntegrationUpdate: ManagedUserGroupIntegration;
|
|
3836
|
+
/** @deprecated Please use managedUserGroupUpdateV2. */
|
|
3233
3837
|
managedUserGroupUpdate: ManagedUserGroup;
|
|
3234
3838
|
managedUserGroupUpdateV2: ManagedUserGroup;
|
|
3839
|
+
/** @deprecated Please use managedUserInviteV2. */
|
|
3235
3840
|
managedUserInvite: ManagedUser;
|
|
3236
3841
|
managedUserInviteV2: ManagedUser;
|
|
3237
3842
|
managedUserRequestInvite: Scalars['Boolean']['output'];
|
|
@@ -3248,6 +3853,8 @@ export type Mutation = {
|
|
|
3248
3853
|
moduleEnable: Module;
|
|
3249
3854
|
/** Change Terraform registry from private to public. */
|
|
3250
3855
|
modulePublish: Module;
|
|
3856
|
+
/** Share a module with another account or another space */
|
|
3857
|
+
moduleShare: Array<ModuleShare>;
|
|
3251
3858
|
/** Update an existing Module (v1 API, does not support updating source). */
|
|
3252
3859
|
moduleUpdate: Module;
|
|
3253
3860
|
/** Update an existing Module (v2 API). */
|
|
@@ -3272,10 +3879,20 @@ export type Mutation = {
|
|
|
3272
3879
|
oidcCreate: OidcSettings;
|
|
3273
3880
|
/** Delete OIDC integration. */
|
|
3274
3881
|
oidcDelete?: Maybe<OidcSettings>;
|
|
3275
|
-
/** Update OIDC settings to
|
|
3882
|
+
/** Update OIDC settings to change claim mappings. */
|
|
3276
3883
|
oidcUpdate: OidcSettings;
|
|
3277
3884
|
/** Page user event */
|
|
3278
3885
|
pageUserEvent: Scalars['Boolean']['output'];
|
|
3886
|
+
/** Delete an existing Plugin. */
|
|
3887
|
+
pluginDelete?: Maybe<Plugin>;
|
|
3888
|
+
/** Install a plugin from a plugin template */
|
|
3889
|
+
pluginInstall: Plugin;
|
|
3890
|
+
/** Create a new Plugin Template. */
|
|
3891
|
+
pluginTemplateCreate: PluginTemplate;
|
|
3892
|
+
/** Delete an existing Plugin Template. */
|
|
3893
|
+
pluginTemplateDelete?: Maybe<PluginTemplate>;
|
|
3894
|
+
/** Update an existing Plugin. */
|
|
3895
|
+
pluginUpdate: Plugin;
|
|
3279
3896
|
/** Attach Policy to a Stack. */
|
|
3280
3897
|
policyAttach: PolicyStackAttachment;
|
|
3281
3898
|
/**
|
|
@@ -3289,8 +3906,17 @@ export type Mutation = {
|
|
|
3289
3906
|
policyDelete?: Maybe<Policy>;
|
|
3290
3907
|
/** Detach Policy from a Stack. */
|
|
3291
3908
|
policyDetach?: Maybe<PolicyStackAttachment>;
|
|
3292
|
-
/**
|
|
3909
|
+
/** Attach Policy to a Intent Project */
|
|
3910
|
+
policyIntentProjectAttach: PolicyIntentProjectAttachment;
|
|
3911
|
+
/** Detach Policy from a Intent Project */
|
|
3912
|
+
policyIntentProjectDetach: PolicyIntentProjectAttachment;
|
|
3913
|
+
/**
|
|
3914
|
+
* Simulate policy evaluation.
|
|
3915
|
+
* @deprecated Use policySimulatev2 instead.
|
|
3916
|
+
*/
|
|
3293
3917
|
policySimulate: Scalars['String']['output'];
|
|
3918
|
+
/** Simulate policy evaluation. (v2 API). */
|
|
3919
|
+
policySimulatev2: Scalars['String']['output'];
|
|
3294
3920
|
/**
|
|
3295
3921
|
* Update an existing Policy.
|
|
3296
3922
|
* @deprecated Use PolicyUpdatev2 instead.
|
|
@@ -3334,6 +3960,11 @@ export type Mutation = {
|
|
|
3334
3960
|
* When prioritized, the run will take precedence over other queued runs for the worker pool it is assigned to.
|
|
3335
3961
|
*/
|
|
3336
3962
|
runPrioritizeSet: Run;
|
|
3963
|
+
/**
|
|
3964
|
+
* Sets the priority preset of a run.
|
|
3965
|
+
* Controls run scheduling priority with named presets.
|
|
3966
|
+
*/
|
|
3967
|
+
runPrioritySet: Run;
|
|
3337
3968
|
/** Promote a proposed Run to a tracked one. */
|
|
3338
3969
|
runPromote: Run;
|
|
3339
3970
|
/** Create proposed run based on provided local workspace. */
|
|
@@ -3364,6 +3995,8 @@ export type Mutation = {
|
|
|
3364
3995
|
samlCreate: SamlSettings;
|
|
3365
3996
|
/** Delete SAML integration. */
|
|
3366
3997
|
samlDelete?: Maybe<SamlSettings>;
|
|
3998
|
+
/** Update SAML settings to change claim mappings. */
|
|
3999
|
+
samlUpdate: SamlSettings;
|
|
3367
4000
|
/** Create a new saved filter. */
|
|
3368
4001
|
savedFilterCreate: SavedFilter;
|
|
3369
4002
|
/** Delete a saved filter. */
|
|
@@ -3405,6 +4038,8 @@ export type Mutation = {
|
|
|
3405
4038
|
* handed over to Spacelift for further management.
|
|
3406
4039
|
*/
|
|
3407
4040
|
stackCreate: Stack;
|
|
4041
|
+
/** Create a new stack based on existing Intent Project */
|
|
4042
|
+
stackCreateFromIntent: Stack;
|
|
3408
4043
|
/** Delete an existing stack. */
|
|
3409
4044
|
stackDelete?: Maybe<Stack>;
|
|
3410
4045
|
/** Adds reference output/input */
|
|
@@ -3461,6 +4096,10 @@ export type Mutation = {
|
|
|
3461
4096
|
* sure you know exactly what you're doing!
|
|
3462
4097
|
*/
|
|
3463
4098
|
stackReslug: Stack;
|
|
4099
|
+
stackRoleBindingBatchCreate: Array<StackRoleBinding>;
|
|
4100
|
+
stackRoleBindingCreate: StackRoleBinding;
|
|
4101
|
+
stackRoleBindingDelete?: Maybe<StackRoleBinding>;
|
|
4102
|
+
stackRoleBindingUpdate: StackRoleBinding;
|
|
3464
4103
|
/** Create a new ScheduledDelete for stack */
|
|
3465
4104
|
stackScheduledDeleteCreate: ScheduledDelete;
|
|
3466
4105
|
/** Delete ScheduledDelete for stack */
|
|
@@ -3492,6 +4131,11 @@ export type Mutation = {
|
|
|
3492
4131
|
stackUpdate: Stack;
|
|
3493
4132
|
/** Sets or unsets star on a Stack or Module. */
|
|
3494
4133
|
starSet: Stack;
|
|
4134
|
+
/**
|
|
4135
|
+
* Generate pre-signed state download URL for a stack.
|
|
4136
|
+
* Requires external state access to be enabled on the stack.
|
|
4137
|
+
*/
|
|
4138
|
+
stateDownloadUrl: StateDownloadUrl;
|
|
3495
4139
|
/** Generate pre-signed state upload URL. */
|
|
3496
4140
|
stateUploadUrl: StateUploadUrl;
|
|
3497
4141
|
/** Summarizes a given run */
|
|
@@ -3547,6 +4191,14 @@ export type Mutation = {
|
|
|
3547
4191
|
userGroupRoleBindingCreate: UserGroupRoleBinding;
|
|
3548
4192
|
userGroupRoleBindingDelete?: Maybe<UserGroupRoleBinding>;
|
|
3549
4193
|
userGroupRoleBindingUpdate: UserGroupRoleBinding;
|
|
4194
|
+
/** Abandon the active user guide */
|
|
4195
|
+
userGuideAbandon: UserGuideProgress;
|
|
4196
|
+
/** Complete the active user guide */
|
|
4197
|
+
userGuideComplete: UserGuideProgress;
|
|
4198
|
+
/** Move to the next step for the active user guide */
|
|
4199
|
+
userGuideMoveToNextStep: UserGuideProgress;
|
|
4200
|
+
/** Start a user guide */
|
|
4201
|
+
userGuideStart: UserGuideProgress;
|
|
3550
4202
|
userRoleBindingBatchCreate: Array<UserRoleBinding>;
|
|
3551
4203
|
userRoleBindingCreate: UserRoleBinding;
|
|
3552
4204
|
userRoleBindingDelete?: Maybe<UserRoleBinding>;
|
|
@@ -3598,6 +4250,9 @@ export type Mutation = {
|
|
|
3598
4250
|
export type MutationAccountAcceptTermsAndConditionsVersionForAiArgs = {
|
|
3599
4251
|
version: Scalars['Int']['input'];
|
|
3600
4252
|
};
|
|
4253
|
+
export type MutationAccountSetOidcSubjectTemplateArgs = {
|
|
4254
|
+
template?: InputMaybe<Scalars['String']['input']>;
|
|
4255
|
+
};
|
|
3601
4256
|
export type MutationAccountUpdateAuthorizationSchemeArgs = {
|
|
3602
4257
|
schema: AuthorizationScheme;
|
|
3603
4258
|
};
|
|
@@ -3605,6 +4260,10 @@ export type MutationAccountUpdateAwarenessSourceSurveyArgs = {
|
|
|
3605
4260
|
completed: Scalars['Boolean']['input'];
|
|
3606
4261
|
response?: InputMaybe<Scalars['String']['input']>;
|
|
3607
4262
|
};
|
|
4263
|
+
export type MutationAccountUpdateDefaultWorkerPoolRunnerImagesArgs = {
|
|
4264
|
+
privateWorkerPoolRunnerImage?: InputMaybe<Scalars['String']['input']>;
|
|
4265
|
+
publicWorkerPoolRunnerImage?: InputMaybe<Scalars['String']['input']>;
|
|
4266
|
+
};
|
|
3608
4267
|
export type MutationAccountUpdateSecurityEmailArgs = {
|
|
3609
4268
|
securityEmail: Scalars['String']['input'];
|
|
3610
4269
|
};
|
|
@@ -3662,6 +4321,7 @@ export type MutationAwsIntegrationAttachmentUpdateArgs = {
|
|
|
3662
4321
|
write: Scalars['Boolean']['input'];
|
|
3663
4322
|
};
|
|
3664
4323
|
export type MutationAwsIntegrationCreateArgs = {
|
|
4324
|
+
autoattachEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3665
4325
|
durationSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
3666
4326
|
externalID?: InputMaybe<Scalars['String']['input']>;
|
|
3667
4327
|
generateCredentialsInWorker: Scalars['Boolean']['input'];
|
|
@@ -3677,7 +4337,19 @@ export type MutationAwsIntegrationDeleteArgs = {
|
|
|
3677
4337
|
export type MutationAwsIntegrationDetachArgs = {
|
|
3678
4338
|
id: Scalars['ID']['input'];
|
|
3679
4339
|
};
|
|
4340
|
+
export type MutationAwsIntegrationIntentProjectAttachArgs = {
|
|
4341
|
+
awsRegion: Scalars['String']['input'];
|
|
4342
|
+
integration: Scalars['ID']['input'];
|
|
4343
|
+
intentProject: Scalars['ID']['input'];
|
|
4344
|
+
read: Scalars['Boolean']['input'];
|
|
4345
|
+
write: Scalars['Boolean']['input'];
|
|
4346
|
+
};
|
|
4347
|
+
export type MutationAwsIntegrationIntentProjectDetachArgs = {
|
|
4348
|
+
integration: Scalars['ID']['input'];
|
|
4349
|
+
intentProject: Scalars['ID']['input'];
|
|
4350
|
+
};
|
|
3680
4351
|
export type MutationAwsIntegrationUpdateArgs = {
|
|
4352
|
+
autoattachEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3681
4353
|
durationSeconds: Scalars['Int']['input'];
|
|
3682
4354
|
externalID: Scalars['String']['input'];
|
|
3683
4355
|
generateCredentialsInWorker: Scalars['Boolean']['input'];
|
|
@@ -3719,6 +4391,7 @@ export type MutationAzureIntegrationAttachmentUpdateArgs = {
|
|
|
3719
4391
|
write: Scalars['Boolean']['input'];
|
|
3720
4392
|
};
|
|
3721
4393
|
export type MutationAzureIntegrationCreateArgs = {
|
|
4394
|
+
autoattachEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3722
4395
|
defaultSubscriptionId?: InputMaybe<Scalars['String']['input']>;
|
|
3723
4396
|
labels: Array<Scalars['String']['input']>;
|
|
3724
4397
|
name: Scalars['String']['input'];
|
|
@@ -3732,6 +4405,7 @@ export type MutationAzureIntegrationDetachArgs = {
|
|
|
3732
4405
|
id: Scalars['ID']['input'];
|
|
3733
4406
|
};
|
|
3734
4407
|
export type MutationAzureIntegrationUpdateArgs = {
|
|
4408
|
+
autoattachEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3735
4409
|
defaultSubscriptionId?: InputMaybe<Scalars['String']['input']>;
|
|
3736
4410
|
id: Scalars['ID']['input'];
|
|
3737
4411
|
labels: Array<Scalars['String']['input']>;
|
|
@@ -3760,6 +4434,9 @@ export type MutationBitbucketCloudIntegrationCreateArgs = {
|
|
|
3760
4434
|
customInput?: InputMaybe<CustomVcsInput>;
|
|
3761
4435
|
username: Scalars['String']['input'];
|
|
3762
4436
|
};
|
|
4437
|
+
export type MutationBitbucketCloudIntegrationCreateV2Args = {
|
|
4438
|
+
input: BitbucketCloudIntegrationInput;
|
|
4439
|
+
};
|
|
3763
4440
|
export type MutationBitbucketCloudIntegrationDeleteArgs = {
|
|
3764
4441
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
3765
4442
|
};
|
|
@@ -3771,6 +4448,9 @@ export type MutationBitbucketCloudIntegrationUpdateArgs = {
|
|
|
3771
4448
|
customInput?: InputMaybe<CustomVcsUpdateInput>;
|
|
3772
4449
|
username: Scalars['String']['input'];
|
|
3773
4450
|
};
|
|
4451
|
+
export type MutationBitbucketCloudIntegrationUpdateV2Args = {
|
|
4452
|
+
input: BitbucketCloudIntegrationUpdateInput;
|
|
4453
|
+
};
|
|
3774
4454
|
export type MutationBitbucketDatacenterIntegrationCreateArgs = {
|
|
3775
4455
|
accessToken: Scalars['String']['input'];
|
|
3776
4456
|
apiHost: Scalars['String']['input'];
|
|
@@ -3809,6 +4489,10 @@ export type MutationBlueprintCreateStackArgs = {
|
|
|
3809
4489
|
export type MutationBlueprintDeleteArgs = {
|
|
3810
4490
|
id: Scalars['ID']['input'];
|
|
3811
4491
|
};
|
|
4492
|
+
export type MutationBlueprintDeploymentCreateArgs = {
|
|
4493
|
+
id: Scalars['ID']['input'];
|
|
4494
|
+
input: BlueprintDeploymentCreateInput;
|
|
4495
|
+
};
|
|
3812
4496
|
export type MutationBlueprintDetachIntegrationArgs = {
|
|
3813
4497
|
id: Scalars['ID']['input'];
|
|
3814
4498
|
};
|
|
@@ -3819,6 +4503,16 @@ export type MutationBlueprintUpdateArgs = {
|
|
|
3819
4503
|
id: Scalars['ID']['input'];
|
|
3820
4504
|
input: BlueprintCreateInput;
|
|
3821
4505
|
};
|
|
4506
|
+
export type MutationBlueprintVersionCreateArgs = {
|
|
4507
|
+
input: BlueprintVersionCreateInput;
|
|
4508
|
+
};
|
|
4509
|
+
export type MutationBlueprintVersionDeleteArgs = {
|
|
4510
|
+
id: Scalars['ID']['input'];
|
|
4511
|
+
};
|
|
4512
|
+
export type MutationBlueprintVersionUpdateArgs = {
|
|
4513
|
+
id: Scalars['ID']['input'];
|
|
4514
|
+
input: BlueprintVersionUpdateInput;
|
|
4515
|
+
};
|
|
3822
4516
|
export type MutationBlueprintVersionedGroupCreateArgs = {
|
|
3823
4517
|
input: BlueprintVersionedGroupCreateInput;
|
|
3824
4518
|
};
|
|
@@ -3827,7 +4521,7 @@ export type MutationBlueprintVersionedGroupDeleteArgs = {
|
|
|
3827
4521
|
};
|
|
3828
4522
|
export type MutationBlueprintVersionedGroupUpdateArgs = {
|
|
3829
4523
|
id: Scalars['ID']['input'];
|
|
3830
|
-
input:
|
|
4524
|
+
input: BlueprintVersionedGroupUpdateInput;
|
|
3831
4525
|
};
|
|
3832
4526
|
export type MutationBlueprintWithGroupCreateArgs = {
|
|
3833
4527
|
input: BlueprintWithGroupCreateInput;
|
|
@@ -3941,6 +4635,7 @@ export type MutationGithubEnterpriseIntegrationUpdateArgs = {
|
|
|
3941
4635
|
webhookSecret: Scalars['String']['input'];
|
|
3942
4636
|
};
|
|
3943
4637
|
export type MutationGithubIntegrationUpdateArgs = {
|
|
4638
|
+
useGitCheckout?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3944
4639
|
vcsChecks: VcsCheck;
|
|
3945
4640
|
};
|
|
3946
4641
|
export type MutationGitlabIntegrationCreateArgs = {
|
|
@@ -3981,6 +4676,48 @@ export type MutationIdentifyUserEventArgs = {
|
|
|
3981
4676
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
3982
4677
|
traits?: InputMaybe<Scalars['String']['input']>;
|
|
3983
4678
|
};
|
|
4679
|
+
export type MutationIntentProjectConfigAddArgs = {
|
|
4680
|
+
config: ConfigInput;
|
|
4681
|
+
project: Scalars['ID']['input'];
|
|
4682
|
+
};
|
|
4683
|
+
export type MutationIntentProjectConfigDeleteArgs = {
|
|
4684
|
+
config: Scalars['ID']['input'];
|
|
4685
|
+
project: Scalars['ID']['input'];
|
|
4686
|
+
};
|
|
4687
|
+
export type MutationIntentProjectConfigUpdateArgs = {
|
|
4688
|
+
config: ConfigInput;
|
|
4689
|
+
project: Scalars['ID']['input'];
|
|
4690
|
+
};
|
|
4691
|
+
export type MutationIntentProjectCreateArgs = {
|
|
4692
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4693
|
+
name: Scalars['String']['input'];
|
|
4694
|
+
space: Scalars['ID']['input'];
|
|
4695
|
+
};
|
|
4696
|
+
export type MutationIntentProjectDeleteArgs = {
|
|
4697
|
+
id: Scalars['ID']['input'];
|
|
4698
|
+
keepResources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4699
|
+
};
|
|
4700
|
+
export type MutationIntentProjectDisableArgs = {
|
|
4701
|
+
id: Scalars['ID']['input'];
|
|
4702
|
+
};
|
|
4703
|
+
export type MutationIntentProjectEnableArgs = {
|
|
4704
|
+
id: Scalars['ID']['input'];
|
|
4705
|
+
};
|
|
4706
|
+
export type MutationIntentProjectUnlockArgs = {
|
|
4707
|
+
id: Scalars['ID']['input'];
|
|
4708
|
+
};
|
|
4709
|
+
export type MutationIntentProjectUpdateArgs = {
|
|
4710
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4711
|
+
id: Scalars['ID']['input'];
|
|
4712
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4713
|
+
space?: InputMaybe<Scalars['ID']['input']>;
|
|
4714
|
+
};
|
|
4715
|
+
export type MutationIntentResourceOperationReviewArgs = {
|
|
4716
|
+
decision: IntentResourceOperationReviewDecision;
|
|
4717
|
+
intentProject: Scalars['ID']['input'];
|
|
4718
|
+
note?: InputMaybe<Scalars['String']['input']>;
|
|
4719
|
+
operationID: Scalars['ID']['input'];
|
|
4720
|
+
};
|
|
3984
4721
|
export type MutationManagedUserDeleteArgs = {
|
|
3985
4722
|
id: Scalars['ID']['input'];
|
|
3986
4723
|
};
|
|
@@ -4043,6 +4780,10 @@ export type MutationModuleEnableArgs = {
|
|
|
4043
4780
|
export type MutationModulePublishArgs = {
|
|
4044
4781
|
id: Scalars['ID']['input'];
|
|
4045
4782
|
};
|
|
4783
|
+
export type MutationModuleShareArgs = {
|
|
4784
|
+
id: Scalars['ID']['input'];
|
|
4785
|
+
input: ModuleShareInput;
|
|
4786
|
+
};
|
|
4046
4787
|
export type MutationModuleUpdateArgs = {
|
|
4047
4788
|
id: Scalars['ID']['input'];
|
|
4048
4789
|
input: ModuleUpdateInput;
|
|
@@ -4091,6 +4832,22 @@ export type MutationPageUserEventArgs = {
|
|
|
4091
4832
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4092
4833
|
properties?: InputMaybe<Scalars['String']['input']>;
|
|
4093
4834
|
};
|
|
4835
|
+
export type MutationPluginDeleteArgs = {
|
|
4836
|
+
id: Scalars['ID']['input'];
|
|
4837
|
+
};
|
|
4838
|
+
export type MutationPluginInstallArgs = {
|
|
4839
|
+
input: PluginInstallInput;
|
|
4840
|
+
};
|
|
4841
|
+
export type MutationPluginTemplateCreateArgs = {
|
|
4842
|
+
input: PluginTemplateCreateInput;
|
|
4843
|
+
};
|
|
4844
|
+
export type MutationPluginTemplateDeleteArgs = {
|
|
4845
|
+
id: Scalars['ID']['input'];
|
|
4846
|
+
};
|
|
4847
|
+
export type MutationPluginUpdateArgs = {
|
|
4848
|
+
id: Scalars['ID']['input'];
|
|
4849
|
+
input: PluginUpdateInput;
|
|
4850
|
+
};
|
|
4094
4851
|
export type MutationPolicyAttachArgs = {
|
|
4095
4852
|
id: Scalars['ID']['input'];
|
|
4096
4853
|
stack: Scalars['ID']['input'];
|
|
@@ -4113,12 +4870,22 @@ export type MutationPolicyDeleteArgs = {
|
|
|
4113
4870
|
export type MutationPolicyDetachArgs = {
|
|
4114
4871
|
id: Scalars['ID']['input'];
|
|
4115
4872
|
};
|
|
4873
|
+
export type MutationPolicyIntentProjectAttachArgs = {
|
|
4874
|
+
id: Scalars['ID']['input'];
|
|
4875
|
+
intentProject: Scalars['ID']['input'];
|
|
4876
|
+
};
|
|
4877
|
+
export type MutationPolicyIntentProjectDetachArgs = {
|
|
4878
|
+
id: Scalars['ID']['input'];
|
|
4879
|
+
};
|
|
4116
4880
|
export type MutationPolicySimulateArgs = {
|
|
4117
4881
|
body: Scalars['String']['input'];
|
|
4118
4882
|
input: Scalars['String']['input'];
|
|
4119
4883
|
libraries?: InputMaybe<PolicyLibrariesInput>;
|
|
4120
4884
|
type: PolicyType;
|
|
4121
4885
|
};
|
|
4886
|
+
export type MutationPolicySimulatev2Args = {
|
|
4887
|
+
input: PolicySimulateInput;
|
|
4888
|
+
};
|
|
4122
4889
|
export type MutationPolicyUpdateArgs = {
|
|
4123
4890
|
body: Scalars['String']['input'];
|
|
4124
4891
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4179,6 +4946,11 @@ export type MutationRunPrioritizeSetArgs = {
|
|
|
4179
4946
|
run: Scalars['ID']['input'];
|
|
4180
4947
|
stack: Scalars['ID']['input'];
|
|
4181
4948
|
};
|
|
4949
|
+
export type MutationRunPrioritySetArgs = {
|
|
4950
|
+
preset: RunPriorityPreset;
|
|
4951
|
+
run: Scalars['ID']['input'];
|
|
4952
|
+
stack: Scalars['ID']['input'];
|
|
4953
|
+
};
|
|
4182
4954
|
export type MutationRunPromoteArgs = {
|
|
4183
4955
|
run: Scalars['ID']['input'];
|
|
4184
4956
|
stack: Scalars['ID']['input'];
|
|
@@ -4221,10 +4993,14 @@ export type MutationRunTriggerArgs = {
|
|
|
4221
4993
|
stack: Scalars['ID']['input'];
|
|
4222
4994
|
};
|
|
4223
4995
|
export type MutationSamlCreateArgs = {
|
|
4996
|
+
claimMapping?: InputMaybe<ClaimMappingInput>;
|
|
4224
4997
|
dynamic: Scalars['Boolean']['input'];
|
|
4225
4998
|
metadata: Scalars['String']['input'];
|
|
4226
4999
|
nameIDFormat?: InputMaybe<SamlNameIdFormat>;
|
|
4227
5000
|
};
|
|
5001
|
+
export type MutationSamlUpdateArgs = {
|
|
5002
|
+
input: SamlUpdateInput;
|
|
5003
|
+
};
|
|
4228
5004
|
export type MutationSavedFilterCreateArgs = {
|
|
4229
5005
|
input: SavedFilterInput;
|
|
4230
5006
|
};
|
|
@@ -4270,6 +5046,11 @@ export type MutationStackCreateArgs = {
|
|
|
4270
5046
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
4271
5047
|
stackObjectID?: InputMaybe<Scalars['String']['input']>;
|
|
4272
5048
|
};
|
|
5049
|
+
export type MutationStackCreateFromIntentArgs = {
|
|
5050
|
+
importState?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5051
|
+
project: Scalars['ID']['input'];
|
|
5052
|
+
stackName?: InputMaybe<Scalars['String']['input']>;
|
|
5053
|
+
};
|
|
4273
5054
|
export type MutationStackDeleteArgs = {
|
|
4274
5055
|
destroyResources?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4275
5056
|
id: Scalars['ID']['input'];
|
|
@@ -4353,6 +5134,19 @@ export type MutationStackManagedStateRollbackArgs = {
|
|
|
4353
5134
|
export type MutationStackReslugArgs = {
|
|
4354
5135
|
id: Scalars['ID']['input'];
|
|
4355
5136
|
};
|
|
5137
|
+
export type MutationStackRoleBindingBatchCreateArgs = {
|
|
5138
|
+
input: StackRoleBindingBatchInput;
|
|
5139
|
+
};
|
|
5140
|
+
export type MutationStackRoleBindingCreateArgs = {
|
|
5141
|
+
input: StackRoleBindingInput;
|
|
5142
|
+
};
|
|
5143
|
+
export type MutationStackRoleBindingDeleteArgs = {
|
|
5144
|
+
id: Scalars['ID']['input'];
|
|
5145
|
+
};
|
|
5146
|
+
export type MutationStackRoleBindingUpdateArgs = {
|
|
5147
|
+
id: Scalars['ID']['input'];
|
|
5148
|
+
input: StackRoleBindingUpdateInput;
|
|
5149
|
+
};
|
|
4356
5150
|
export type MutationStackScheduledDeleteCreateArgs = {
|
|
4357
5151
|
input: ScheduledDeleteInput;
|
|
4358
5152
|
stack: Scalars['ID']['input'];
|
|
@@ -4410,6 +5204,9 @@ export type MutationStarSetArgs = {
|
|
|
4410
5204
|
id: Scalars['ID']['input'];
|
|
4411
5205
|
star: Scalars['Boolean']['input'];
|
|
4412
5206
|
};
|
|
5207
|
+
export type MutationStateDownloadUrlArgs = {
|
|
5208
|
+
input: StateDownloadUrlInput;
|
|
5209
|
+
};
|
|
4413
5210
|
export type MutationSummarizeRunArgs = {
|
|
4414
5211
|
run: Scalars['ID']['input'];
|
|
4415
5212
|
stack: Scalars['ID']['input'];
|
|
@@ -4492,6 +5289,9 @@ export type MutationUserGroupRoleBindingUpdateArgs = {
|
|
|
4492
5289
|
id: Scalars['ID']['input'];
|
|
4493
5290
|
input: UserGroupRoleBindingInput;
|
|
4494
5291
|
};
|
|
5292
|
+
export type MutationUserGuideStartArgs = {
|
|
5293
|
+
id: Scalars['ID']['input'];
|
|
5294
|
+
};
|
|
4495
5295
|
export type MutationUserRoleBindingBatchCreateArgs = {
|
|
4496
5296
|
input: UserRoleBindingBatchInput;
|
|
4497
5297
|
};
|
|
@@ -4569,6 +5369,7 @@ export type MutationWorkerDrainSetArgs = {
|
|
|
4569
5369
|
export type MutationWorkerPoolCreateArgs = {
|
|
4570
5370
|
certificateSigningRequest: Scalars['String']['input'];
|
|
4571
5371
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5372
|
+
driftDetectionRunLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
4572
5373
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4573
5374
|
name: Scalars['String']['input'];
|
|
4574
5375
|
space?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -4585,6 +5386,7 @@ export type MutationWorkerPoolResetArgs = {
|
|
|
4585
5386
|
};
|
|
4586
5387
|
export type MutationWorkerPoolUpdateArgs = {
|
|
4587
5388
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5389
|
+
driftDetectionRunLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
4588
5390
|
id: Scalars['ID']['input'];
|
|
4589
5391
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4590
5392
|
name: Scalars['String']['input'];
|
|
@@ -4618,6 +5420,12 @@ export type NamedWebhooksIntegration = {
|
|
|
4618
5420
|
labels: Array<Scalars['String']['output']>;
|
|
4619
5421
|
/** Name of the webhooks endpoint */
|
|
4620
5422
|
name: Scalars['String']['output'];
|
|
5423
|
+
/**
|
|
5424
|
+
* Plugin that is managing the webhook.
|
|
5425
|
+
* Used to indicate that modifications are restricted by a plugin action.
|
|
5426
|
+
*/
|
|
5427
|
+
plugin?: Maybe<Plugin>;
|
|
5428
|
+
retryOnFailure: Scalars['Boolean']['output'];
|
|
4621
5429
|
/**
|
|
4622
5430
|
* Secret to be hashed and sent with payload
|
|
4623
5431
|
* @deprecated This property is no longer used.
|
|
@@ -4653,6 +5461,7 @@ export type NamedWebhooksIntegrationInput = {
|
|
|
4653
5461
|
labels: Array<Scalars['String']['input']>;
|
|
4654
5462
|
/** Name for the endpoint */
|
|
4655
5463
|
name: Scalars['String']['input'];
|
|
5464
|
+
retryOnFailure?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4656
5465
|
/** Secret to be hashed and sent with payload */
|
|
4657
5466
|
secret?: InputMaybe<Scalars['String']['input']>;
|
|
4658
5467
|
/** Space to use for this integration */
|
|
@@ -4784,12 +5593,141 @@ export type PlanPoliciesOutcome = {
|
|
|
4784
5593
|
/** List of warning messages. */
|
|
4785
5594
|
warn: Array<Scalars['String']['output']>;
|
|
4786
5595
|
};
|
|
5596
|
+
/**
|
|
5597
|
+
* Plugin represents a reusable component that can be attached to various entities
|
|
5598
|
+
* to extend functionality within Spacelift.
|
|
5599
|
+
*/
|
|
5600
|
+
export type Plugin = {
|
|
5601
|
+
__typename?: 'Plugin';
|
|
5602
|
+
/** Unix timestamp representing the plugin creation. */
|
|
5603
|
+
createdAt: Scalars['Int']['output'];
|
|
5604
|
+
/** Description of the plugin. */
|
|
5605
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5606
|
+
/** Unique identifier of the plugin. */
|
|
5607
|
+
id: Scalars['ID']['output'];
|
|
5608
|
+
/** Label-based identifier for the plugin. */
|
|
5609
|
+
labelIdentifier: Scalars['String']['output'];
|
|
5610
|
+
/** Arbitrary labels set by the user. */
|
|
5611
|
+
labels: Array<Scalars['String']['output']>;
|
|
5612
|
+
/** Plugin manifest containing configuration and metadata. */
|
|
5613
|
+
manifest: Scalars['String']['output'];
|
|
5614
|
+
/** Human-readable name of the plugin. */
|
|
5615
|
+
name: Scalars['String']['output'];
|
|
5616
|
+
/** Original plugin template used to create the plugin */
|
|
5617
|
+
pluginTemplateDetails?: Maybe<PluginTemplate>;
|
|
5618
|
+
/** URL-safe slug for the plugin. */
|
|
5619
|
+
slug: Scalars['String']['output'];
|
|
5620
|
+
/** Details of the space this Plugin belongs to. */
|
|
5621
|
+
spaceDetails: Space;
|
|
5622
|
+
/** Unix timestamp representing the plugin last update. */
|
|
5623
|
+
updatedAt: Scalars['Int']['output'];
|
|
5624
|
+
};
|
|
5625
|
+
/** All arguments to install a Plugin. */
|
|
5626
|
+
export type PluginInstallInput = {
|
|
5627
|
+
/** Label-based identifier for the plugin. */
|
|
5628
|
+
labelIdentifier: Scalars['String']['input'];
|
|
5629
|
+
/** User-defined labels for the Plugin. */
|
|
5630
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5631
|
+
/** Name of the plugin. */
|
|
5632
|
+
name: Scalars['String']['input'];
|
|
5633
|
+
/** Plugin parameters with values */
|
|
5634
|
+
parameters?: InputMaybe<Array<PluginInstallParameterInput>>;
|
|
5635
|
+
/** Plugin template used to install the plugin */
|
|
5636
|
+
pluginTemplateID: Scalars['ID']['input'];
|
|
5637
|
+
/** ID of the space this Plugin will belong to. */
|
|
5638
|
+
space: Scalars['ID']['input'];
|
|
5639
|
+
};
|
|
5640
|
+
/** Plugin template parameter input. */
|
|
5641
|
+
export type PluginInstallParameterInput = {
|
|
5642
|
+
/** Unique identifier */
|
|
5643
|
+
id: Scalars['String']['input'];
|
|
5644
|
+
/** Value of the parameter */
|
|
5645
|
+
value: Scalars['String']['input'];
|
|
5646
|
+
};
|
|
5647
|
+
export type PluginLogsResponse = {
|
|
5648
|
+
__typename?: 'PluginLogsResponse';
|
|
5649
|
+
message: LogMessage;
|
|
5650
|
+
pluginName: Scalars['String']['output'];
|
|
5651
|
+
};
|
|
5652
|
+
/**
|
|
5653
|
+
* Plugin template represents a reusable plugin configuration that can be used
|
|
5654
|
+
* to create plugin instances.
|
|
5655
|
+
*/
|
|
5656
|
+
export type PluginTemplate = {
|
|
5657
|
+
__typename?: 'PluginTemplate';
|
|
5658
|
+
/** Unix timestamp representing the plugin template creation. */
|
|
5659
|
+
createdAt: Scalars['Int']['output'];
|
|
5660
|
+
/** Description of the plugin template. */
|
|
5661
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5662
|
+
/** Unique identifier of the plugin template. */
|
|
5663
|
+
id: Scalars['ID']['output'];
|
|
5664
|
+
/** Global plugins are native to Spacelift and cannot be removed */
|
|
5665
|
+
isGlobal: Scalars['Boolean']['output'];
|
|
5666
|
+
/** Arbitrary labels set by the user. */
|
|
5667
|
+
labels: Array<Scalars['String']['output']>;
|
|
5668
|
+
/** Plugin template manifest containing configuration and metadata. */
|
|
5669
|
+
manifest: Scalars['String']['output'];
|
|
5670
|
+
/** Human-readable name of the plugin template. */
|
|
5671
|
+
name: Scalars['String']['output'];
|
|
5672
|
+
/** Template parameters as JSON */
|
|
5673
|
+
parameters: Array<PluginTemplateParameter>;
|
|
5674
|
+
/** URL-safe slug for the plugin template. */
|
|
5675
|
+
slug: Scalars['String']['output'];
|
|
5676
|
+
/** Unix timestamp representing the plugin template last update. */
|
|
5677
|
+
updatedAt: Scalars['Int']['output'];
|
|
5678
|
+
};
|
|
5679
|
+
/** All arguments to create a Plugin Template. */
|
|
5680
|
+
export type PluginTemplateCreateInput = {
|
|
5681
|
+
/** Description of the plugin template. */
|
|
5682
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5683
|
+
/** User-defined labels for the Plugin Template. */
|
|
5684
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5685
|
+
/** Plugin template manifest containing configuration and metadata. */
|
|
5686
|
+
manifest: Scalars['String']['input'];
|
|
5687
|
+
/** Name of the plugin template. */
|
|
5688
|
+
name: Scalars['String']['input'];
|
|
5689
|
+
};
|
|
5690
|
+
/** Plugin template parameter configuration */
|
|
5691
|
+
export type PluginTemplateParameter = {
|
|
5692
|
+
__typename?: 'PluginTemplateParameter';
|
|
5693
|
+
/** The default value for the parameter */
|
|
5694
|
+
default?: Maybe<Scalars['String']['output']>;
|
|
5695
|
+
/** Parameter description */
|
|
5696
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5697
|
+
/** Unique identifier */
|
|
5698
|
+
id: Scalars['String']['output'];
|
|
5699
|
+
/** Parameter name */
|
|
5700
|
+
name: Scalars['String']['output'];
|
|
5701
|
+
/** Whether the parameter is required */
|
|
5702
|
+
required: Scalars['Boolean']['output'];
|
|
5703
|
+
/** Whether the parameter contains sensitive data */
|
|
5704
|
+
sensitive: Scalars['Boolean']['output'];
|
|
5705
|
+
/** Parameter type */
|
|
5706
|
+
type: PluginTemplateParameterType;
|
|
5707
|
+
};
|
|
5708
|
+
export declare enum PluginTemplateParameterType {
|
|
5709
|
+
Boolean = "BOOLEAN",
|
|
5710
|
+
None = "NONE",
|
|
5711
|
+
Number = "NUMBER",
|
|
5712
|
+
String = "STRING"
|
|
5713
|
+
}
|
|
5714
|
+
/** All arguments to update a Plugin. */
|
|
5715
|
+
export type PluginUpdateInput = {
|
|
5716
|
+
/** Description of the plugin. */
|
|
5717
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5718
|
+
/** User-defined labels for the Plugin. */
|
|
5719
|
+
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5720
|
+
/** Name of the plugin. */
|
|
5721
|
+
name: Scalars['String']['input'];
|
|
5722
|
+
};
|
|
4787
5723
|
/**
|
|
4788
5724
|
* Policy is a rule or collection of rules that allow injecting custom logic into
|
|
4789
5725
|
* Spacelift's decision points.
|
|
4790
5726
|
*/
|
|
4791
5727
|
export type Policy = Notifiable & {
|
|
4792
5728
|
__typename?: 'Policy';
|
|
5729
|
+
/** List of intent projects attached to this Policy */
|
|
5730
|
+
attachedIntentProjects: Array<PolicyIntentProjectAttachment>;
|
|
4793
5731
|
/** Single stack attachment for this Policy. */
|
|
4794
5732
|
attachedStack?: Maybe<PolicyStackAttachment>;
|
|
4795
5733
|
/** List of Stacks attached to this Policy. */
|
|
@@ -4800,6 +5738,8 @@ export type Policy = Notifiable & {
|
|
|
4800
5738
|
createdAt: Scalars['Int']['output'];
|
|
4801
5739
|
/** Description of the policy. */
|
|
4802
5740
|
description?: Maybe<Scalars['String']['output']>;
|
|
5741
|
+
/** Type of policy engine that will be used to evaluate this policy */
|
|
5742
|
+
engineType: PolicyEngineType;
|
|
4803
5743
|
/**
|
|
4804
5744
|
* List of all the policy evaluation records available in the account,
|
|
4805
5745
|
* associated with this policy.
|
|
@@ -4807,6 +5747,8 @@ export type Policy = Notifiable & {
|
|
|
4807
5747
|
evaluationRecords: Array<PolicyEvaluationRecord>;
|
|
4808
5748
|
/** Returns a single policy evaluation sample. */
|
|
4809
5749
|
evaluationSample?: Maybe<PolicyEvaluationSample>;
|
|
5750
|
+
/** Indicates whether any intent projects are attached to this policy */
|
|
5751
|
+
hasAttachedIntentProjects: Scalars['Boolean']['output'];
|
|
4810
5752
|
/** Indicates whether any stacks are attached to this policy, either directly or via auto-attachment. */
|
|
4811
5753
|
hasAttachedStacks: Scalars['Boolean']['output'];
|
|
4812
5754
|
/** Unique (within a single organization), immutable name of the policy. */
|
|
@@ -4817,6 +5759,11 @@ export type Policy = Notifiable & {
|
|
|
4817
5759
|
name: Scalars['String']['output'];
|
|
4818
5760
|
/** Number of the new policy notifications. */
|
|
4819
5761
|
notificationCount: Scalars['Int']['output'];
|
|
5762
|
+
/**
|
|
5763
|
+
* Plugin that is managing the policy.
|
|
5764
|
+
* Used to indicate that modifications are restricted to plugin actions.
|
|
5765
|
+
*/
|
|
5766
|
+
plugin?: Maybe<Plugin>;
|
|
4820
5767
|
sampleCount: Scalars['Int']['output'];
|
|
4821
5768
|
searchEvaluationRecordSuggestions: SearchSuggestionsOutput;
|
|
4822
5769
|
searchEvaluationRecords: SearchPolicyEvaluationRecordOutput;
|
|
@@ -4869,6 +5816,8 @@ export type PolicyCreateInput = {
|
|
|
4869
5816
|
body: Scalars['String']['input'];
|
|
4870
5817
|
/** Description of the policy. */
|
|
4871
5818
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5819
|
+
/** Engine type of the policy. */
|
|
5820
|
+
engineType?: InputMaybe<PolicyEngineType>;
|
|
4872
5821
|
/** User-defined labels for the Policy. */
|
|
4873
5822
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4874
5823
|
/** Name of the policy. */
|
|
@@ -4880,6 +5829,11 @@ export type PolicyCreateInput = {
|
|
|
4880
5829
|
/** Type of the policy. */
|
|
4881
5830
|
type: PolicyType;
|
|
4882
5831
|
};
|
|
5832
|
+
/** PolicyEngineType represents a type of policy engine that will be used to evaluate policy */
|
|
5833
|
+
export declare enum PolicyEngineType {
|
|
5834
|
+
RegoV0 = "REGO_V0",
|
|
5835
|
+
RegoV1 = "REGO_V1"
|
|
5836
|
+
}
|
|
4883
5837
|
/**
|
|
4884
5838
|
* PolicyEvaluationRecord is a record of policy evaluation. It contains a key,
|
|
4885
5839
|
* which can be separately used to retrieve the associated
|
|
@@ -4915,6 +5869,20 @@ export type PolicyEvaluationSample = {
|
|
|
4915
5869
|
/** String representation of Rego/OPA policy evaluation results. */
|
|
4916
5870
|
results: Scalars['String']['output'];
|
|
4917
5871
|
};
|
|
5872
|
+
export type PolicyIntentProjectAttachment = {
|
|
5873
|
+
__typename?: 'PolicyIntentProjectAttachment';
|
|
5874
|
+
/** Globally unique policy attachment identifier */
|
|
5875
|
+
id: Scalars['ID']['output'];
|
|
5876
|
+
/** Intent policy unique identifier */
|
|
5877
|
+
policyID: Scalars['ID']['output'];
|
|
5878
|
+
/** Intent policy name */
|
|
5879
|
+
policyName: Scalars['String']['output'];
|
|
5880
|
+
/** Intent project unique identifier */
|
|
5881
|
+
projectID: Scalars['ID']['output'];
|
|
5882
|
+
/** Intent project name */
|
|
5883
|
+
projectName: Scalars['String']['output'];
|
|
5884
|
+
projectSpaceDetails: Space;
|
|
5885
|
+
};
|
|
4918
5886
|
/**
|
|
4919
5887
|
* PolicyLibrariesInput is the input containing policy libraries used to
|
|
4920
5888
|
* evaluate the main policy body.
|
|
@@ -4938,6 +5906,19 @@ export type PolicyRuntimeDetails = {
|
|
|
4938
5906
|
/** The version of open-policy-agent used to evaluate policies */
|
|
4939
5907
|
openPolicyAgentVersion: Scalars['String']['output'];
|
|
4940
5908
|
};
|
|
5909
|
+
/** All arguments to simulate a Policy. */
|
|
5910
|
+
export type PolicySimulateInput = {
|
|
5911
|
+
/** Body of the policy. */
|
|
5912
|
+
body: Scalars['String']['input'];
|
|
5913
|
+
/** Engine type of the policy. */
|
|
5914
|
+
engineType?: InputMaybe<PolicyEngineType>;
|
|
5915
|
+
/** Type of the policy. */
|
|
5916
|
+
input: Scalars['String']['input'];
|
|
5917
|
+
/** Libraries used */
|
|
5918
|
+
libraries?: InputMaybe<PolicyLibrariesInput>;
|
|
5919
|
+
/** Type of the policy. */
|
|
5920
|
+
type: PolicyType;
|
|
5921
|
+
};
|
|
4941
5922
|
/** PolicyStackAttachment is the policy-stack attachment viewed from the Policy. */
|
|
4942
5923
|
export type PolicyStackAttachment = {
|
|
4943
5924
|
__typename?: 'PolicyStackAttachment';
|
|
@@ -4985,6 +5966,8 @@ export declare enum PolicyType {
|
|
|
4985
5966
|
GitPush = "GIT_PUSH",
|
|
4986
5967
|
/** Initialization policy - allows blocking runs from executing. */
|
|
4987
5968
|
Initialization = "INITIALIZATION",
|
|
5969
|
+
/** Intent policy - allow/deny operations on resources */
|
|
5970
|
+
Intent = "INTENT",
|
|
4988
5971
|
/** Login policy - account-level RBAC. */
|
|
4989
5972
|
Login = "LOGIN",
|
|
4990
5973
|
/** Notification policy, allows to configure notifications and how they're sent. */
|
|
@@ -5008,6 +5991,8 @@ export type PolicyUpdateInput = {
|
|
|
5008
5991
|
body: Scalars['String']['input'];
|
|
5009
5992
|
/** Description of the policy. */
|
|
5010
5993
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5994
|
+
/** Engine type of the policy. */
|
|
5995
|
+
engineType?: InputMaybe<PolicyEngineType>;
|
|
5011
5996
|
/** User-defined labels for the Policy. */
|
|
5012
5997
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5013
5998
|
/** Name of the policy. */
|
|
@@ -5140,6 +6125,8 @@ export type Query = {
|
|
|
5140
6125
|
accountCanBeDeleted: Scalars['Boolean']['output'];
|
|
5141
6126
|
/** Timestamp when the account can be deleted. */
|
|
5142
6127
|
accountCanBeDeletedAt?: Maybe<Scalars['Int']['output']>;
|
|
6128
|
+
/** Get the currently active user guide progress for the user */
|
|
6129
|
+
activeUserGuideProgress?: Maybe<UserGuideProgress>;
|
|
5143
6130
|
/** Account-level setting indicating if non-root admins can create subspaces. */
|
|
5144
6131
|
allowNonRootAdminSpaceCreation: Scalars['Boolean']['output'];
|
|
5145
6132
|
/** Individual AnsibleHost by ID. */
|
|
@@ -5152,6 +6139,8 @@ export type Query = {
|
|
|
5152
6139
|
apiKeyRoleBinding: ApiKeyRoleBinding;
|
|
5153
6140
|
/** List of all API keys for the account. */
|
|
5154
6141
|
apiKeys: Array<ApiKey>;
|
|
6142
|
+
/** Account-level setting indicating non-human sessions (API keys, Admin Stacks) can manage API keys. */
|
|
6143
|
+
apiKeysManageableByNonHumans: Scalars['Boolean']['output'];
|
|
5155
6144
|
/**
|
|
5156
6145
|
* Account-level setting indicating if API keys can be managed by non-root
|
|
5157
6146
|
* admins.
|
|
@@ -5232,16 +6221,24 @@ export type Query = {
|
|
|
5232
6221
|
blueprint?: Maybe<Blueprint>;
|
|
5233
6222
|
/** The json schema of a blueprint. */
|
|
5234
6223
|
blueprintSchema: Scalars['String']['output'];
|
|
6224
|
+
/** The json schema of a blueprint v2. */
|
|
6225
|
+
blueprintV2Schema: Scalars['String']['output'];
|
|
5235
6226
|
/** Returns a single blueprint group details. */
|
|
5236
6227
|
blueprintVersionedGroup?: Maybe<BlueprintVersionedGroup>;
|
|
5237
6228
|
/** List of branches for a given repository. */
|
|
5238
6229
|
branches: Array<Scalars['String']['output']>;
|
|
6230
|
+
/** Retrieve all completed guides for the user */
|
|
6231
|
+
completedUserGuides: Array<UserGuideProgress>;
|
|
5239
6232
|
/** Details of a single Context. */
|
|
5240
6233
|
context?: Maybe<Context>;
|
|
5241
6234
|
/** List of all the contexts in the account. */
|
|
5242
6235
|
contexts: Array<Context>;
|
|
5243
6236
|
/** Info about git build related data, self-hosted licence. Not valid in SaaS. */
|
|
5244
6237
|
debugInfo: DebugInfo;
|
|
6238
|
+
/** Return default private worker pool runner image for the account */
|
|
6239
|
+
defaultPrivateWorkerPoolRunnerImage: Scalars['String']['output'];
|
|
6240
|
+
/** Return default public worker pool runner image for the account */
|
|
6241
|
+
defaultPublicWorkerPoolRunnerImage: Scalars['String']['output'];
|
|
5245
6242
|
/** EnforceMFA determines whether MFA is required for all users in the account. */
|
|
5246
6243
|
enforceMFA: Scalars['Boolean']['output'];
|
|
5247
6244
|
/**
|
|
@@ -5282,6 +6279,12 @@ export type Query = {
|
|
|
5282
6279
|
id: Scalars['ID']['output'];
|
|
5283
6280
|
/** ID of the GitHub App installation linked to the current account. */
|
|
5284
6281
|
installationId?: Maybe<Scalars['String']['output']>;
|
|
6282
|
+
/** Returns counts of different types of integrations in the account. */
|
|
6283
|
+
integrationsCount: IntegrationsCount;
|
|
6284
|
+
/** Returns IntentProject details */
|
|
6285
|
+
intentProject?: Maybe<IntentProject>;
|
|
6286
|
+
/** Returns all IntentProjects */
|
|
6287
|
+
intentProjects: Array<IntentProject>;
|
|
5285
6288
|
/** Returns true if the generic form is completed */
|
|
5286
6289
|
isGenericFormCompleted: Scalars['Boolean']['output'];
|
|
5287
6290
|
/** List of all supported kubectl versions. */
|
|
@@ -5319,6 +6322,8 @@ export type Query = {
|
|
|
5319
6322
|
notificationCount: Scalars['Int']['output'];
|
|
5320
6323
|
/** OIDC settings, if the account is using OIDC-based SSO. */
|
|
5321
6324
|
oidcSettings?: Maybe<OidcSettings>;
|
|
6325
|
+
/** Return the OIDC subject template for the account */
|
|
6326
|
+
oidcSubjectTemplate?: Maybe<Scalars['String']['output']>;
|
|
5322
6327
|
/** If the account is on the trial period, this indicates the end of it. */
|
|
5323
6328
|
onTrialUntil?: Maybe<Scalars['Int']['output']>;
|
|
5324
6329
|
/** Given version constraints, calculate the latest version that satisfies it. */
|
|
@@ -5327,6 +6332,14 @@ export type Query = {
|
|
|
5327
6332
|
openTofuVersions: Array<Scalars['String']['output']>;
|
|
5328
6333
|
/** List of Spacelift's outgoing addresses. */
|
|
5329
6334
|
outgoingIPAddresses: Array<Scalars['String']['output']>;
|
|
6335
|
+
/** Details of a single Plugin. */
|
|
6336
|
+
plugin?: Maybe<Plugin>;
|
|
6337
|
+
/** Details of a single Plugin Template. */
|
|
6338
|
+
pluginTemplate?: Maybe<PluginTemplate>;
|
|
6339
|
+
/** List of all the plugin templates in the account. */
|
|
6340
|
+
pluginTemplates: Array<PluginTemplate>;
|
|
6341
|
+
/** List of all the plugins in the account. */
|
|
6342
|
+
plugins: Array<Plugin>;
|
|
5330
6343
|
/** List of all the polices in the account. */
|
|
5331
6344
|
policies: Array<Policy>;
|
|
5332
6345
|
/** Details of a single Policy. */
|
|
@@ -5345,6 +6358,8 @@ export type Query = {
|
|
|
5345
6358
|
role: Role;
|
|
5346
6359
|
/** Returns all roles for the account that are accessible by the requester. */
|
|
5347
6360
|
roles: Array<Role>;
|
|
6361
|
+
/** Amount of days that run logs will be retained for */
|
|
6362
|
+
runLogRetentionDays: Scalars['Int']['output'];
|
|
5348
6363
|
/** Return the stack the run belongs to. */
|
|
5349
6364
|
runStack?: Maybe<Stack>;
|
|
5350
6365
|
/** SAML settings, if the account is using SAML-based SSO. */
|
|
@@ -5365,12 +6380,23 @@ export type Query = {
|
|
|
5365
6380
|
searchAuditTrailEntries: SearchAuditTrailEntriesOutput;
|
|
5366
6381
|
/** Information about fields available for searching audit trail entries. */
|
|
5367
6382
|
searchAuditTrailEntriesSuggestions: SearchSuggestionsOutput;
|
|
6383
|
+
searchBlueprintDeployments: SearchBlueprintDeploymentsOutput;
|
|
5368
6384
|
searchBlueprintVersionedGroups: SearchBlueprintVersionedGroupsOutput;
|
|
5369
6385
|
searchBlueprintVersionedGroupsSuggestions: SearchSuggestionsOutput;
|
|
5370
6386
|
searchBlueprints: SearchBlueprintsOutput;
|
|
5371
6387
|
searchBlueprintsSuggestions: SearchSuggestionsOutput;
|
|
5372
6388
|
searchContexts: SearchContextsOutput;
|
|
5373
6389
|
searchContextsSuggestions: SearchSuggestionsOutput;
|
|
6390
|
+
searchIntentProjects: SearchIntentProjectsOutput;
|
|
6391
|
+
searchIntentProjectsSuggestions: SearchSuggestionsOutput;
|
|
6392
|
+
/** Search intent resources with a set of predicates, ordering and paging. */
|
|
6393
|
+
searchIntentResources: SearchIntentResourcesOutput;
|
|
6394
|
+
/** Search intent resources operations with a set of predicates, ordering and paging */
|
|
6395
|
+
searchIntentResourcesOperations: SearchIntentResourcesOperationsOutput;
|
|
6396
|
+
/** Information about fields available for searching intent resource operations */
|
|
6397
|
+
searchIntentResourcesOperationsSuggestions: SearchSuggestionsOutput;
|
|
6398
|
+
/** Information about fields available for searching intent resources. */
|
|
6399
|
+
searchIntentResourcesSuggestions: SearchSuggestionsOutput;
|
|
5374
6400
|
/** Search managed entities with a set of predicates, ordering and paging. */
|
|
5375
6401
|
searchManagedEntities: SearchManagedEntitiesOutput;
|
|
5376
6402
|
/** Search managed entities grouped by providers with a set of predicates, ordering and paging. */
|
|
@@ -5416,6 +6442,8 @@ export type Query = {
|
|
|
5416
6442
|
sessions: Array<Session>;
|
|
5417
6443
|
/** List of all the Modules shared with this account. */
|
|
5418
6444
|
sharedModules: Array<SharedModule>;
|
|
6445
|
+
/** List of all the Modules shared with this account or with spaces inside the account. */
|
|
6446
|
+
sharedModulesV2: Array<ModuleShare>;
|
|
5419
6447
|
/**
|
|
5420
6448
|
* Returns the instance-wide Slack App config information for a Self-Hosted instance. This is used by
|
|
5421
6449
|
* the Spacelift Slack integration to integrate with your Slack workspace. Always returns null on SaaS.
|
|
@@ -5439,6 +6467,7 @@ export type Query = {
|
|
|
5439
6467
|
spaces: Array<Space>;
|
|
5440
6468
|
/** Details of a single Stack. */
|
|
5441
6469
|
stack?: Maybe<Stack>;
|
|
6470
|
+
stackRoleBinding: StackRoleBinding;
|
|
5442
6471
|
/** List of all the stacks in the account. */
|
|
5443
6472
|
stacks: Array<Stack>;
|
|
5444
6473
|
/** Given version constraints, calculate the latest version that satisfies it. */
|
|
@@ -5477,6 +6506,18 @@ export type Query = {
|
|
|
5477
6506
|
*/
|
|
5478
6507
|
usageAspect: AspectOutput;
|
|
5479
6508
|
userGroupRoleBinding: UserGroupRoleBinding;
|
|
6509
|
+
/** Retrieve a single user guide by ID */
|
|
6510
|
+
userGuide?: Maybe<UserGuide>;
|
|
6511
|
+
/** Retrieve a single user guide chapter by ID */
|
|
6512
|
+
userGuideChapter?: Maybe<UserGuideChapter>;
|
|
6513
|
+
/** List all user guide chapters */
|
|
6514
|
+
userGuideChapters: Array<UserGuideChapter>;
|
|
6515
|
+
/** Retrieve a single user guide group by ID */
|
|
6516
|
+
userGuideGroup?: Maybe<UserGuideGroup>;
|
|
6517
|
+
/** List all user guide groups */
|
|
6518
|
+
userGuideGroups: Array<UserGuideGroup>;
|
|
6519
|
+
/** List all available user guides */
|
|
6520
|
+
userGuides: Array<UserGuide>;
|
|
5480
6521
|
userRoleBinding: UserRoleBinding;
|
|
5481
6522
|
/** Details of a single VCSAgentPool. */
|
|
5482
6523
|
vcsAgentPool?: Maybe<VcsAgentPool>;
|
|
@@ -5593,6 +6634,9 @@ export type QueryGithubEnterpriseWebhooksEndpointArgs = {
|
|
|
5593
6634
|
export type QueryGitlabIntegrationArgs = {
|
|
5594
6635
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
5595
6636
|
};
|
|
6637
|
+
export type QueryIntentProjectArgs = {
|
|
6638
|
+
id: Scalars['ID']['input'];
|
|
6639
|
+
};
|
|
5596
6640
|
export type QueryIsGenericFormCompletedArgs = {
|
|
5597
6641
|
name: Scalars['String']['input'];
|
|
5598
6642
|
};
|
|
@@ -5620,6 +6664,12 @@ export type QueryNamedWebhooksIntegrationArgs = {
|
|
|
5620
6664
|
export type QueryOpenTofuEffectiveVersionArgs = {
|
|
5621
6665
|
constraints: Scalars['String']['input'];
|
|
5622
6666
|
};
|
|
6667
|
+
export type QueryPluginArgs = {
|
|
6668
|
+
id: Scalars['ID']['input'];
|
|
6669
|
+
};
|
|
6670
|
+
export type QueryPluginTemplateArgs = {
|
|
6671
|
+
id: Scalars['ID']['input'];
|
|
6672
|
+
};
|
|
5623
6673
|
export type QueryPolicyArgs = {
|
|
5624
6674
|
id: Scalars['ID']['input'];
|
|
5625
6675
|
};
|
|
@@ -5663,6 +6713,9 @@ export type QuerySearchAuditTrailEntriesArgs = {
|
|
|
5663
6713
|
export type QuerySearchAuditTrailEntriesSuggestionsArgs = {
|
|
5664
6714
|
input: SearchSuggestionsInput;
|
|
5665
6715
|
};
|
|
6716
|
+
export type QuerySearchBlueprintDeploymentsArgs = {
|
|
6717
|
+
input: SearchInput;
|
|
6718
|
+
};
|
|
5666
6719
|
export type QuerySearchBlueprintVersionedGroupsArgs = {
|
|
5667
6720
|
input: SearchInput;
|
|
5668
6721
|
};
|
|
@@ -5681,6 +6734,24 @@ export type QuerySearchContextsArgs = {
|
|
|
5681
6734
|
export type QuerySearchContextsSuggestionsArgs = {
|
|
5682
6735
|
input: SearchSuggestionsInput;
|
|
5683
6736
|
};
|
|
6737
|
+
export type QuerySearchIntentProjectsArgs = {
|
|
6738
|
+
input: SearchInput;
|
|
6739
|
+
};
|
|
6740
|
+
export type QuerySearchIntentProjectsSuggestionsArgs = {
|
|
6741
|
+
input: SearchSuggestionsInput;
|
|
6742
|
+
};
|
|
6743
|
+
export type QuerySearchIntentResourcesArgs = {
|
|
6744
|
+
input: SearchInput;
|
|
6745
|
+
};
|
|
6746
|
+
export type QuerySearchIntentResourcesOperationsArgs = {
|
|
6747
|
+
input: SearchInput;
|
|
6748
|
+
};
|
|
6749
|
+
export type QuerySearchIntentResourcesOperationsSuggestionsArgs = {
|
|
6750
|
+
input: SearchSuggestionsInput;
|
|
6751
|
+
};
|
|
6752
|
+
export type QuerySearchIntentResourcesSuggestionsArgs = {
|
|
6753
|
+
input: SearchSuggestionsInput;
|
|
6754
|
+
};
|
|
5684
6755
|
export type QuerySearchManagedEntitiesArgs = {
|
|
5685
6756
|
input: SearchInput;
|
|
5686
6757
|
};
|
|
@@ -5698,9 +6769,11 @@ export type QuerySearchManagedEntitiesSuggestionsArgs = {
|
|
|
5698
6769
|
};
|
|
5699
6770
|
export type QuerySearchModulesArgs = {
|
|
5700
6771
|
input: SearchInput;
|
|
6772
|
+
returnModuleSharing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5701
6773
|
};
|
|
5702
6774
|
export type QuerySearchModulesSuggestionsArgs = {
|
|
5703
6775
|
input: SearchSuggestionsInput;
|
|
6776
|
+
returnModuleSharing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5704
6777
|
};
|
|
5705
6778
|
export type QuerySearchNamedWebhooksIntegrationsArgs = {
|
|
5706
6779
|
input: SearchInput;
|
|
@@ -5747,9 +6820,15 @@ export type QuerySearchWorkerPoolsSuggestionsArgs = {
|
|
|
5747
6820
|
export type QuerySpaceArgs = {
|
|
5748
6821
|
id: Scalars['ID']['input'];
|
|
5749
6822
|
};
|
|
6823
|
+
export type QuerySpacesArgs = {
|
|
6824
|
+
input?: InputMaybe<SearchSpacesInput>;
|
|
6825
|
+
};
|
|
5750
6826
|
export type QueryStackArgs = {
|
|
5751
6827
|
id: Scalars['ID']['input'];
|
|
5752
6828
|
};
|
|
6829
|
+
export type QueryStackRoleBindingArgs = {
|
|
6830
|
+
id: Scalars['ID']['input'];
|
|
6831
|
+
};
|
|
5753
6832
|
export type QueryTerraformEffectiveVersionArgs = {
|
|
5754
6833
|
constraints: Scalars['String']['input'];
|
|
5755
6834
|
};
|
|
@@ -5767,6 +6846,15 @@ export type QueryUsageAspectArgs = {
|
|
|
5767
6846
|
export type QueryUserGroupRoleBindingArgs = {
|
|
5768
6847
|
id: Scalars['ID']['input'];
|
|
5769
6848
|
};
|
|
6849
|
+
export type QueryUserGuideArgs = {
|
|
6850
|
+
id: Scalars['ID']['input'];
|
|
6851
|
+
};
|
|
6852
|
+
export type QueryUserGuideChapterArgs = {
|
|
6853
|
+
id: Scalars['ID']['input'];
|
|
6854
|
+
};
|
|
6855
|
+
export type QueryUserGuideGroupArgs = {
|
|
6856
|
+
id: Scalars['ID']['input'];
|
|
6857
|
+
};
|
|
5770
6858
|
export type QueryUserRoleBindingArgs = {
|
|
5771
6859
|
id: Scalars['ID']['input'];
|
|
5772
6860
|
};
|
|
@@ -5807,7 +6895,7 @@ export type Role = {
|
|
|
5807
6895
|
roleBindingsCount: Scalars['Int']['output'];
|
|
5808
6896
|
slug: Scalars['String']['output'];
|
|
5809
6897
|
};
|
|
5810
|
-
export type RoleBinding = ApiKeyRoleBinding | UserGroupRoleBinding | UserRoleBinding;
|
|
6898
|
+
export type RoleBinding = ApiKeyRoleBinding | StackRoleBinding | UserGroupRoleBinding | UserRoleBinding;
|
|
5811
6899
|
export type RoleBindingInput = {
|
|
5812
6900
|
/** ID of the role. */
|
|
5813
6901
|
roleID: Scalars['ID']['input'];
|
|
@@ -5915,6 +7003,10 @@ export type Run = {
|
|
|
5915
7003
|
next?: Maybe<Run>;
|
|
5916
7004
|
/** List of outcomes for policies evaluated against this runs plan. */
|
|
5917
7005
|
planPoliciesOutcomes: Array<PlanPoliciesOutcome>;
|
|
7006
|
+
/** The logs associated with the plugins of a run. */
|
|
7007
|
+
pluginLogs: Array<PluginLogsResponse>;
|
|
7008
|
+
/** A download URL for the logs of a plugin. */
|
|
7009
|
+
pluginLogsDownloadURL?: Maybe<LogsDownloadUrl>;
|
|
5918
7010
|
/** Policy evaluation sample for a given key, if available. */
|
|
5919
7011
|
policyReceiptSample?: Maybe<PolicyEvaluationSample>;
|
|
5920
7012
|
/** List of policy evaluations events that affected this run. */
|
|
@@ -5973,6 +7065,10 @@ export type RunLogsDownloadUrlArgs = {
|
|
|
5973
7065
|
stateVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
5974
7066
|
};
|
|
5975
7067
|
/** Run represents the main concept in Spacelift. */
|
|
7068
|
+
export type RunPluginLogsDownloadUrlArgs = {
|
|
7069
|
+
pluginName: Scalars['String']['input'];
|
|
7070
|
+
};
|
|
7071
|
+
/** Run represents the main concept in Spacelift. */
|
|
5976
7072
|
export type RunPolicyReceiptSampleArgs = {
|
|
5977
7073
|
id: Scalars['ID']['input'];
|
|
5978
7074
|
};
|
|
@@ -6006,6 +7102,8 @@ export type RunDependency = {
|
|
|
6006
7102
|
runUpdatedAt: Scalars['Int']['output'];
|
|
6007
7103
|
/** The stack id of the run. */
|
|
6008
7104
|
stackId: Scalars['ID']['output'];
|
|
7105
|
+
/** The stack name of the run. */
|
|
7106
|
+
stackName: Scalars['String']['output'];
|
|
6009
7107
|
/** The state of the run. */
|
|
6010
7108
|
state: RunState;
|
|
6011
7109
|
};
|
|
@@ -6030,11 +7128,13 @@ export type RunExternalDependencyMarkAsCompletedResponse = {
|
|
|
6030
7128
|
__typename?: 'RunExternalDependencyMarkAsCompletedResponse';
|
|
6031
7129
|
/** there needs to be at least one field */
|
|
6032
7130
|
phantom: Scalars['Boolean']['output'];
|
|
7131
|
+
status: RunExternalDependencyStatus;
|
|
6033
7132
|
};
|
|
6034
7133
|
export declare enum RunExternalDependencyStatus {
|
|
6035
7134
|
Failed = "FAILED",
|
|
6036
7135
|
Finished = "FINISHED",
|
|
6037
|
-
Pending = "PENDING"
|
|
7136
|
+
Pending = "PENDING",
|
|
7137
|
+
Skipped = "SKIPPED"
|
|
6038
7138
|
}
|
|
6039
7139
|
export type RunIgnoredTrigger = {
|
|
6040
7140
|
__typename?: 'RunIgnoredTrigger';
|
|
@@ -6069,6 +7169,8 @@ export type RunPolicyReceipt = {
|
|
|
6069
7169
|
__typename?: 'RunPolicyReceipt';
|
|
6070
7170
|
/** Timestamp representing the moment of policy evaluation. */
|
|
6071
7171
|
createdAt: Scalars['Int']['output'];
|
|
7172
|
+
/** Type of policy engine that was used to evaluate this policy */
|
|
7173
|
+
engineType: PolicyEngineType;
|
|
6072
7174
|
/** Flags generated by the policy evaluation, if any. */
|
|
6073
7175
|
flags: Array<Scalars['String']['output']>;
|
|
6074
7176
|
/** Globally unique ID of this policy receipt. */
|
|
@@ -6088,6 +7190,15 @@ export type RunPolicyReceipt = {
|
|
|
6088
7190
|
/** Indicates whether the policy evaluation was sampled. */
|
|
6089
7191
|
sampled: Scalars['Boolean']['output'];
|
|
6090
7192
|
};
|
|
7193
|
+
/** RunPriorityPreset represents predefined priority levels for runs. */
|
|
7194
|
+
export declare enum RunPriorityPreset {
|
|
7195
|
+
/** Highest priority - run will be scheduled before other runs. */
|
|
7196
|
+
High = "high",
|
|
7197
|
+
/** Lowest priority - run will be scheduled after other runs. */
|
|
7198
|
+
Low = "low",
|
|
7199
|
+
/** Default priority based on run type (blocking, non-blocking, drift detection). */
|
|
7200
|
+
Normal = "normal"
|
|
7201
|
+
}
|
|
6091
7202
|
/**
|
|
6092
7203
|
* RunResourceState represents a state of the Run.
|
|
6093
7204
|
* It's for Terraform-Provider, to allow spacelift run to read the state of another run.
|
|
@@ -6309,6 +7420,8 @@ export type RuntimeConfig = {
|
|
|
6309
7420
|
beforePlan: Array<Scalars['String']['output']>;
|
|
6310
7421
|
/** Environment variables */
|
|
6311
7422
|
environment: Array<EnvVar>;
|
|
7423
|
+
/** List of paths to include in a git sparse checkout. */
|
|
7424
|
+
gitSparseCheckoutPaths: Array<Scalars['String']['output']>;
|
|
6312
7425
|
/** Indicates where the root of the Terraform project is. */
|
|
6313
7426
|
projectRoot: Scalars['String']['output'];
|
|
6314
7427
|
/** Name of the Docker image used to process the Run. */
|
|
@@ -6356,6 +7469,8 @@ export type RuntimeConfigInput = {
|
|
|
6356
7469
|
beforePlan?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6357
7470
|
/** Environment variables */
|
|
6358
7471
|
environment?: InputMaybe<Array<EnvVarInput>>;
|
|
7472
|
+
/** List of paths for git sparse checkout. */
|
|
7473
|
+
gitSparseCheckoutPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6359
7474
|
/** Indicates where the root of the Terraform project is. */
|
|
6360
7475
|
projectRoot?: InputMaybe<Scalars['String']['input']>;
|
|
6361
7476
|
/** Name of the Docker image used to process the Run. */
|
|
@@ -6387,6 +7502,8 @@ export type SamlSettings = {
|
|
|
6387
7502
|
* are incorrect.
|
|
6388
7503
|
*/
|
|
6389
7504
|
adminLogin?: Maybe<Scalars['String']['output']>;
|
|
7505
|
+
/** contains custom claims mapping */
|
|
7506
|
+
claimMapping: ClaimMapping;
|
|
6390
7507
|
/** Identity provider metadata, if statically provided. */
|
|
6391
7508
|
idpMetadata?: Maybe<Scalars['String']['output']>;
|
|
6392
7509
|
/** Identity provider metadata URL, if the provider supports dynamic metadata retrieval. */
|
|
@@ -6394,6 +7511,9 @@ export type SamlSettings = {
|
|
|
6394
7511
|
/** The format used when requesting the NameID (user/login name) from the identity provider. */
|
|
6395
7512
|
nameIDFormat: SamlNameIdFormat;
|
|
6396
7513
|
};
|
|
7514
|
+
export type SamlUpdateInput = {
|
|
7515
|
+
claimMapping?: InputMaybe<ClaimMappingInput>;
|
|
7516
|
+
};
|
|
6397
7517
|
/**
|
|
6398
7518
|
* SampledPolicyLibrary represents a single policy library captured as part of a
|
|
6399
7519
|
* policy evaluation sample.
|
|
@@ -6574,6 +7694,11 @@ export type SearchAuditTrailEntriesOutput = {
|
|
|
6574
7694
|
edges: Array<AuditTrailEntriesConnection>;
|
|
6575
7695
|
pageInfo: PageInfo;
|
|
6576
7696
|
};
|
|
7697
|
+
export type SearchBlueprintDeploymentsOutput = {
|
|
7698
|
+
__typename?: 'SearchBlueprintDeploymentsOutput';
|
|
7699
|
+
edges: Array<BlueprintDeploymentConnection>;
|
|
7700
|
+
pageInfo: PageInfo;
|
|
7701
|
+
};
|
|
6577
7702
|
export type SearchBlueprintVersionedGroupsOutput = {
|
|
6578
7703
|
__typename?: 'SearchBlueprintVersionedGroupsOutput';
|
|
6579
7704
|
edges: Array<BlueprintVersionedGroupsConnection>;
|
|
@@ -6611,6 +7736,21 @@ export type SearchInput = {
|
|
|
6611
7736
|
/** Which page to return. */
|
|
6612
7737
|
requestedPage?: InputMaybe<SearchQueryRequestedPage>;
|
|
6613
7738
|
};
|
|
7739
|
+
export type SearchIntentProjectsOutput = {
|
|
7740
|
+
__typename?: 'SearchIntentProjectsOutput';
|
|
7741
|
+
edges: Array<IntentProjectsConnection>;
|
|
7742
|
+
pageInfo: PageInfo;
|
|
7743
|
+
};
|
|
7744
|
+
export type SearchIntentResourcesOperationsOutput = {
|
|
7745
|
+
__typename?: 'SearchIntentResourcesOperationsOutput';
|
|
7746
|
+
edges: Array<IntentResourcesOperationConnection>;
|
|
7747
|
+
pageInfo: PageInfo;
|
|
7748
|
+
};
|
|
7749
|
+
export type SearchIntentResourcesOutput = {
|
|
7750
|
+
__typename?: 'SearchIntentResourcesOutput';
|
|
7751
|
+
edges: Array<IntentResourceConnection>;
|
|
7752
|
+
pageInfo: PageInfo;
|
|
7753
|
+
};
|
|
6614
7754
|
export type SearchManagedEntitiesGroupedByProvidersOutput = {
|
|
6615
7755
|
__typename?: 'SearchManagedEntitiesGroupedByProvidersOutput';
|
|
6616
7756
|
edges: Array<ManagedEntitiesGroupedByProvidersConnection>;
|
|
@@ -6669,6 +7809,8 @@ export type SearchQueryFieldConstraint = {
|
|
|
6669
7809
|
booleanEquals?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
6670
7810
|
/** enumEquals constraints the field to be equal to one of the given values. */
|
|
6671
7811
|
enumEquals?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7812
|
+
/** hierarchyNode constraints the field to be contained in one of the given values. */
|
|
7813
|
+
hierarchyNode?: InputMaybe<SearchQueryFieldConstraintHierarchyNodeList>;
|
|
6672
7814
|
/**
|
|
6673
7815
|
* hierarchyNodeValueEquals constraints the field to be contained in one of the given values
|
|
6674
7816
|
* ID fields of SearchSuggestionsPossibleValuesHierarchyNode's are expected here
|
|
@@ -6684,6 +7826,16 @@ export type SearchQueryFieldConstraint = {
|
|
|
6684
7826
|
/** timeInRange constraints the field to be within the time range. */
|
|
6685
7827
|
timeInRange?: InputMaybe<SearchQueryFieldConstraintTimeInRange>;
|
|
6686
7828
|
};
|
|
7829
|
+
export type SearchQueryFieldConstraintHierarchyNode = {
|
|
7830
|
+
/** ID fields of SearchSuggestionsPossibleValuesHierarchyNode's are expected here as value. */
|
|
7831
|
+
equals: Scalars['String']['input'];
|
|
7832
|
+
/** Should descendants be included in the search results. */
|
|
7833
|
+
includeDescendants: Scalars['Boolean']['input'];
|
|
7834
|
+
};
|
|
7835
|
+
export type SearchQueryFieldConstraintHierarchyNodeList = {
|
|
7836
|
+
/** List of hierarchy node constraints */
|
|
7837
|
+
nodes: Array<SearchQueryFieldConstraintHierarchyNode>;
|
|
7838
|
+
};
|
|
6687
7839
|
export declare enum SearchQueryFieldConstraintTimeInLast {
|
|
6688
7840
|
Last1D = "LAST1D",
|
|
6689
7841
|
Last1H = "LAST1H",
|
|
@@ -6740,6 +7892,11 @@ export type SearchSchedulableRunsOutput = {
|
|
|
6740
7892
|
edges: Array<RunWithPositionConnection>;
|
|
6741
7893
|
pageInfo: PageInfo;
|
|
6742
7894
|
};
|
|
7895
|
+
/** Arguments used to filter spaces. */
|
|
7896
|
+
export type SearchSpacesInput = {
|
|
7897
|
+
/** Optional actions parameter filters spaces where the user can perform ALL specified actions. */
|
|
7898
|
+
actions?: InputMaybe<Array<Action>>;
|
|
7899
|
+
};
|
|
6743
7900
|
/** SearchStacksOutput is a page of Stacks. */
|
|
6744
7901
|
export type SearchStacksOutput = {
|
|
6745
7902
|
__typename?: 'SearchStacksOutput';
|
|
@@ -6793,6 +7950,8 @@ export type SearchSuggestionsPossibleValuesBoolean = {
|
|
|
6793
7950
|
__typename?: 'SearchSuggestionsPossibleValuesBoolean';
|
|
6794
7951
|
/** counts of the respective values in the current result set. */
|
|
6795
7952
|
counts: Array<Scalars['Int']['output']>;
|
|
7953
|
+
/** directCounts is always null for non-hierarchical fields (kept for consistency with hierarchy type). */
|
|
7954
|
+
directCounts?: Maybe<Array<Scalars['Int']['output']>>;
|
|
6796
7955
|
/** values are the possible values of the field. */
|
|
6797
7956
|
values: Array<Scalars['Boolean']['output']>;
|
|
6798
7957
|
};
|
|
@@ -6801,14 +7960,27 @@ export type SearchSuggestionsPossibleValuesEnum = {
|
|
|
6801
7960
|
__typename?: 'SearchSuggestionsPossibleValuesEnum';
|
|
6802
7961
|
/** counts of the respective values in the current result set. */
|
|
6803
7962
|
counts: Array<Scalars['Int']['output']>;
|
|
7963
|
+
/** directCounts is always null for non-hierarchical fields (kept for consistency with hierarchy type). */
|
|
7964
|
+
directCounts?: Maybe<Array<Scalars['Int']['output']>>;
|
|
6804
7965
|
/** values are the possible values of the field. */
|
|
6805
7966
|
values: Array<Scalars['String']['output']>;
|
|
6806
7967
|
};
|
|
6807
7968
|
/** SearchSuggestionsPossibleValuesHierarchy describes possible values of a hierarchical field. */
|
|
6808
7969
|
export type SearchSuggestionsPossibleValuesHierarchy = {
|
|
6809
7970
|
__typename?: 'SearchSuggestionsPossibleValuesHierarchy';
|
|
6810
|
-
/**
|
|
7971
|
+
/**
|
|
7972
|
+
* counts of the respective values in the current result set.
|
|
7973
|
+
* For hierarchical fields, this includes unique IDs at this node AND all descendant nodes.
|
|
7974
|
+
*/
|
|
6811
7975
|
counts: Array<Scalars['Int']['output']>;
|
|
7976
|
+
/**
|
|
7977
|
+
* directCounts contains the count of unique IDs directly at each node (excluding descendants).
|
|
7978
|
+
* This allows frontends to calculate:
|
|
7979
|
+
* - Direct count: directCounts[i]
|
|
7980
|
+
* - Descendant count: counts[i] - directCounts[i]
|
|
7981
|
+
* Only populated for hierarchical fields; null for others.
|
|
7982
|
+
*/
|
|
7983
|
+
directCounts?: Maybe<Array<Scalars['Int']['output']>>;
|
|
6812
7984
|
/** values are the possible values of the field. */
|
|
6813
7985
|
values: Array<SearchSuggestionsPossibleValuesHierarchyNode>;
|
|
6814
7986
|
};
|
|
@@ -6826,6 +7998,8 @@ export type SearchSuggestionsPossibleValuesString = {
|
|
|
6826
7998
|
__typename?: 'SearchSuggestionsPossibleValuesString';
|
|
6827
7999
|
/** counts of the respective values in the current result set. */
|
|
6828
8000
|
counts: Array<Scalars['Int']['output']>;
|
|
8001
|
+
/** directCounts is always null for non-hierarchical fields (kept for consistency with hierarchy type). */
|
|
8002
|
+
directCounts?: Maybe<Array<Scalars['Int']['output']>>;
|
|
6829
8003
|
/** values are the possible values of the field. */
|
|
6830
8004
|
values: Array<Scalars['String']['output']>;
|
|
6831
8005
|
};
|
|
@@ -6978,7 +8152,7 @@ export type SharedModuleVersionsArgs = {
|
|
|
6978
8152
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
6979
8153
|
};
|
|
6980
8154
|
/**
|
|
6981
|
-
*
|
|
8155
|
+
* SharedVersion contains information about a module version that has been shared with this
|
|
6982
8156
|
* account by another Spacelift account.
|
|
6983
8157
|
*/
|
|
6984
8158
|
export type SharedVersion = {
|
|
@@ -7230,8 +8404,12 @@ export type Stack = Hookable & Notifiable & {
|
|
|
7230
8404
|
blocker?: Maybe<Run>;
|
|
7231
8405
|
/** Will point to a blueprint if the stack has been created using one. */
|
|
7232
8406
|
blueprint?: Maybe<Blueprint>;
|
|
8407
|
+
/** Will point to a blueprint deployment if the stack has been created using one. */
|
|
8408
|
+
blueprintDeployment?: Maybe<BlueprintDeployment>;
|
|
7233
8409
|
/** Git branch of the repo that the Stack is tracking. */
|
|
7234
8410
|
branch: Scalars['String']['output'];
|
|
8411
|
+
/** Whether the user has read privileges for this Stack. */
|
|
8412
|
+
canRead: Scalars['Boolean']['output'];
|
|
7235
8413
|
/** Whether the user has write privileges for this Stack. */
|
|
7236
8414
|
canWrite: Scalars['Boolean']['output'];
|
|
7237
8415
|
/** Full list of stack config elements. */
|
|
@@ -7347,6 +8525,8 @@ export type Stack = Hookable & Notifiable & {
|
|
|
7347
8525
|
repositoryTags: Array<Scalars['String']['output']>;
|
|
7348
8526
|
/** Git repository URL tracked by this stack. */
|
|
7349
8527
|
repositoryURL?: Maybe<Scalars['String']['output']>;
|
|
8528
|
+
/** List of role bindings for this Stack. */
|
|
8529
|
+
roleBindings: Array<StackRoleBinding>;
|
|
7350
8530
|
/** Individual Run (or task) by ID. */
|
|
7351
8531
|
run?: Maybe<Run>;
|
|
7352
8532
|
runResourceState?: Maybe<RunResourceState>;
|
|
@@ -7448,7 +8628,8 @@ export type StackConfigElementArgs = {
|
|
|
7448
8628
|
};
|
|
7449
8629
|
/** Stack represents a single Spacelift project. */
|
|
7450
8630
|
export type StackDependencyArgs = {
|
|
7451
|
-
|
|
8631
|
+
dependsOnStackId?: InputMaybe<Scalars['ID']['input']>;
|
|
8632
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
7452
8633
|
};
|
|
7453
8634
|
/** Stack represents a single Spacelift project. */
|
|
7454
8635
|
export type StackEntityArgs = {
|
|
@@ -7539,6 +8720,10 @@ export type StackAwsIntegrationAttachment = {
|
|
|
7539
8720
|
id: Scalars['ID']['output'];
|
|
7540
8721
|
/** ID of the attached integration. */
|
|
7541
8722
|
integrationId: Scalars['ID']['output'];
|
|
8723
|
+
/** Whether the context is autoattached to the stack. */
|
|
8724
|
+
isAutoattached: Scalars['Boolean']['output'];
|
|
8725
|
+
/** Labels of the attached integration. */
|
|
8726
|
+
labels: Array<Scalars['String']['output']>;
|
|
7542
8727
|
/** Whether the integration is a legacy integration or not. */
|
|
7543
8728
|
legacy: Scalars['Boolean']['output'];
|
|
7544
8729
|
/** The friendly name of the integration. */
|
|
@@ -7563,6 +8748,10 @@ export type StackAzureIntegrationAttachment = {
|
|
|
7563
8748
|
integrationId: Scalars['ID']['output'];
|
|
7564
8749
|
/** Name of the attached integration. */
|
|
7565
8750
|
integrationName: Scalars['String']['output'];
|
|
8751
|
+
/** Whether the context is autoattached to the stack. */
|
|
8752
|
+
isAutoattached: Scalars['Boolean']['output'];
|
|
8753
|
+
/** Labels of the attached integration. */
|
|
8754
|
+
labels: Array<Scalars['String']['output']>;
|
|
7566
8755
|
/** Whether the integration is used for read operations. */
|
|
7567
8756
|
read: Scalars['Boolean']['output'];
|
|
7568
8757
|
/** The Azure subscription Id to use for this stack. Overrides the defaultSubscriptionId. */
|
|
@@ -7709,6 +8898,7 @@ export type StackConfigVendorTerragrunt = {
|
|
|
7709
8898
|
* Smart sanitization will only sanitize values that terraform has marked as sensitive.
|
|
7710
8899
|
*/
|
|
7711
8900
|
useSmartSanitization: Scalars['Boolean']['output'];
|
|
8901
|
+
useStateManagement: Scalars['Boolean']['output'];
|
|
7712
8902
|
};
|
|
7713
8903
|
export type StackConfigVendorTerragruntInput = {
|
|
7714
8904
|
/** Terraform version to use. */
|
|
@@ -7728,6 +8918,7 @@ export type StackConfigVendorTerragruntInput = {
|
|
|
7728
8918
|
* Smart sanitization will only sanitize values that terraform has marked as sensitive.
|
|
7729
8919
|
*/
|
|
7730
8920
|
useSmartSanitization: Scalars['Boolean']['input'];
|
|
8921
|
+
useStateManagement?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7731
8922
|
};
|
|
7732
8923
|
/** StackConnection represents a single stack in a page of results. */
|
|
7733
8924
|
export type StackConnection = {
|
|
@@ -7757,6 +8948,13 @@ export type StackContextAttachment = {
|
|
|
7757
8948
|
/** Context in question. */
|
|
7758
8949
|
priority: Scalars['Int']['output'];
|
|
7759
8950
|
};
|
|
8951
|
+
/** Arguments used to create a Stack from Intent Project. */
|
|
8952
|
+
export type StackCreateFromIntentInput = {
|
|
8953
|
+
/** Intent Project ID */
|
|
8954
|
+
project: Scalars['ID']['input'];
|
|
8955
|
+
/** optional Stack name, if omited Intent Project name will be used */
|
|
8956
|
+
stackName?: InputMaybe<Scalars['String']['input']>;
|
|
8957
|
+
};
|
|
7760
8958
|
/** StackDependency represents a dependency between two stacks. */
|
|
7761
8959
|
export type StackDependency = {
|
|
7762
8960
|
__typename?: 'StackDependency';
|
|
@@ -7785,7 +8983,8 @@ export type StackDependency = {
|
|
|
7785
8983
|
};
|
|
7786
8984
|
/** StackDependency represents a dependency between two stacks. */
|
|
7787
8985
|
export type StackDependencyReferenceArgs = {
|
|
7788
|
-
id
|
|
8986
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
8987
|
+
inputName?: InputMaybe<Scalars['String']['input']>;
|
|
7789
8988
|
};
|
|
7790
8989
|
export type StackDependencyBatchInput = {
|
|
7791
8990
|
/** The list of dependencies to add. */
|
|
@@ -8076,6 +9275,32 @@ export type StackPolicyAttachment = {
|
|
|
8076
9275
|
export type StackPolicyAttachmentEvaluationSampleArgs = {
|
|
8077
9276
|
key: Scalars['String']['input'];
|
|
8078
9277
|
};
|
|
9278
|
+
export type StackRoleBinding = {
|
|
9279
|
+
__typename?: 'StackRoleBinding';
|
|
9280
|
+
id: Scalars['ID']['output'];
|
|
9281
|
+
role: Role;
|
|
9282
|
+
space: Space;
|
|
9283
|
+
stackID: Scalars['ID']['output'];
|
|
9284
|
+
stackName: Scalars['String']['output'];
|
|
9285
|
+
};
|
|
9286
|
+
export type StackRoleBindingBatchInput = {
|
|
9287
|
+
/** List of stack role bindings to create. */
|
|
9288
|
+
bindings: Array<StackRoleBindingInput>;
|
|
9289
|
+
};
|
|
9290
|
+
export type StackRoleBindingInput = {
|
|
9291
|
+
/** ID of the role. */
|
|
9292
|
+
roleID: Scalars['ID']['input'];
|
|
9293
|
+
/** ID of the space. */
|
|
9294
|
+
spaceID: Scalars['ID']['input'];
|
|
9295
|
+
/** ID of the stack. */
|
|
9296
|
+
stackID: Scalars['ID']['input'];
|
|
9297
|
+
};
|
|
9298
|
+
export type StackRoleBindingUpdateInput = {
|
|
9299
|
+
/** ID of the role. */
|
|
9300
|
+
roleID: Scalars['ID']['input'];
|
|
9301
|
+
/** ID of the space. */
|
|
9302
|
+
spaceID: Scalars['ID']['input'];
|
|
9303
|
+
};
|
|
8079
9304
|
/**
|
|
8080
9305
|
* StackState represents a discrete state of a Stack, which is also the state of
|
|
8081
9306
|
* its most currently running Run.
|
|
@@ -8135,6 +9360,28 @@ export declare enum StackVendor {
|
|
|
8135
9360
|
Terraform = "Terraform",
|
|
8136
9361
|
Terragrunt = "Terragrunt"
|
|
8137
9362
|
}
|
|
9363
|
+
/**
|
|
9364
|
+
* StateDownloadUrl represents a pre-signed URL that can be used to download
|
|
9365
|
+
* a stack's state file.
|
|
9366
|
+
*/
|
|
9367
|
+
export type StateDownloadUrl = {
|
|
9368
|
+
__typename?: 'StateDownloadUrl';
|
|
9369
|
+
/** Pre-signed URL to use to download the state file. */
|
|
9370
|
+
url: Scalars['String']['output'];
|
|
9371
|
+
};
|
|
9372
|
+
/**
|
|
9373
|
+
* StateDownloadUrlInput provides parameters for generating a pre-signed URL
|
|
9374
|
+
* to download a stack's state file.
|
|
9375
|
+
*/
|
|
9376
|
+
export type StateDownloadUrlInput = {
|
|
9377
|
+
/** ID of the stack to download state from. */
|
|
9378
|
+
stackId: Scalars['ID']['input'];
|
|
9379
|
+
/**
|
|
9380
|
+
* Optional version of the state to download. When not provided, downloads
|
|
9381
|
+
* the latest state. Currently not supported - will return an error if provided.
|
|
9382
|
+
*/
|
|
9383
|
+
version?: InputMaybe<Scalars['String']['input']>;
|
|
9384
|
+
};
|
|
8138
9385
|
/**
|
|
8139
9386
|
* StateUploadUrl represents a pre-signed URL that can be used to upload an
|
|
8140
9387
|
* existing state file.
|
|
@@ -8421,6 +9668,7 @@ export type TerragruntRuntimeConfig = {
|
|
|
8421
9668
|
useRunAll: Scalars['Boolean']['output'];
|
|
8422
9669
|
/** Indicates whether smart-sanitization was enabled for the run. */
|
|
8423
9670
|
useSmartSanitization: Scalars['Boolean']['output'];
|
|
9671
|
+
useStateManagement: Scalars['Boolean']['output'];
|
|
8424
9672
|
};
|
|
8425
9673
|
/** TerragruntTool defines the underlying tool run by Terragrunt. */
|
|
8426
9674
|
export declare enum TerragruntTool {
|
|
@@ -8506,6 +9754,8 @@ export type UserGroupRoleBinding = {
|
|
|
8506
9754
|
__typename?: 'UserGroupRoleBinding';
|
|
8507
9755
|
id: Scalars['ID']['output'];
|
|
8508
9756
|
roleID: Scalars['ID']['output'];
|
|
9757
|
+
space: Space;
|
|
9758
|
+
/** @deprecated Use space field instead. */
|
|
8509
9759
|
spaceID: Scalars['ID']['output'];
|
|
8510
9760
|
userGroup: ManagedUserGroup;
|
|
8511
9761
|
/** @deprecated Use userGroup field instead. */
|
|
@@ -8527,6 +9777,125 @@ export declare enum UserGroupStatus {
|
|
|
8527
9777
|
Active = "ACTIVE",
|
|
8528
9778
|
Inactive = "INACTIVE"
|
|
8529
9779
|
}
|
|
9780
|
+
/** UserGuide represents a user guide with steps */
|
|
9781
|
+
export type UserGuide = {
|
|
9782
|
+
__typename?: 'UserGuide';
|
|
9783
|
+
/** The chapter this guide belongs to */
|
|
9784
|
+
chapter: UserGuideChapter;
|
|
9785
|
+
/** Completion information for the guide */
|
|
9786
|
+
completion: UserGuideCompletion;
|
|
9787
|
+
/** Unique identifier for the guide */
|
|
9788
|
+
id: Scalars['ID']['output'];
|
|
9789
|
+
/** Metadata about the guide */
|
|
9790
|
+
metadata: UserGuideMetadata;
|
|
9791
|
+
/** URL-friendly slug for the guide */
|
|
9792
|
+
slug: Scalars['String']['output'];
|
|
9793
|
+
/** Steps in the guide */
|
|
9794
|
+
steps: Array<UserGuideStep>;
|
|
9795
|
+
};
|
|
9796
|
+
/** UserGuideChapter represents a chapter within a user guide group */
|
|
9797
|
+
export type UserGuideChapter = {
|
|
9798
|
+
__typename?: 'UserGuideChapter';
|
|
9799
|
+
/** Description of the chapter */
|
|
9800
|
+
description: Scalars['String']['output'];
|
|
9801
|
+
/** List of guides in this chapter */
|
|
9802
|
+
guides: Array<UserGuide>;
|
|
9803
|
+
/** Unique identifier for the chapter */
|
|
9804
|
+
id: Scalars['ID']['output'];
|
|
9805
|
+
/** Name of the chapter */
|
|
9806
|
+
name: Scalars['String']['output'];
|
|
9807
|
+
};
|
|
9808
|
+
/** UserGuideCompletion contains completion information */
|
|
9809
|
+
export type UserGuideCompletion = {
|
|
9810
|
+
__typename?: 'UserGuideCompletion';
|
|
9811
|
+
/** List of recommended guide IDs to show next */
|
|
9812
|
+
recommendedGuideIds: Array<Scalars['ID']['output']>;
|
|
9813
|
+
/** Success message shown on completion */
|
|
9814
|
+
successMessage: Scalars['String']['output'];
|
|
9815
|
+
};
|
|
9816
|
+
/** UserGuideDoc represents a documentation link */
|
|
9817
|
+
export type UserGuideDoc = {
|
|
9818
|
+
__typename?: 'UserGuideDoc';
|
|
9819
|
+
/** Title of the documentation */
|
|
9820
|
+
title: Scalars['String']['output'];
|
|
9821
|
+
/** URL of the documentation */
|
|
9822
|
+
url: Scalars['String']['output'];
|
|
9823
|
+
};
|
|
9824
|
+
/** UserGuideGroup represents a grouping of user guides */
|
|
9825
|
+
export type UserGuideGroup = {
|
|
9826
|
+
__typename?: 'UserGuideGroup';
|
|
9827
|
+
/** List of chapters in this group */
|
|
9828
|
+
chapters: Array<UserGuideChapter>;
|
|
9829
|
+
/** Description of the group */
|
|
9830
|
+
description: Scalars['String']['output'];
|
|
9831
|
+
/** Unique identifier for the group */
|
|
9832
|
+
id: Scalars['ID']['output'];
|
|
9833
|
+
/** Name of the group */
|
|
9834
|
+
name: Scalars['String']['output'];
|
|
9835
|
+
/** The skill level of the guide group */
|
|
9836
|
+
skillLevel?: Maybe<UserGuideGroupSkillLevel>;
|
|
9837
|
+
};
|
|
9838
|
+
/** UserGuideGroupSkillLevel represents the difficulty/skill level of a user guide group */
|
|
9839
|
+
export declare enum UserGuideGroupSkillLevel {
|
|
9840
|
+
Beginner = "BEGINNER",
|
|
9841
|
+
Commander = "COMMANDER",
|
|
9842
|
+
Enabler = "ENABLER",
|
|
9843
|
+
Guardian = "GUARDIAN"
|
|
9844
|
+
}
|
|
9845
|
+
/** UserGuideMetadata contains guide metadata */
|
|
9846
|
+
export type UserGuideMetadata = {
|
|
9847
|
+
__typename?: 'UserGuideMetadata';
|
|
9848
|
+
/** Description of the guide */
|
|
9849
|
+
description: Scalars['String']['output'];
|
|
9850
|
+
/** Difficulty level of the guide */
|
|
9851
|
+
difficulty: Scalars['String']['output'];
|
|
9852
|
+
/** Labels of the guide */
|
|
9853
|
+
labels: Array<Scalars['String']['output']>;
|
|
9854
|
+
/** Title of the guide */
|
|
9855
|
+
title: Scalars['String']['output'];
|
|
9856
|
+
};
|
|
9857
|
+
/** UserGuideProgress tracks user progress through a guide */
|
|
9858
|
+
export type UserGuideProgress = {
|
|
9859
|
+
__typename?: 'UserGuideProgress';
|
|
9860
|
+
/** Timestamp when the guide was completed */
|
|
9861
|
+
completedAt?: Maybe<Scalars['Int']['output']>;
|
|
9862
|
+
/** Steps completed so far */
|
|
9863
|
+
completedSteps: Array<UserGuideStep>;
|
|
9864
|
+
/** Current step index */
|
|
9865
|
+
currentStep: Scalars['Int']['output'];
|
|
9866
|
+
/** The guide being tracked */
|
|
9867
|
+
guide: UserGuide;
|
|
9868
|
+
/** Progress percentage (0-100) */
|
|
9869
|
+
progressPercent: Scalars['Float']['output'];
|
|
9870
|
+
/** Timestamp when the guide was started */
|
|
9871
|
+
startedAt?: Maybe<Scalars['Int']['output']>;
|
|
9872
|
+
/** Current status of the guide progress */
|
|
9873
|
+
status: UserGuideStatus;
|
|
9874
|
+
};
|
|
9875
|
+
/** UserGuideStatus represents the status of a user guide */
|
|
9876
|
+
export declare enum UserGuideStatus {
|
|
9877
|
+
Abandoned = "ABANDONED",
|
|
9878
|
+
Completed = "COMPLETED",
|
|
9879
|
+
Invalid = "INVALID",
|
|
9880
|
+
InProgress = "IN_PROGRESS",
|
|
9881
|
+
NotStarted = "NOT_STARTED"
|
|
9882
|
+
}
|
|
9883
|
+
/** UserGuideStep represents a single step in a guide */
|
|
9884
|
+
export type UserGuideStep = {
|
|
9885
|
+
__typename?: 'UserGuideStep';
|
|
9886
|
+
/** Documentation links for the step */
|
|
9887
|
+
docs: Array<UserGuideDoc>;
|
|
9888
|
+
/** Optional hint for the step */
|
|
9889
|
+
hint?: Maybe<Scalars['String']['output']>;
|
|
9890
|
+
/** Unique identifier for the step */
|
|
9891
|
+
id: Scalars['ID']['output'];
|
|
9892
|
+
/** Instruction for the step */
|
|
9893
|
+
instruction: Scalars['String']['output'];
|
|
9894
|
+
/** Order of the step in the guide */
|
|
9895
|
+
order: Scalars['Int']['output'];
|
|
9896
|
+
/** Title of the step */
|
|
9897
|
+
title: Scalars['String']['output'];
|
|
9898
|
+
};
|
|
8530
9899
|
/** UserLogin represents the last login attempt for a single GitHub user. */
|
|
8531
9900
|
export type UserLogin = {
|
|
8532
9901
|
__typename?: 'UserLogin';
|
|
@@ -8545,6 +9914,8 @@ export type UserRoleBinding = {
|
|
|
8545
9914
|
id: Scalars['ID']['output'];
|
|
8546
9915
|
role: Role;
|
|
8547
9916
|
roleID: Scalars['ID']['output'];
|
|
9917
|
+
space: Space;
|
|
9918
|
+
/** @deprecated Use space field instead. */
|
|
8548
9919
|
spaceID: Scalars['ID']['output'];
|
|
8549
9920
|
user: ManagedUser;
|
|
8550
9921
|
userID: Scalars['ID']['output'];
|
|
@@ -8869,6 +10240,7 @@ export type WebhooksIntegration = {
|
|
|
8869
10240
|
endpoint: Scalars['String']['output'];
|
|
8870
10241
|
/** WebhooksIntegration ID */
|
|
8871
10242
|
id: Scalars['ID']['output'];
|
|
10243
|
+
retryOnFailure: Scalars['Boolean']['output'];
|
|
8872
10244
|
/**
|
|
8873
10245
|
* Secret to count SHA1
|
|
8874
10246
|
* @deprecated This property is no longer used.
|
|
@@ -8888,6 +10260,7 @@ export type WebhooksIntegrationInput = {
|
|
|
8888
10260
|
enabled: Scalars['Boolean']['input'];
|
|
8889
10261
|
/** User endpoint to send webhooks */
|
|
8890
10262
|
endpoint: Scalars['String']['input'];
|
|
10263
|
+
retryOnFailure?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8891
10264
|
/** Secret to count SHA1 */
|
|
8892
10265
|
secret?: InputMaybe<Scalars['String']['input']>;
|
|
8893
10266
|
};
|
|
@@ -8931,10 +10304,22 @@ export type WorkerPool = Notifiable & {
|
|
|
8931
10304
|
deleted: Scalars['Boolean']['output'];
|
|
8932
10305
|
/** Optional description of the WorkerPool, supports markdown. */
|
|
8933
10306
|
description?: Maybe<Scalars['String']['output']>;
|
|
10307
|
+
/**
|
|
10308
|
+
* Maximum number of drift detection runs that can be scheduled on this worker pool.
|
|
10309
|
+
* If null or set to negative value, there is no limit.
|
|
10310
|
+
*/
|
|
10311
|
+
driftDetectionRunLimit?: Maybe<Scalars['Int']['output']>;
|
|
8934
10312
|
/** Globally unique, immutable ID of the WorkerPool. */
|
|
8935
10313
|
id: Scalars['ID']['output'];
|
|
8936
10314
|
/** Labels applied to a WorkerPool. */
|
|
8937
10315
|
labels: Array<Scalars['String']['output']>;
|
|
10316
|
+
/**
|
|
10317
|
+
* Indicates that this pool is managed by the Kubernetes WorkerPool controller. If a pool
|
|
10318
|
+
* is managed by the controller, any updates from other clients (e.g. the Spacelift UI) will
|
|
10319
|
+
* be blocked. Deletion of the pool by other clients is still allowed to allow a situation
|
|
10320
|
+
* where the Spacelift API and Kubernetes API become out of sync.
|
|
10321
|
+
*/
|
|
10322
|
+
managedByK8sController: Scalars['Boolean']['output'];
|
|
8938
10323
|
/** Mutable name of the WorkerPool, unique within the scope of a single account. */
|
|
8939
10324
|
name: Scalars['String']['output'];
|
|
8940
10325
|
/** Number of the new worker pool notifications. */
|