@sl-testing/ac-pulumi 0.1.14 → 0.1.16
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/{agentTemplate.d.ts → agentConfiguration.d.ts} +12 -14
- package/dist/{agentTemplate.js → agentConfiguration.js} +31 -33
- package/dist/agentConfiguration.js.map +1 -0
- package/dist/agentRuns.d.ts +2 -2
- package/dist/agentRuns.js +2 -2
- package/dist/agentRuns.js.map +1 -1
- package/dist/database.js +4 -4
- package/dist/database.js.map +1 -1
- package/dist/function.js +10 -10
- package/dist/function.js.map +1 -1
- package/dist/githubInstallation.d.ts +39 -0
- package/dist/githubInstallation.js +70 -0
- package/dist/githubInstallation.js.map +1 -0
- package/dist/image.js +9 -9
- package/dist/image.js.map +1 -1
- package/dist/index.d.ts +9 -3
- package/dist/index.js +13 -5
- package/dist/index.js.map +1 -1
- package/dist/job.d.ts +2 -4
- package/dist/job.js +13 -15
- package/dist/job.js.map +1 -1
- package/dist/logs.d.ts +2 -2
- package/dist/logs.js +2 -2
- package/dist/logs.js.map +1 -1
- package/dist/machine.d.ts +1 -4
- package/dist/machine.js +10 -14
- package/dist/machine.js.map +1 -1
- package/dist/package.json +3 -5
- package/dist/projectRole.js +5 -5
- package/dist/projectRole.js.map +1 -1
- package/dist/projectRoleBinding.d.ts +1 -2
- package/dist/projectRoleBinding.js +9 -11
- package/dist/projectRoleBinding.js.map +1 -1
- package/dist/projectRoleRule.d.ts +1 -2
- package/dist/projectRoleRule.js +10 -12
- package/dist/projectRoleRule.js.map +1 -1
- package/dist/provider/darwin-arm64/pulumi-resource-agentcloud +0 -0
- package/dist/provider/linux-x64/pulumi-resource-agentcloud +0 -0
- package/dist/provider.js +2 -2
- package/dist/provider.js.map +1 -1
- package/dist/secret.js +6 -6
- package/dist/secret.js.map +1 -1
- package/dist/service.js +10 -10
- package/dist/service.js.map +1 -1
- package/dist/serviceDeploymentResource.d.ts +1 -2
- package/dist/serviceDeploymentResource.js +7 -9
- package/dist/serviceDeploymentResource.js.map +1 -1
- package/dist/trigger.d.ts +47 -0
- package/dist/trigger.js +78 -0
- package/dist/trigger.js.map +1 -0
- package/dist/types/output.d.ts +1 -1
- package/dist/utilities.d.ts +0 -4
- package/dist/utilities.js +19 -29
- package/dist/utilities.js.map +1 -1
- package/package.json +2 -2
- package/dist/agentTemplate.js.map +0 -1
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class AgentConfiguration extends pulumi.CustomResource {
|
|
3
3
|
/**
|
|
4
|
-
* Get an existing
|
|
4
|
+
* Get an existing AgentConfiguration resource's state with the given name, ID, and optional extra
|
|
5
5
|
* properties used to qualify the lookup.
|
|
6
6
|
*
|
|
7
7
|
* @param name The _unique_ name of the resulting resource.
|
|
8
8
|
* @param id The _unique_ provider ID of the resource to lookup.
|
|
9
9
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
10
10
|
*/
|
|
11
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions):
|
|
11
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): AgentConfiguration;
|
|
12
12
|
/**
|
|
13
|
-
* Returns true if the given object is an instance of
|
|
13
|
+
* Returns true if the given object is an instance of AgentConfiguration. This is designed to work even
|
|
14
14
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
15
15
|
*/
|
|
16
|
-
static isInstance(obj: any): obj is
|
|
17
|
-
readonly
|
|
16
|
+
static isInstance(obj: any): obj is AgentConfiguration;
|
|
17
|
+
readonly agentConfigurationId: pulumi.Output<string>;
|
|
18
18
|
readonly cpu: pulumi.Output<number | undefined>;
|
|
19
|
-
readonly digest: pulumi.Output<string | undefined>;
|
|
20
19
|
readonly idleDeleteAfterSeconds: pulumi.Output<number | undefined>;
|
|
21
20
|
readonly idleStopAfterSeconds: pulumi.Output<number | undefined>;
|
|
22
|
-
readonly
|
|
21
|
+
readonly imageVersionId: pulumi.Output<string>;
|
|
23
22
|
readonly instructions: pulumi.Output<string>;
|
|
24
23
|
readonly memoryMb: pulumi.Output<number | undefined>;
|
|
25
24
|
readonly model: pulumi.Output<string>;
|
|
@@ -28,23 +27,22 @@ export declare class AgentTemplate extends pulumi.CustomResource {
|
|
|
28
27
|
readonly provider: pulumi.Output<string>;
|
|
29
28
|
readonly workingDir: pulumi.Output<string | undefined>;
|
|
30
29
|
/**
|
|
31
|
-
* Create a
|
|
30
|
+
* Create a AgentConfiguration resource with the given unique name, arguments, and options.
|
|
32
31
|
*
|
|
33
32
|
* @param name The _unique_ name of the resource.
|
|
34
33
|
* @param args The arguments to use to populate this resource's properties.
|
|
35
34
|
* @param opts A bag of options that control this resource's behavior.
|
|
36
35
|
*/
|
|
37
|
-
constructor(name: string, args:
|
|
36
|
+
constructor(name: string, args: AgentConfigurationArgs, opts?: pulumi.CustomResourceOptions);
|
|
38
37
|
}
|
|
39
38
|
/**
|
|
40
|
-
* The set of arguments for constructing a
|
|
39
|
+
* The set of arguments for constructing a AgentConfiguration resource.
|
|
41
40
|
*/
|
|
42
|
-
export interface
|
|
41
|
+
export interface AgentConfigurationArgs {
|
|
43
42
|
cpu?: pulumi.Input<number>;
|
|
44
|
-
digest?: pulumi.Input<string>;
|
|
45
43
|
idleDeleteAfterSeconds?: pulumi.Input<number>;
|
|
46
44
|
idleStopAfterSeconds?: pulumi.Input<number>;
|
|
47
|
-
|
|
45
|
+
imageVersionId: pulumi.Input<string>;
|
|
48
46
|
instructions: pulumi.Input<string>;
|
|
49
47
|
memoryMb?: pulumi.Input<number>;
|
|
50
48
|
model: pulumi.Input<string>;
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
5
|
+
exports.AgentConfiguration = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
-
class
|
|
8
|
+
class AgentConfiguration extends pulumi.CustomResource {
|
|
9
9
|
/**
|
|
10
|
-
* Get an existing
|
|
10
|
+
* Get an existing AgentConfiguration resource's state with the given name, ID, and optional extra
|
|
11
11
|
* properties used to qualify the lookup.
|
|
12
12
|
*
|
|
13
13
|
* @param name The _unique_ name of the resulting resource.
|
|
@@ -15,20 +15,20 @@ class AgentTemplate extends pulumi.CustomResource {
|
|
|
15
15
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
16
16
|
*/
|
|
17
17
|
static get(name, id, opts) {
|
|
18
|
-
return new
|
|
18
|
+
return new AgentConfiguration(name, undefined, { ...opts, id: id });
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
|
-
* Returns true if the given object is an instance of
|
|
21
|
+
* Returns true if the given object is an instance of AgentConfiguration. This is designed to work even
|
|
22
22
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
23
23
|
*/
|
|
24
24
|
static isInstance(obj) {
|
|
25
25
|
if (obj === undefined || obj === null) {
|
|
26
26
|
return false;
|
|
27
27
|
}
|
|
28
|
-
return obj['__pulumiType'] ===
|
|
28
|
+
return obj['__pulumiType'] === AgentConfiguration.__pulumiType;
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
* Create a
|
|
31
|
+
* Create a AgentConfiguration resource with the given unique name, arguments, and options.
|
|
32
32
|
*
|
|
33
33
|
* @param name The _unique_ name of the resource.
|
|
34
34
|
* @param args The arguments to use to populate this resource's properties.
|
|
@@ -38,42 +38,40 @@ class AgentTemplate extends pulumi.CustomResource {
|
|
|
38
38
|
let resourceInputs = {};
|
|
39
39
|
opts = opts || {};
|
|
40
40
|
if (!opts.id) {
|
|
41
|
-
if (
|
|
42
|
-
throw new Error("Missing required property '
|
|
41
|
+
if (args?.imageVersionId === undefined && !opts.urn) {
|
|
42
|
+
throw new Error("Missing required property 'imageVersionId'");
|
|
43
43
|
}
|
|
44
|
-
if (
|
|
44
|
+
if (args?.instructions === undefined && !opts.urn) {
|
|
45
45
|
throw new Error("Missing required property 'instructions'");
|
|
46
46
|
}
|
|
47
|
-
if (
|
|
47
|
+
if (args?.model === undefined && !opts.urn) {
|
|
48
48
|
throw new Error("Missing required property 'model'");
|
|
49
49
|
}
|
|
50
|
-
if (
|
|
50
|
+
if (args?.name === undefined && !opts.urn) {
|
|
51
51
|
throw new Error("Missing required property 'name'");
|
|
52
52
|
}
|
|
53
|
-
if (
|
|
53
|
+
if (args?.provider === undefined && !opts.urn) {
|
|
54
54
|
throw new Error("Missing required property 'provider'");
|
|
55
55
|
}
|
|
56
|
-
resourceInputs["cpu"] = args
|
|
57
|
-
resourceInputs["
|
|
58
|
-
resourceInputs["
|
|
59
|
-
resourceInputs["
|
|
60
|
-
resourceInputs["
|
|
61
|
-
resourceInputs["
|
|
62
|
-
resourceInputs["
|
|
63
|
-
resourceInputs["
|
|
64
|
-
resourceInputs["
|
|
65
|
-
resourceInputs["
|
|
66
|
-
resourceInputs["
|
|
67
|
-
resourceInputs["
|
|
68
|
-
resourceInputs["agentTemplateId"] = undefined /*out*/;
|
|
56
|
+
resourceInputs["cpu"] = args?.cpu;
|
|
57
|
+
resourceInputs["idleDeleteAfterSeconds"] = args?.idleDeleteAfterSeconds;
|
|
58
|
+
resourceInputs["idleStopAfterSeconds"] = args?.idleStopAfterSeconds;
|
|
59
|
+
resourceInputs["imageVersionId"] = args?.imageVersionId;
|
|
60
|
+
resourceInputs["instructions"] = args?.instructions;
|
|
61
|
+
resourceInputs["memoryMb"] = args?.memoryMb;
|
|
62
|
+
resourceInputs["model"] = args?.model;
|
|
63
|
+
resourceInputs["name"] = args?.name;
|
|
64
|
+
resourceInputs["projectId"] = args?.projectId;
|
|
65
|
+
resourceInputs["provider"] = args?.provider;
|
|
66
|
+
resourceInputs["workingDir"] = args?.workingDir;
|
|
67
|
+
resourceInputs["agentConfigurationId"] = undefined /*out*/;
|
|
69
68
|
}
|
|
70
69
|
else {
|
|
71
|
-
resourceInputs["
|
|
70
|
+
resourceInputs["agentConfigurationId"] = undefined /*out*/;
|
|
72
71
|
resourceInputs["cpu"] = undefined /*out*/;
|
|
73
|
-
resourceInputs["digest"] = undefined /*out*/;
|
|
74
72
|
resourceInputs["idleDeleteAfterSeconds"] = undefined /*out*/;
|
|
75
73
|
resourceInputs["idleStopAfterSeconds"] = undefined /*out*/;
|
|
76
|
-
resourceInputs["
|
|
74
|
+
resourceInputs["imageVersionId"] = undefined /*out*/;
|
|
77
75
|
resourceInputs["instructions"] = undefined /*out*/;
|
|
78
76
|
resourceInputs["memoryMb"] = undefined /*out*/;
|
|
79
77
|
resourceInputs["model"] = undefined /*out*/;
|
|
@@ -85,10 +83,10 @@ class AgentTemplate extends pulumi.CustomResource {
|
|
|
85
83
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
86
84
|
const replaceOnChanges = { replaceOnChanges: ["projectId"] };
|
|
87
85
|
opts = pulumi.mergeOptions(opts, replaceOnChanges);
|
|
88
|
-
super(
|
|
86
|
+
super(AgentConfiguration.__pulumiType, name, resourceInputs, opts);
|
|
89
87
|
}
|
|
90
88
|
}
|
|
91
|
-
exports.
|
|
89
|
+
exports.AgentConfiguration = AgentConfiguration;
|
|
92
90
|
/** @internal */
|
|
93
|
-
|
|
94
|
-
//# sourceMappingURL=
|
|
91
|
+
AgentConfiguration.__pulumiType = 'agentcloud:index:AgentConfiguration';
|
|
92
|
+
//# sourceMappingURL=agentConfiguration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agentConfiguration.js","sourceRoot":"","sources":["../agentConfiguration.ts"],"names":[],"mappings":"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"}
|
package/dist/agentRuns.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
export declare function agentRuns(args?: AgentRunsArgs, opts?: pulumi.InvokeOptions): Promise<AgentRunsResult>;
|
|
4
4
|
export interface AgentRunsArgs {
|
|
5
|
-
|
|
5
|
+
agentConfigurationId?: string;
|
|
6
6
|
cursor?: string;
|
|
7
7
|
limit?: number;
|
|
8
8
|
projectId?: string;
|
|
@@ -13,7 +13,7 @@ export interface AgentRunsResult {
|
|
|
13
13
|
}
|
|
14
14
|
export declare function agentRunsOutput(args?: AgentRunsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<AgentRunsResult>;
|
|
15
15
|
export interface AgentRunsOutputArgs {
|
|
16
|
-
|
|
16
|
+
agentConfigurationId?: pulumi.Input<string>;
|
|
17
17
|
cursor?: pulumi.Input<string>;
|
|
18
18
|
limit?: pulumi.Input<number>;
|
|
19
19
|
projectId?: pulumi.Input<string>;
|
package/dist/agentRuns.js
CHANGED
|
@@ -9,7 +9,7 @@ function agentRuns(args, opts) {
|
|
|
9
9
|
args = args || {};
|
|
10
10
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
11
11
|
return pulumi.runtime.invoke("agentcloud:index:agentRuns", {
|
|
12
|
-
"
|
|
12
|
+
"agentConfigurationId": args.agentConfigurationId,
|
|
13
13
|
"cursor": args.cursor,
|
|
14
14
|
"limit": args.limit,
|
|
15
15
|
"projectId": args.projectId,
|
|
@@ -20,7 +20,7 @@ function agentRunsOutput(args, opts) {
|
|
|
20
20
|
args = args || {};
|
|
21
21
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
22
22
|
return pulumi.runtime.invokeOutput("agentcloud:index:agentRuns", {
|
|
23
|
-
"
|
|
23
|
+
"agentConfigurationId": args.agentConfigurationId,
|
|
24
24
|
"cursor": args.cursor,
|
|
25
25
|
"limit": args.limit,
|
|
26
26
|
"projectId": args.projectId,
|
package/dist/agentRuns.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agentRuns.js","sourceRoot":"","sources":["../agentRuns.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4BAA4B,EAAE;QACvD,
|
|
1
|
+
{"version":3,"file":"agentRuns.js","sourceRoot":"","sources":["../agentRuns.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4BAA4B,EAAE;QACvD,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,8BASC;AAaD,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAAiC;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4BAA4B,EAAE;QAC7D,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,0CASC"}
|
package/dist/database.js
CHANGED
|
@@ -15,7 +15,7 @@ class Database extends pulumi.CustomResource {
|
|
|
15
15
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
16
16
|
*/
|
|
17
17
|
static get(name, id, opts) {
|
|
18
|
-
return new Database(name, undefined,
|
|
18
|
+
return new Database(name, undefined, { ...opts, id: id });
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* Returns true if the given object is an instance of Database. This is designed to work even
|
|
@@ -38,11 +38,11 @@ class Database extends pulumi.CustomResource {
|
|
|
38
38
|
let resourceInputs = {};
|
|
39
39
|
opts = opts || {};
|
|
40
40
|
if (!opts.id) {
|
|
41
|
-
if (
|
|
41
|
+
if (args?.name === undefined && !opts.urn) {
|
|
42
42
|
throw new Error("Missing required property 'name'");
|
|
43
43
|
}
|
|
44
|
-
resourceInputs["name"] = args
|
|
45
|
-
resourceInputs["projectId"] = args
|
|
44
|
+
resourceInputs["name"] = args?.name;
|
|
45
|
+
resourceInputs["projectId"] = args?.projectId;
|
|
46
46
|
resourceInputs["databaseId"] = undefined /*out*/;
|
|
47
47
|
resourceInputs["status"] = undefined /*out*/;
|
|
48
48
|
}
|
package/dist/database.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"database.js","sourceRoot":"","sources":["../database.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAE,SAAgB,
|
|
1
|
+
{"version":3,"file":"database.js","sourceRoot":"","sources":["../database.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAE,SAAgB,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACrE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;IAOD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAkB,EAAE,IAAmC;QAC7E,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;aAAM;YACH,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,gBAAgB,GAAG,EAAE,gBAAgB,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC;QAC7D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;QACnD,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;;AA5DL,4BA6DC;AAhDG,gBAAgB;AACO,qBAAY,GAAG,2BAA2B,CAAC"}
|
package/dist/function.js
CHANGED
|
@@ -15,7 +15,7 @@ class Function extends pulumi.CustomResource {
|
|
|
15
15
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
16
16
|
*/
|
|
17
17
|
static get(name, id, opts) {
|
|
18
|
-
return new Function(name, undefined,
|
|
18
|
+
return new Function(name, undefined, { ...opts, id: id });
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* Returns true if the given object is an instance of Function. This is designed to work even
|
|
@@ -38,21 +38,21 @@ class Function extends pulumi.CustomResource {
|
|
|
38
38
|
let resourceInputs = {};
|
|
39
39
|
opts = opts || {};
|
|
40
40
|
if (!opts.id) {
|
|
41
|
-
if (
|
|
41
|
+
if (args?.inputSchema === undefined && !opts.urn) {
|
|
42
42
|
throw new Error("Missing required property 'inputSchema'");
|
|
43
43
|
}
|
|
44
|
-
if (
|
|
44
|
+
if (args?.name === undefined && !opts.urn) {
|
|
45
45
|
throw new Error("Missing required property 'name'");
|
|
46
46
|
}
|
|
47
|
-
if (
|
|
47
|
+
if (args?.serviceId === undefined && !opts.urn) {
|
|
48
48
|
throw new Error("Missing required property 'serviceId'");
|
|
49
49
|
}
|
|
50
|
-
resourceInputs["cpu"] = args
|
|
51
|
-
resourceInputs["inputSchema"] = args
|
|
52
|
-
resourceInputs["memoryMb"] = args
|
|
53
|
-
resourceInputs["name"] = args
|
|
54
|
-
resourceInputs["projectId"] = args
|
|
55
|
-
resourceInputs["serviceId"] = args
|
|
50
|
+
resourceInputs["cpu"] = args?.cpu;
|
|
51
|
+
resourceInputs["inputSchema"] = args?.inputSchema;
|
|
52
|
+
resourceInputs["memoryMb"] = args?.memoryMb;
|
|
53
|
+
resourceInputs["name"] = args?.name;
|
|
54
|
+
resourceInputs["projectId"] = args?.projectId;
|
|
55
|
+
resourceInputs["serviceId"] = args?.serviceId;
|
|
56
56
|
resourceInputs["functionId"] = undefined /*out*/;
|
|
57
57
|
}
|
|
58
58
|
else {
|
package/dist/function.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"function.js","sourceRoot":"","sources":["../function.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAE,SAAgB,
|
|
1
|
+
{"version":3,"file":"function.js","sourceRoot":"","sources":["../function.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
export declare class GithubInstallation extends pulumi.CustomResource {
|
|
3
|
+
/**
|
|
4
|
+
* Get an existing GithubInstallation resource's state with the given name, ID, and optional extra
|
|
5
|
+
* properties used to qualify the lookup.
|
|
6
|
+
*
|
|
7
|
+
* @param name The _unique_ name of the resulting resource.
|
|
8
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
9
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
10
|
+
*/
|
|
11
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): GithubInstallation;
|
|
12
|
+
/**
|
|
13
|
+
* Returns true if the given object is an instance of GithubInstallation. This is designed to work even
|
|
14
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
15
|
+
*/
|
|
16
|
+
static isInstance(obj: any): obj is GithubInstallation;
|
|
17
|
+
readonly accountLogin: pulumi.Output<string | undefined>;
|
|
18
|
+
readonly accountType: pulumi.Output<string | undefined>;
|
|
19
|
+
readonly githubAppInstallationId: pulumi.Output<number | undefined>;
|
|
20
|
+
readonly installationId: pulumi.Output<string>;
|
|
21
|
+
readonly name: pulumi.Output<string>;
|
|
22
|
+
readonly projectId: pulumi.Output<string | undefined>;
|
|
23
|
+
readonly status: pulumi.Output<string>;
|
|
24
|
+
/**
|
|
25
|
+
* Create a GithubInstallation resource with the given unique name, arguments, and options.
|
|
26
|
+
*
|
|
27
|
+
* @param name The _unique_ name of the resource.
|
|
28
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
29
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
30
|
+
*/
|
|
31
|
+
constructor(name: string, args: GithubInstallationArgs, opts?: pulumi.CustomResourceOptions);
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* The set of arguments for constructing a GithubInstallation resource.
|
|
35
|
+
*/
|
|
36
|
+
export interface GithubInstallationArgs {
|
|
37
|
+
name: pulumi.Input<string>;
|
|
38
|
+
projectId?: pulumi.Input<string>;
|
|
39
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.GithubInstallation = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
class GithubInstallation extends pulumi.CustomResource {
|
|
9
|
+
/**
|
|
10
|
+
* Get an existing GithubInstallation resource's state with the given name, ID, and optional extra
|
|
11
|
+
* properties used to qualify the lookup.
|
|
12
|
+
*
|
|
13
|
+
* @param name The _unique_ name of the resulting resource.
|
|
14
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
15
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
16
|
+
*/
|
|
17
|
+
static get(name, id, opts) {
|
|
18
|
+
return new GithubInstallation(name, undefined, { ...opts, id: id });
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Returns true if the given object is an instance of GithubInstallation. This is designed to work even
|
|
22
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
23
|
+
*/
|
|
24
|
+
static isInstance(obj) {
|
|
25
|
+
if (obj === undefined || obj === null) {
|
|
26
|
+
return false;
|
|
27
|
+
}
|
|
28
|
+
return obj['__pulumiType'] === GithubInstallation.__pulumiType;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Create a GithubInstallation resource with the given unique name, arguments, and options.
|
|
32
|
+
*
|
|
33
|
+
* @param name The _unique_ name of the resource.
|
|
34
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
35
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
36
|
+
*/
|
|
37
|
+
constructor(name, args, opts) {
|
|
38
|
+
let resourceInputs = {};
|
|
39
|
+
opts = opts || {};
|
|
40
|
+
if (!opts.id) {
|
|
41
|
+
if (args?.name === undefined && !opts.urn) {
|
|
42
|
+
throw new Error("Missing required property 'name'");
|
|
43
|
+
}
|
|
44
|
+
resourceInputs["name"] = args?.name;
|
|
45
|
+
resourceInputs["projectId"] = args?.projectId;
|
|
46
|
+
resourceInputs["accountLogin"] = undefined /*out*/;
|
|
47
|
+
resourceInputs["accountType"] = undefined /*out*/;
|
|
48
|
+
resourceInputs["githubAppInstallationId"] = undefined /*out*/;
|
|
49
|
+
resourceInputs["installationId"] = undefined /*out*/;
|
|
50
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
51
|
+
}
|
|
52
|
+
else {
|
|
53
|
+
resourceInputs["accountLogin"] = undefined /*out*/;
|
|
54
|
+
resourceInputs["accountType"] = undefined /*out*/;
|
|
55
|
+
resourceInputs["githubAppInstallationId"] = undefined /*out*/;
|
|
56
|
+
resourceInputs["installationId"] = undefined /*out*/;
|
|
57
|
+
resourceInputs["name"] = undefined /*out*/;
|
|
58
|
+
resourceInputs["projectId"] = undefined /*out*/;
|
|
59
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
60
|
+
}
|
|
61
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
62
|
+
const replaceOnChanges = { replaceOnChanges: ["name", "projectId"] };
|
|
63
|
+
opts = pulumi.mergeOptions(opts, replaceOnChanges);
|
|
64
|
+
super(GithubInstallation.__pulumiType, name, resourceInputs, opts);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
exports.GithubInstallation = GithubInstallation;
|
|
68
|
+
/** @internal */
|
|
69
|
+
GithubInstallation.__pulumiType = 'agentcloud:index:GithubInstallation';
|
|
70
|
+
//# sourceMappingURL=githubInstallation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"githubInstallation.js","sourceRoot":"","sources":["../githubInstallation.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IACzD;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAE,SAAgB,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC/E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;IAUD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAA4B,EAAE,IAAmC;QACvF,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,yBAAyB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9D,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACrD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;aAAM;YACH,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,yBAAyB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9D,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACrD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,gBAAgB,GAAG,EAAE,gBAAgB,EAAE,CAAC,MAAM,EAAE,WAAW,CAAC,EAAE,CAAC;QACrE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;QACnD,KAAK,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACvE,CAAC;;AArEL,gDAsEC;AAzDG,gBAAgB;AACO,+BAAY,GAAG,qCAAqC,CAAC"}
|
package/dist/image.js
CHANGED
|
@@ -15,7 +15,7 @@ class Image extends pulumi.CustomResource {
|
|
|
15
15
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
16
16
|
*/
|
|
17
17
|
static get(name, id, opts) {
|
|
18
|
-
return new Image(name, undefined,
|
|
18
|
+
return new Image(name, undefined, { ...opts, id: id });
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
21
|
* Returns true if the given object is an instance of Image. This is designed to work even
|
|
@@ -38,18 +38,18 @@ class Image extends pulumi.CustomResource {
|
|
|
38
38
|
let resourceInputs = {};
|
|
39
39
|
opts = opts || {};
|
|
40
40
|
if (!opts.id) {
|
|
41
|
-
if (
|
|
41
|
+
if (args?.name === undefined && !opts.urn) {
|
|
42
42
|
throw new Error("Missing required property 'name'");
|
|
43
43
|
}
|
|
44
|
-
if (
|
|
44
|
+
if (args?.sourceType === undefined && !opts.urn) {
|
|
45
45
|
throw new Error("Missing required property 'sourceType'");
|
|
46
46
|
}
|
|
47
|
-
resourceInputs["contextPath"] = args
|
|
48
|
-
resourceInputs["dockerfilePath"] = args
|
|
49
|
-
resourceInputs["name"] = args
|
|
50
|
-
resourceInputs["projectId"] = args
|
|
51
|
-
resourceInputs["registryRef"] = args
|
|
52
|
-
resourceInputs["sourceType"] = args
|
|
47
|
+
resourceInputs["contextPath"] = args?.contextPath;
|
|
48
|
+
resourceInputs["dockerfilePath"] = args?.dockerfilePath;
|
|
49
|
+
resourceInputs["name"] = args?.name;
|
|
50
|
+
resourceInputs["projectId"] = args?.projectId;
|
|
51
|
+
resourceInputs["registryRef"] = args?.registryRef;
|
|
52
|
+
resourceInputs["sourceType"] = args?.sourceType;
|
|
53
53
|
resourceInputs["imageId"] = undefined /*out*/;
|
|
54
54
|
}
|
|
55
55
|
else {
|
package/dist/image.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image.js","sourceRoot":"","sources":["../image.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,KAAK,CAAC,IAAI,EAAE,SAAgB,
|
|
1
|
+
{"version":3,"file":"image.js","sourceRoot":"","sources":["../image.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,KAAK,CAAC,IAAI,EAAE,SAAgB,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;IAUD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAe,EAAE,IAAmC;QAC1E,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;aAAM;YACH,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACrD,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACpD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,gBAAgB,GAAG,EAAE,gBAAgB,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC;QAC7D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;QACnD,KAAK,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1D,CAAC;;AAxEL,sBAyEC;AA5DG,gBAAgB;AACO,kBAAY,GAAG,wBAAwB,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,18 @@
|
|
|
1
|
+
export { AgentConfigurationArgs } from "./agentConfiguration";
|
|
2
|
+
export type AgentConfiguration = import("./agentConfiguration").AgentConfiguration;
|
|
3
|
+
export declare const AgentConfiguration: typeof import("./agentConfiguration").AgentConfiguration;
|
|
1
4
|
export { AgentRunsArgs, AgentRunsResult, AgentRunsOutputArgs } from "./agentRuns";
|
|
2
5
|
export declare const agentRuns: typeof import("./agentRuns").agentRuns;
|
|
3
6
|
export declare const agentRunsOutput: typeof import("./agentRuns").agentRunsOutput;
|
|
4
|
-
export { AgentTemplateArgs } from "./agentTemplate";
|
|
5
|
-
export type AgentTemplate = import("./agentTemplate").AgentTemplate;
|
|
6
|
-
export declare const AgentTemplate: typeof import("./agentTemplate").AgentTemplate;
|
|
7
7
|
export { DatabaseArgs } from "./database";
|
|
8
8
|
export type Database = import("./database").Database;
|
|
9
9
|
export declare const Database: typeof import("./database").Database;
|
|
10
10
|
export { FunctionArgs } from "./function";
|
|
11
11
|
export type Function = import("./function").Function;
|
|
12
12
|
export declare const Function: typeof import("./function").Function;
|
|
13
|
+
export { GithubInstallationArgs } from "./githubInstallation";
|
|
14
|
+
export type GithubInstallation = import("./githubInstallation").GithubInstallation;
|
|
15
|
+
export declare const GithubInstallation: typeof import("./githubInstallation").GithubInstallation;
|
|
13
16
|
export { ImageArgs } from "./image";
|
|
14
17
|
export type Image = import("./image").Image;
|
|
15
18
|
export declare const Image: typeof import("./image").Image;
|
|
@@ -61,6 +64,9 @@ export declare const ServiceDeploymentResource: typeof import("./serviceDeployme
|
|
|
61
64
|
export { ServiceDeploymentsArgs, ServiceDeploymentsResult, ServiceDeploymentsOutputArgs } from "./serviceDeployments";
|
|
62
65
|
export declare const serviceDeployments: typeof import("./serviceDeployments").serviceDeployments;
|
|
63
66
|
export declare const serviceDeploymentsOutput: typeof import("./serviceDeployments").serviceDeploymentsOutput;
|
|
67
|
+
export { TriggerArgs } from "./trigger";
|
|
68
|
+
export type Trigger = import("./trigger").Trigger;
|
|
69
|
+
export declare const Trigger: typeof import("./trigger").Trigger;
|
|
64
70
|
import * as config from "./config";
|
|
65
71
|
import * as types from "./types";
|
|
66
72
|
export { config, types, };
|
package/dist/index.js
CHANGED
|
@@ -2,18 +2,20 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.types = exports.config = exports.serviceDeploymentsOutput = exports.serviceDeployments = exports.ServiceDeploymentResource = exports.Service = exports.Secret = exports.Provider = exports.ProjectRoleRule = exports.ProjectRoleBinding = exports.ProjectRole = exports.permissionCatalogOutput = exports.permissionCatalog = exports.messagesOutput = exports.messages = exports.Machine = exports.logsOutput = exports.logs = exports.jobRunsOutput = exports.jobRuns = exports.Job = exports.imageVersionsByImageOutput = exports.imageVersionsByImage = exports.imageVersionsOutput = exports.imageVersions = exports.Image = exports.
|
|
5
|
+
exports.types = exports.config = exports.Trigger = exports.serviceDeploymentsOutput = exports.serviceDeployments = exports.ServiceDeploymentResource = exports.Service = exports.Secret = exports.Provider = exports.ProjectRoleRule = exports.ProjectRoleBinding = exports.ProjectRole = exports.permissionCatalogOutput = exports.permissionCatalog = exports.messagesOutput = exports.messages = exports.Machine = exports.logsOutput = exports.logs = exports.jobRunsOutput = exports.jobRuns = exports.Job = exports.imageVersionsByImageOutput = exports.imageVersionsByImage = exports.imageVersionsOutput = exports.imageVersions = exports.Image = exports.GithubInstallation = exports.Function = exports.Database = exports.agentRunsOutput = exports.agentRuns = exports.AgentConfiguration = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
exports.AgentConfiguration = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["AgentConfiguration"], () => require("./agentConfiguration"));
|
|
8
10
|
exports.agentRuns = null;
|
|
9
11
|
exports.agentRunsOutput = null;
|
|
10
12
|
utilities.lazyLoad(exports, ["agentRuns", "agentRunsOutput"], () => require("./agentRuns"));
|
|
11
|
-
exports.AgentTemplate = null;
|
|
12
|
-
utilities.lazyLoad(exports, ["AgentTemplate"], () => require("./agentTemplate"));
|
|
13
13
|
exports.Database = null;
|
|
14
14
|
utilities.lazyLoad(exports, ["Database"], () => require("./database"));
|
|
15
15
|
exports.Function = null;
|
|
16
16
|
utilities.lazyLoad(exports, ["Function"], () => require("./function"));
|
|
17
|
+
exports.GithubInstallation = null;
|
|
18
|
+
utilities.lazyLoad(exports, ["GithubInstallation"], () => require("./githubInstallation"));
|
|
17
19
|
exports.Image = null;
|
|
18
20
|
utilities.lazyLoad(exports, ["Image"], () => require("./image"));
|
|
19
21
|
exports.imageVersions = null;
|
|
@@ -55,6 +57,8 @@ utilities.lazyLoad(exports, ["ServiceDeploymentResource"], () => require("./serv
|
|
|
55
57
|
exports.serviceDeployments = null;
|
|
56
58
|
exports.serviceDeploymentsOutput = null;
|
|
57
59
|
utilities.lazyLoad(exports, ["serviceDeployments", "serviceDeploymentsOutput"], () => require("./serviceDeployments"));
|
|
60
|
+
exports.Trigger = null;
|
|
61
|
+
utilities.lazyLoad(exports, ["Trigger"], () => require("./trigger"));
|
|
58
62
|
// Export sub-modules:
|
|
59
63
|
const config = require("./config");
|
|
60
64
|
exports.config = config;
|
|
@@ -64,12 +68,14 @@ const _module = {
|
|
|
64
68
|
version: utilities.getVersion(),
|
|
65
69
|
construct: (name, type, urn) => {
|
|
66
70
|
switch (type) {
|
|
67
|
-
case "agentcloud:index:
|
|
68
|
-
return new exports.
|
|
71
|
+
case "agentcloud:index:AgentConfiguration":
|
|
72
|
+
return new exports.AgentConfiguration(name, undefined, { urn });
|
|
69
73
|
case "agentcloud:index:Database":
|
|
70
74
|
return new exports.Database(name, undefined, { urn });
|
|
71
75
|
case "agentcloud:index:Function":
|
|
72
76
|
return new exports.Function(name, undefined, { urn });
|
|
77
|
+
case "agentcloud:index:GithubInstallation":
|
|
78
|
+
return new exports.GithubInstallation(name, undefined, { urn });
|
|
73
79
|
case "agentcloud:index:Image":
|
|
74
80
|
return new exports.Image(name, undefined, { urn });
|
|
75
81
|
case "agentcloud:index:Job":
|
|
@@ -88,6 +94,8 @@ const _module = {
|
|
|
88
94
|
return new exports.Service(name, undefined, { urn });
|
|
89
95
|
case "agentcloud:index:ServiceDeploymentResource":
|
|
90
96
|
return new exports.ServiceDeploymentResource(name, undefined, { urn });
|
|
97
|
+
case "agentcloud:index:Trigger":
|
|
98
|
+
return new exports.Trigger(name, undefined, { urn });
|
|
91
99
|
default:
|
|
92
100
|
throw new Error(`unknown resource type ${type}`);
|
|
93
101
|
}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|