You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: fmt.Sprintf("Set the analytics access level. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
823
+
Type: schema.TypeString,
824
+
Computed: true,
825
+
},
826
+
"auto_cancel_pending_pipelines": {
827
+
Description: "Auto-cancel pending pipelines. This isn’t a boolean, but enabled/disabled.",
828
+
Type: schema.TypeString,
829
+
Computed: true,
830
+
},
831
+
"auto_devops_deploy_strategy": {
832
+
Description: fmt.Sprintf("Auto Deploy strategy. Valid values are %s.", renderValueListForDocs(validProjectAutoDevOpsDeployStrategyValues)),
833
+
Type: schema.TypeString,
834
+
Computed: true,
835
+
},
836
+
"auto_devops_enabled": {
837
+
Description: "Enable Auto DevOps for this project.",
838
+
Type: schema.TypeBool,
839
+
Computed: true,
840
+
},
841
+
"autoclose_referenced_issues": {
842
+
Description: "Set whether auto-closing referenced issues on default branch.",
843
+
Type: schema.TypeBool,
844
+
Computed: true,
845
+
},
846
+
"build_git_strategy": {
847
+
Description: "The Git strategy. Defaults to fetch.",
848
+
Type: schema.TypeString,
849
+
Computed: true,
850
+
},
851
+
"build_timeout": {
852
+
Description: "The maximum amount of time, in seconds, that a job can run.",
853
+
Type: schema.TypeInt,
854
+
Computed: true,
855
+
},
856
+
"builds_access_level": {
857
+
Description: fmt.Sprintf("Set the builds access level. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
858
+
Type: schema.TypeString,
859
+
Computed: true,
860
+
},
861
+
"container_expiration_policy": {
862
+
Description: "Set the image cleanup policy for this project. **Note**: this field is sometimes named `container_expiration_policy_attributes` in the GitLab Upstream API.",
863
+
Type: schema.TypeList,
864
+
Elem: containerExpirationPolicyAttributesSchema,
865
+
Computed: true,
866
+
},
867
+
"container_registry_access_level": {
868
+
Description: fmt.Sprintf("Set visibility of container registry, for this project. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
869
+
Type: schema.TypeString,
870
+
Computed: true,
871
+
},
872
+
"emails_disabled": {
873
+
Description: "Disable email notifications.",
874
+
Type: schema.TypeBool,
875
+
Computed: true,
876
+
},
877
+
"external_authorization_classification_label": {
878
+
Description: "The classification label for the project.",
879
+
Type: schema.TypeString,
880
+
Computed: true,
881
+
},
882
+
"forking_access_level": {
883
+
Description: fmt.Sprintf("Set the forking access level. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
884
+
Type: schema.TypeString,
885
+
Computed: true,
886
+
},
887
+
"issues_access_level": {
888
+
Description: fmt.Sprintf("Set the issues access level. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
889
+
Type: schema.TypeString,
890
+
Computed: true,
891
+
},
892
+
"merge_requests_access_level": {
893
+
Description: fmt.Sprintf("Set the merge requests access level. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
894
+
Type: schema.TypeString,
895
+
Computed: true,
896
+
},
897
+
"operations_access_level": {
898
+
Description: fmt.Sprintf("Set the operations access level. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
899
+
Type: schema.TypeString,
900
+
Computed: true,
901
+
},
902
+
"repository_access_level": {
903
+
Description: fmt.Sprintf("Set the repository access level. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
904
+
Type: schema.TypeString,
905
+
Computed: true,
906
+
},
907
+
"repository_storage": {
908
+
Description: " Which storage shard the repository is on. (administrator only)",
909
+
Type: schema.TypeString,
910
+
Computed: true,
911
+
},
912
+
"requirements_access_level": {
913
+
Description: fmt.Sprintf("Set the requirements access level. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
914
+
Type: schema.TypeString,
915
+
Computed: true,
916
+
},
917
+
"security_and_compliance_access_level": {
918
+
Description: fmt.Sprintf("Set the security and compliance access level. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
919
+
Type: schema.TypeString,
920
+
Computed: true,
921
+
},
922
+
"snippets_access_level": {
923
+
Description: fmt.Sprintf("Set the snippets access level. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
924
+
Type: schema.TypeString,
925
+
Computed: true,
926
+
},
927
+
"topics": {
928
+
Description: "The list of topics for the project.",
929
+
Type: schema.TypeSet,
930
+
Set: schema.HashString,
931
+
Elem: &schema.Schema{Type: schema.TypeString},
932
+
Computed: true,
933
+
},
934
+
"wiki_access_level": {
935
+
Description: fmt.Sprintf("Set the wiki access level. Valid values are %s.", renderValueListForDocs(validProjectAccessLevels)),
936
+
Type: schema.TypeString,
937
+
Computed: true,
938
+
},
939
+
"squash_commit_template": {
940
+
Description: "Template used to create squash commit message in merge requests. (Introduced in GitLab 14.6.)",
941
+
Type: schema.TypeString,
942
+
Computed: true,
943
+
},
944
+
"merge_commit_template": {
945
+
Description: "Template used to create merge commit message in merge requests. (Introduced in GitLab 14.5.)",
0 commit comments