Skip to content

Commit

Permalink
Add required outputs (#190)
Browse files Browse the repository at this point in the history
Fixes #187
  • Loading branch information
komalali authored Nov 16, 2023
1 parent 537af59 commit 7f2ef39
Show file tree
Hide file tree
Showing 37 changed files with 410 additions and 326 deletions.
50 changes: 49 additions & 1 deletion provider/cmd/pulumi-resource-pulumiservice/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,11 @@
"secret": true
}
},
"required": [
"tokenId",
"description",
"value"
],
"inputProperties": {
"description": {
"description": "Description of the access token.",
Expand Down Expand Up @@ -498,6 +503,11 @@
"type": "number"
}
},
"required": [
"organizationName",
"teamType",
"members"
],
"inputProperties": {
"teamType": {
"description": "The type of team. Must be either `pulumi` or `github`.",
Expand Down Expand Up @@ -561,6 +571,12 @@
"secret": true
}
},
"required": [
"name",
"teamName",
"organizationName",
"value"
],
"inputProperties": {
"name": {
"description": "The name for the token. This must be unique amongst all machine tokens within your organization.",
Expand Down Expand Up @@ -610,6 +626,11 @@
"secret": true
}
},
"required": [
"name",
"organizationName",
"value"
],
"inputProperties": {
"name": {
"description": "The name for the token.",
Expand Down Expand Up @@ -681,6 +702,14 @@
}
}
},
"required": [
"active",
"displayName",
"organizationName",
"payloadUrl",
"name",
"format"
],
"inputProperties": {
"active": {
"description": "Indicates whether this webhook is enabled or not.",
Expand Down Expand Up @@ -747,6 +776,11 @@
"type": "string"
}
},
"required": [
"organization",
"project",
"stack"
],
"inputProperties": {
"organization": {
"description": "Organization name.",
Expand Down Expand Up @@ -808,6 +842,13 @@
"type": "string"
}
},
"required": [
"organization",
"project",
"stack",
"name",
"value"
],
"inputProperties": {
"organization": {
"description": "Organization name.",
Expand All @@ -829,7 +870,14 @@
"description": "Value of the tag. The 'value' part of the key=value pair",
"type": "string"
}
}
},
"requiredInputs": [
"organization",
"project",
"stack",
"name",
"value"
]
},
"pulumiservice:index:TeamStackPermission": {
"description": "Grants a team permissions to the specified stack.",
Expand Down
6 changes: 3 additions & 3 deletions sdk/dotnet/AccessToken.cs

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

6 changes: 3 additions & 3 deletions sdk/dotnet/DeploymentSettings.cs

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

6 changes: 3 additions & 3 deletions sdk/dotnet/OrgAccessToken.cs

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

32 changes: 16 additions & 16 deletions sdk/dotnet/StackTag.cs

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

4 changes: 2 additions & 2 deletions sdk/dotnet/Team.cs

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

8 changes: 4 additions & 4 deletions sdk/dotnet/TeamAccessToken.cs

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

12 changes: 6 additions & 6 deletions sdk/dotnet/Webhook.cs

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

18 changes: 9 additions & 9 deletions sdk/go/pulumiservice/accessToken.go

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

Loading

0 comments on commit 7f2ef39

Please sign in to comment.