@pulumiverse/buildkite 2.2.0 → 2.3.1
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/README.md +3 -3
- package/agent/agentToken.js +2 -0
- package/agent/agentToken.js.map +1 -1
- package/cluster/cluster.d.ts +108 -0
- package/cluster/cluster.js +73 -0
- package/cluster/cluster.js.map +1 -0
- package/cluster/clusterAgentToken.d.ts +97 -0
- package/cluster/clusterAgentToken.js +84 -0
- package/cluster/clusterAgentToken.js.map +1 -0
- package/cluster/clusterQueue.d.ts +162 -0
- package/cluster/clusterQueue.js +137 -0
- package/cluster/clusterQueue.js.map +1 -0
- package/cluster/getCluster.d.ts +47 -0
- package/cluster/getCluster.js +19 -0
- package/cluster/getCluster.js.map +1 -0
- package/cluster/index.d.ts +12 -0
- package/cluster/index.js +35 -0
- package/cluster/index.js.map +1 -0
- package/config/vars.d.ts +5 -1
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/getMeta.d.ts +0 -3
- package/index.d.ts +3 -1
- package/index.js +5 -1
- package/index.js.map +1 -1
- package/organization/getOrganization.d.ts +2 -46
- package/organization/getOrganization.js +3 -32
- package/organization/getOrganization.js.map +1 -1
- package/organization/index.d.ts +4 -2
- package/organization/index.js +7 -3
- package/organization/index.js.map +1 -1
- package/organization/organization.d.ts +78 -0
- package/organization/organization.js +79 -0
- package/organization/organization.js.map +1 -0
- package/organization/settings.d.ts +4 -0
- package/organization/settings.js +4 -0
- package/organization/settings.js.map +1 -1
- package/package.json +2 -2
- package/pipeline/getPipeline.d.ts +1 -4
- package/pipeline/getPipeline.js.map +1 -1
- package/pipeline/index.d.ts +3 -0
- package/pipeline/index.js +6 -1
- package/pipeline/index.js.map +1 -1
- package/pipeline/pipeline.d.ts +45 -98
- package/pipeline/pipeline.js +10 -85
- package/pipeline/pipeline.js.map +1 -1
- package/pipeline/schedule.d.ts +46 -5
- package/pipeline/schedule.js +34 -2
- package/pipeline/schedule.js.map +1 -1
- package/pipeline/team.d.ts +128 -0
- package/pipeline/team.js +112 -0
- package/pipeline/team.js.map +1 -0
- package/provider.d.ts +11 -7
- package/provider.js +5 -8
- package/provider.js.map +1 -1
- package/team/getTeam.d.ts +24 -10
- package/team/getTeam.js +6 -4
- package/team/getTeam.js.map +1 -1
- package/team/member.d.ts +4 -4
- package/team/member.js +4 -4
- package/team/team.d.ts +31 -1
- package/team/team.js +30 -0
- package/team/team.js.map +1 -1
- package/testsuite/index.d.ts +6 -0
- package/testsuite/index.js +27 -0
- package/testsuite/index.js.map +1 -0
- package/testsuite/team.d.ts +166 -0
- package/testsuite/team.js +150 -0
- package/testsuite/team.js.map +1 -0
- package/testsuite/testSuite.d.ts +120 -0
- package/testsuite/testSuite.js +91 -0
- package/testsuite/testSuite.js.map +1 -0
- package/types/input.d.ts +3 -4
- package/types/output.d.ts +8 -9
package/types/input.d.ts
CHANGED
|
@@ -80,13 +80,12 @@ export declare namespace Pipeline {
|
|
|
80
80
|
triggerMode?: pulumi.Input<string>;
|
|
81
81
|
}
|
|
82
82
|
interface PipelineTeam {
|
|
83
|
-
/**
|
|
84
|
-
* The level of access to grant. Must be one of `READ_ONLY`, `BUILD_AND_READ` or `MANAGE_BUILD_AND_READ`.
|
|
85
|
-
*/
|
|
86
83
|
accessLevel: pulumi.Input<string>;
|
|
84
|
+
pipelineTeamId?: pulumi.Input<string>;
|
|
87
85
|
/**
|
|
88
|
-
* The
|
|
86
|
+
* The slug of the created pipeline.
|
|
89
87
|
*/
|
|
90
88
|
slug: pulumi.Input<string>;
|
|
89
|
+
teamId?: pulumi.Input<string>;
|
|
91
90
|
}
|
|
92
91
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export declare namespace Pipeline {
|
|
|
3
3
|
/**
|
|
4
4
|
* Whether to create builds when branches are pushed.
|
|
5
5
|
*/
|
|
6
|
-
buildBranches
|
|
6
|
+
buildBranches: boolean;
|
|
7
7
|
/**
|
|
8
8
|
* Whether to create builds for pull requests from third-party forks.
|
|
9
9
|
*/
|
|
@@ -16,7 +16,7 @@ export declare namespace Pipeline {
|
|
|
16
16
|
/**
|
|
17
17
|
* Whether to create builds for commits that are part of a Pull Request.
|
|
18
18
|
*/
|
|
19
|
-
buildPullRequests
|
|
19
|
+
buildPullRequests: boolean;
|
|
20
20
|
/**
|
|
21
21
|
* Whether to create builds when tags are pushed.
|
|
22
22
|
*
|
|
@@ -48,7 +48,7 @@ export declare namespace Pipeline {
|
|
|
48
48
|
/**
|
|
49
49
|
* Whether to update the status of commits in Bitbucket or GitHub.
|
|
50
50
|
*/
|
|
51
|
-
publishCommitStatus
|
|
51
|
+
publishCommitStatus: boolean;
|
|
52
52
|
/**
|
|
53
53
|
* Whether to create a separate status for each job in a build, allowing you to see the status of each job directly in Bitbucket or GitHub.
|
|
54
54
|
*/
|
|
@@ -68,24 +68,23 @@ export declare namespace Pipeline {
|
|
|
68
68
|
/**
|
|
69
69
|
* Whether to skip creating a new build if an existing build for the commit and branch already exists.
|
|
70
70
|
*/
|
|
71
|
-
skipBuildsForExistingCommits
|
|
71
|
+
skipBuildsForExistingCommits: boolean;
|
|
72
72
|
/**
|
|
73
73
|
* Whether to skip creating a new build for a pull request if an existing build for the commit and branch already exists.
|
|
74
74
|
*/
|
|
75
|
-
skipPullRequestBuildsForExistingCommits
|
|
75
|
+
skipPullRequestBuildsForExistingCommits: boolean;
|
|
76
76
|
/**
|
|
77
77
|
* What type of event to trigger builds on. Must be one of:
|
|
78
78
|
*/
|
|
79
79
|
triggerMode: string;
|
|
80
80
|
}
|
|
81
81
|
interface PipelineTeam {
|
|
82
|
-
/**
|
|
83
|
-
* The level of access to grant. Must be one of `READ_ONLY`, `BUILD_AND_READ` or `MANAGE_BUILD_AND_READ`.
|
|
84
|
-
*/
|
|
85
82
|
accessLevel: string;
|
|
83
|
+
pipelineTeamId: string;
|
|
86
84
|
/**
|
|
87
|
-
* The
|
|
85
|
+
* The slug of the created pipeline.
|
|
88
86
|
*/
|
|
89
87
|
slug: string;
|
|
88
|
+
teamId: string;
|
|
90
89
|
}
|
|
91
90
|
}
|