Skip to content

Commit

Permalink
regenerate schema
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Jun 15, 2024
1 parent a802f12 commit a30dcfe
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
18 changes: 17 additions & 1 deletion models_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions schema/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -3941,6 +3941,7 @@ enum ConfigurationType {
FILE
FUNCTION
PASSWORD
ENUM
}

enum Operation {
Expand Down Expand Up @@ -3997,10 +3998,27 @@ input ScmConnectionAttributes {

apiUrl: String

"id of a scm connection to use for authentication"
connectionId: ID

github: GithubAppAttributes

"a ssh private key to be used for commit signing"
signingPrivateKey: String
}

"Requirements to perform Github App authentication"
input GithubAppAttributes {
"Github App ID"
appId: String!

"ID of this github app installation"
installationId: String!

"PEM-encoded private key for this app"
privateKey: String!
}

"A way to create a self-service means of generating PRs against an IaC repo"
input PrAutomationAttributes {
name: String
Expand Down Expand Up @@ -4056,6 +4074,7 @@ input PrConfigurationAttributes {
placeholder: String
optional: Boolean
condition: ConditionAttributes
values: [String]
}

"attributes for declaratively specifying whether a config item is relevant given prior config"
Expand Down

0 comments on commit a30dcfe

Please sign in to comment.