@sl-testing/ac-pulumi 0.1.29 → 0.1.30

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.
Files changed (53) hide show
  1. package/dist/agentRuns.d.ts +0 -2
  2. package/dist/agentRuns.js +0 -2
  3. package/dist/agentRuns.js.map +1 -1
  4. package/dist/index.d.ts +0 -42
  5. package/dist/index.js +1 -51
  6. package/dist/index.js.map +1 -1
  7. package/dist/types/output.d.ts +0 -39
  8. package/package.json +3 -3
  9. package/dist/agentConfiguration.d.ts +0 -57
  10. package/dist/agentConfiguration.js +0 -93
  11. package/dist/agentConfiguration.js.map +0 -1
  12. package/dist/database.d.ts +0 -36
  13. package/dist/database.js +0 -64
  14. package/dist/database.js.map +0 -1
  15. package/dist/image.d.ts +0 -47
  16. package/dist/image.js +0 -77
  17. package/dist/image.js.map +0 -1
  18. package/dist/imageVersions.d.ts +0 -15
  19. package/dist/imageVersions.js +0 -24
  20. package/dist/imageVersions.js.map +0 -1
  21. package/dist/imageVersionsByImage.d.ts +0 -20
  22. package/dist/imageVersionsByImage.js +0 -28
  23. package/dist/imageVersionsByImage.js.map +0 -1
  24. package/dist/job.d.ts +0 -49
  25. package/dist/job.js +0 -78
  26. package/dist/job.js.map +0 -1
  27. package/dist/jobRuns.d.ts +0 -20
  28. package/dist/jobRuns.js +0 -30
  29. package/dist/jobRuns.js.map +0 -1
  30. package/dist/logs.d.ts +0 -23
  31. package/dist/logs.js +0 -32
  32. package/dist/logs.js.map +0 -1
  33. package/dist/provider/darwin-arm64/pulumi-resource-agentcloud +0 -0
  34. package/dist/provider/linux-x64/pulumi-resource-agentcloud +0 -0
  35. package/dist/scripts/postinstall.js +0 -76
  36. package/dist/service.d.ts +0 -47
  37. package/dist/service.js +0 -79
  38. package/dist/service.js.map +0 -1
  39. package/dist/serviceDeploymentResource.d.ts +0 -39
  40. package/dist/serviceDeploymentResource.js +0 -71
  41. package/dist/serviceDeploymentResource.js.map +0 -1
  42. package/dist/serviceDeployments.d.ts +0 -20
  43. package/dist/serviceDeployments.js +0 -28
  44. package/dist/serviceDeployments.js.map +0 -1
  45. package/dist/slackActionTypes.d.ts +0 -13
  46. package/dist/slackActionTypes.js +0 -24
  47. package/dist/slackActionTypes.js.map +0 -1
  48. package/dist/slackConnection.d.ts +0 -41
  49. package/dist/slackConnection.js +0 -75
  50. package/dist/slackConnection.js.map +0 -1
  51. package/dist/trigger.d.ts +0 -47
  52. package/dist/trigger.js +0 -78
  53. package/dist/trigger.js.map +0 -1
package/dist/image.js DELETED
@@ -1,77 +0,0 @@
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.Image = void 0;
6
- const pulumi = require("@pulumi/pulumi");
7
- const utilities = require("./utilities");
8
- class Image extends pulumi.CustomResource {
9
- /**
10
- * Get an existing Image 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 Image(name, undefined, { ...opts, id: id });
19
- }
20
- /**
21
- * Returns true if the given object is an instance of Image. 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'] === Image.__pulumiType;
29
- }
30
- /**
31
- * Create a Image 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
- if (args?.sourceType === undefined && !opts.urn) {
45
- throw new Error("Missing required property 'sourceType'");
46
- }
47
- resourceInputs["buildComputeType"] = args?.buildComputeType;
48
- resourceInputs["buildEphemeralStorageGiB"] = args?.buildEphemeralStorageGiB;
49
- resourceInputs["contextPath"] = args?.contextPath;
50
- resourceInputs["dockerfilePath"] = args?.dockerfilePath;
51
- resourceInputs["name"] = args?.name;
52
- resourceInputs["projectId"] = args?.projectId;
53
- resourceInputs["registryRef"] = args?.registryRef;
54
- resourceInputs["sourceType"] = args?.sourceType;
55
- resourceInputs["imageId"] = undefined /*out*/;
56
- }
57
- else {
58
- resourceInputs["buildComputeType"] = undefined /*out*/;
59
- resourceInputs["buildEphemeralStorageGiB"] = undefined /*out*/;
60
- resourceInputs["contextPath"] = undefined /*out*/;
61
- resourceInputs["dockerfilePath"] = undefined /*out*/;
62
- resourceInputs["imageId"] = undefined /*out*/;
63
- resourceInputs["name"] = undefined /*out*/;
64
- resourceInputs["projectId"] = undefined /*out*/;
65
- resourceInputs["registryRef"] = undefined /*out*/;
66
- resourceInputs["sourceType"] = undefined /*out*/;
67
- }
68
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
69
- const replaceOnChanges = { replaceOnChanges: ["projectId"] };
70
- opts = pulumi.mergeOptions(opts, replaceOnChanges);
71
- super(Image.__pulumiType, name, resourceInputs, opts);
72
- }
73
- }
74
- exports.Image = Image;
75
- /** @internal */
76
- Image.__pulumiType = 'agentcloud:index:Image';
77
- //# sourceMappingURL=image.js.map
package/dist/image.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"image.js","sourceRoot":"","sources":["../image.ts"],"names":[],"mappings":"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"}
@@ -1,15 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- import * as outputs from "./types/output";
3
- export declare function imageVersions(args: ImageVersionsArgs, opts?: pulumi.InvokeOptions): Promise<ImageVersionsResult>;
4
- export interface ImageVersionsArgs {
5
- imageVersionId: string;
6
- projectId?: string;
7
- }
8
- export interface ImageVersionsResult {
9
- readonly imageVersion: outputs.ImageVersion;
10
- }
11
- export declare function imageVersionsOutput(args: ImageVersionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ImageVersionsResult>;
12
- export interface ImageVersionsOutputArgs {
13
- imageVersionId: pulumi.Input<string>;
14
- projectId?: pulumi.Input<string>;
15
- }
@@ -1,24 +0,0 @@
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.imageVersionsOutput = exports.imageVersions = void 0;
6
- const pulumi = require("@pulumi/pulumi");
7
- const utilities = require("./utilities");
8
- function imageVersions(args, opts) {
9
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
10
- return pulumi.runtime.invoke("agentcloud:index:imageVersions", {
11
- "imageVersionId": args.imageVersionId,
12
- "projectId": args.projectId,
13
- }, opts);
14
- }
15
- exports.imageVersions = imageVersions;
16
- function imageVersionsOutput(args, opts) {
17
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
18
- return pulumi.runtime.invokeOutput("agentcloud:index:imageVersions", {
19
- "imageVersionId": args.imageVersionId,
20
- "projectId": args.projectId,
21
- }, opts);
22
- }
23
- exports.imageVersionsOutput = imageVersionsOutput;
24
- //# sourceMappingURL=imageVersions.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"imageVersions.js","sourceRoot":"","sources":["../imageVersions.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;AAUD,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAAiC;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gCAAgC,EAAE;QACjE,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC"}
@@ -1,20 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- import * as outputs from "./types/output";
3
- export declare function imageVersionsByImage(args: ImageVersionsByImageArgs, opts?: pulumi.InvokeOptions): Promise<ImageVersionsByImageResult>;
4
- export interface ImageVersionsByImageArgs {
5
- cursor?: string;
6
- imageId: string;
7
- limit?: number;
8
- projectId?: string;
9
- }
10
- export interface ImageVersionsByImageResult {
11
- readonly items: outputs.ImageVersion[];
12
- readonly nextCursor?: string;
13
- }
14
- export declare function imageVersionsByImageOutput(args: ImageVersionsByImageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ImageVersionsByImageResult>;
15
- export interface ImageVersionsByImageOutputArgs {
16
- cursor?: pulumi.Input<string>;
17
- imageId: pulumi.Input<string>;
18
- limit?: pulumi.Input<number>;
19
- projectId?: pulumi.Input<string>;
20
- }
@@ -1,28 +0,0 @@
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.imageVersionsByImageOutput = exports.imageVersionsByImage = void 0;
6
- const pulumi = require("@pulumi/pulumi");
7
- const utilities = require("./utilities");
8
- function imageVersionsByImage(args, opts) {
9
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
10
- return pulumi.runtime.invoke("agentcloud:index:imageVersionsByImage", {
11
- "cursor": args.cursor,
12
- "imageId": args.imageId,
13
- "limit": args.limit,
14
- "projectId": args.projectId,
15
- }, opts);
16
- }
17
- exports.imageVersionsByImage = imageVersionsByImage;
18
- function imageVersionsByImageOutput(args, opts) {
19
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
20
- return pulumi.runtime.invokeOutput("agentcloud:index:imageVersionsByImage", {
21
- "cursor": args.cursor,
22
- "imageId": args.imageId,
23
- "limit": args.limit,
24
- "projectId": args.projectId,
25
- }, opts);
26
- }
27
- exports.imageVersionsByImageOutput = imageVersionsByImageOutput;
28
- //# sourceMappingURL=imageVersionsByImage.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"imageVersionsByImage.js","sourceRoot":"","sources":["../imageVersionsByImage.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uCAAuC,EAAE;QAClE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oDAQC;AAaD,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAAiC;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uCAAuC,EAAE;QACxE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gEAQC"}
package/dist/job.d.ts DELETED
@@ -1,49 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- export declare class Job extends pulumi.CustomResource {
3
- /**
4
- * Get an existing Job 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): Job;
12
- /**
13
- * Returns true if the given object is an instance of Job. 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 Job;
17
- readonly command: pulumi.Output<string>;
18
- readonly imageVersionId: pulumi.Output<string>;
19
- readonly inputSchema: pulumi.Output<{
20
- [key: string]: any;
21
- } | undefined>;
22
- readonly jobId: pulumi.Output<string>;
23
- readonly maxParallelRuns: pulumi.Output<number | undefined>;
24
- readonly name: pulumi.Output<string>;
25
- readonly projectId: pulumi.Output<string | undefined>;
26
- readonly timeoutSeconds: pulumi.Output<number | undefined>;
27
- /**
28
- * Create a Job resource with the given unique name, arguments, and options.
29
- *
30
- * @param name The _unique_ name of the resource.
31
- * @param args The arguments to use to populate this resource's properties.
32
- * @param opts A bag of options that control this resource's behavior.
33
- */
34
- constructor(name: string, args: JobArgs, opts?: pulumi.CustomResourceOptions);
35
- }
36
- /**
37
- * The set of arguments for constructing a Job resource.
38
- */
39
- export interface JobArgs {
40
- command: pulumi.Input<string>;
41
- imageVersionId: pulumi.Input<string>;
42
- inputSchema?: pulumi.Input<{
43
- [key: string]: any;
44
- }>;
45
- maxParallelRuns?: pulumi.Input<number>;
46
- name: pulumi.Input<string>;
47
- projectId?: pulumi.Input<string>;
48
- timeoutSeconds?: pulumi.Input<number>;
49
- }
package/dist/job.js DELETED
@@ -1,78 +0,0 @@
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.Job = void 0;
6
- const pulumi = require("@pulumi/pulumi");
7
- const utilities = require("./utilities");
8
- class Job extends pulumi.CustomResource {
9
- /**
10
- * Get an existing Job 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 Job(name, undefined, { ...opts, id: id });
19
- }
20
- /**
21
- * Returns true if the given object is an instance of Job. 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'] === Job.__pulumiType;
29
- }
30
- /**
31
- * Create a Job 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?.command === undefined && !opts.urn) {
42
- throw new Error("Missing required property 'command'");
43
- }
44
- if (args?.imageVersionId === undefined && !opts.urn) {
45
- throw new Error("Missing required property 'imageVersionId'");
46
- }
47
- if (args?.name === undefined && !opts.urn) {
48
- throw new Error("Missing required property 'name'");
49
- }
50
- resourceInputs["command"] = args?.command;
51
- resourceInputs["imageVersionId"] = args?.imageVersionId;
52
- resourceInputs["inputSchema"] = args?.inputSchema;
53
- resourceInputs["maxParallelRuns"] = args?.maxParallelRuns;
54
- resourceInputs["name"] = args?.name;
55
- resourceInputs["projectId"] = args?.projectId;
56
- resourceInputs["timeoutSeconds"] = args?.timeoutSeconds;
57
- resourceInputs["jobId"] = undefined /*out*/;
58
- }
59
- else {
60
- resourceInputs["command"] = undefined /*out*/;
61
- resourceInputs["imageVersionId"] = undefined /*out*/;
62
- resourceInputs["inputSchema"] = undefined /*out*/;
63
- resourceInputs["jobId"] = undefined /*out*/;
64
- resourceInputs["maxParallelRuns"] = undefined /*out*/;
65
- resourceInputs["name"] = undefined /*out*/;
66
- resourceInputs["projectId"] = undefined /*out*/;
67
- resourceInputs["timeoutSeconds"] = undefined /*out*/;
68
- }
69
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
70
- const replaceOnChanges = { replaceOnChanges: ["projectId"] };
71
- opts = pulumi.mergeOptions(opts, replaceOnChanges);
72
- super(Job.__pulumiType, name, resourceInputs, opts);
73
- }
74
- }
75
- exports.Job = Job;
76
- /** @internal */
77
- Job.__pulumiType = 'agentcloud:index:Job';
78
- //# sourceMappingURL=job.js.map
package/dist/job.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"job.js","sourceRoot":"","sources":["../job.ts"],"names":[],"mappings":"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"}
package/dist/jobRuns.d.ts DELETED
@@ -1,20 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- import * as outputs from "./types/output";
3
- export declare function jobRuns(args?: JobRunsArgs, opts?: pulumi.InvokeOptions): Promise<JobRunsResult>;
4
- export interface JobRunsArgs {
5
- cursor?: string;
6
- jobId?: string;
7
- limit?: number;
8
- projectId?: string;
9
- }
10
- export interface JobRunsResult {
11
- readonly items: outputs.JobRun[];
12
- readonly nextCursor?: string;
13
- }
14
- export declare function jobRunsOutput(args?: JobRunsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<JobRunsResult>;
15
- export interface JobRunsOutputArgs {
16
- cursor?: pulumi.Input<string>;
17
- jobId?: pulumi.Input<string>;
18
- limit?: pulumi.Input<number>;
19
- projectId?: pulumi.Input<string>;
20
- }
package/dist/jobRuns.js DELETED
@@ -1,30 +0,0 @@
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.jobRunsOutput = exports.jobRuns = void 0;
6
- const pulumi = require("@pulumi/pulumi");
7
- const utilities = require("./utilities");
8
- function jobRuns(args, opts) {
9
- args = args || {};
10
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
11
- return pulumi.runtime.invoke("agentcloud:index:jobRuns", {
12
- "cursor": args.cursor,
13
- "jobId": args.jobId,
14
- "limit": args.limit,
15
- "projectId": args.projectId,
16
- }, opts);
17
- }
18
- exports.jobRuns = jobRuns;
19
- function jobRunsOutput(args, opts) {
20
- args = args || {};
21
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
22
- return pulumi.runtime.invokeOutput("agentcloud:index:jobRuns", {
23
- "cursor": args.cursor,
24
- "jobId": args.jobId,
25
- "limit": args.limit,
26
- "projectId": args.projectId,
27
- }, opts);
28
- }
29
- exports.jobRunsOutput = jobRunsOutput;
30
- //# sourceMappingURL=jobRuns.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"jobRuns.js","sourceRoot":"","sources":["../jobRuns.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,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,0BAA0B,EAAE;QACrD,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,0BASC;AAaD,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAAiC;IACrF,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,0BAA0B,EAAE;QAC3D,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,sCASC"}
package/dist/logs.d.ts DELETED
@@ -1,23 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- import * as outputs from "./types/output";
3
- export declare function logs(args: LogsArgs, opts?: pulumi.InvokeOptions): Promise<LogsResult>;
4
- export interface LogsArgs {
5
- contains?: string;
6
- limit?: number;
7
- logId: string;
8
- projectId?: string;
9
- since?: string;
10
- until?: string;
11
- }
12
- export interface LogsResult {
13
- readonly events: outputs.LogEvent[];
14
- }
15
- export declare function logsOutput(args: LogsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<LogsResult>;
16
- export interface LogsOutputArgs {
17
- contains?: pulumi.Input<string>;
18
- limit?: pulumi.Input<number>;
19
- logId: pulumi.Input<string>;
20
- projectId?: pulumi.Input<string>;
21
- since?: pulumi.Input<string>;
22
- until?: pulumi.Input<string>;
23
- }
package/dist/logs.js DELETED
@@ -1,32 +0,0 @@
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.logsOutput = exports.logs = void 0;
6
- const pulumi = require("@pulumi/pulumi");
7
- const utilities = require("./utilities");
8
- function logs(args, opts) {
9
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
10
- return pulumi.runtime.invoke("agentcloud:index:logs", {
11
- "contains": args.contains,
12
- "limit": args.limit,
13
- "logId": args.logId,
14
- "projectId": args.projectId,
15
- "since": args.since,
16
- "until": args.until,
17
- }, opts);
18
- }
19
- exports.logs = logs;
20
- function logsOutput(args, opts) {
21
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
22
- return pulumi.runtime.invokeOutput("agentcloud:index:logs", {
23
- "contains": args.contains,
24
- "limit": args.limit,
25
- "logId": args.logId,
26
- "projectId": args.projectId,
27
- "since": args.since,
28
- "until": args.until,
29
- }, opts);
30
- }
31
- exports.logsOutput = logsOutput;
32
- //# sourceMappingURL=logs.js.map
package/dist/logs.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"logs.js","sourceRoot":"","sources":["../logs.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,IAAI,CAAC,IAAc,EAAE,IAA2B;IAC5D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uBAAuB,EAAE;QAClD,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,oBAUC;AAcD,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAAiC;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uBAAuB,EAAE;QACxD,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,gCAUC"}
@@ -1,76 +0,0 @@
1
- /* eslint-disable no-console */
2
-
3
- const cp = require("node:child_process");
4
- const fs = require("node:fs");
5
- const path = require("node:path");
6
-
7
- function log(msg) {
8
- process.stdout.write(String(msg) + "\n");
9
- }
10
-
11
- function warn(msg) {
12
- process.stderr.write(String(msg) + "\n");
13
- }
14
-
15
- function main() {
16
- // This file is copied into the published dist/ package as dist/scripts/postinstall.js.
17
- const distRoot = path.resolve(__dirname, "..");
18
- const pkgPath = path.join(distRoot, "package.json");
19
- const platform = process.platform;
20
- const arch = process.arch;
21
- const key = `${platform}-${arch}`;
22
-
23
- const supported = {
24
- "darwin-arm64": "darwin-arm64",
25
- "linux-x64": "linux-x64",
26
- };
27
- const target = supported[key];
28
- const providerBin = target
29
- ? path.join(distRoot, "provider", target, "pulumi-resource-agentcloud")
30
- : "";
31
-
32
- if (!fs.existsSync(pkgPath)) {
33
- warn("agentcloud-sdk postinstall: missing package.json (unexpected)");
34
- return;
35
- }
36
- const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf8"));
37
- const version = String(pkg?.version || "").trim();
38
- if (!version) {
39
- warn("agentcloud-sdk postinstall: missing version (unexpected)");
40
- return;
41
- }
42
-
43
- // Keep installs resilient: if pulumi is not installed, skip plugin install.
44
- // Our runbooks/scripts ensure pulumi exists before running `agentcloud infra`.
45
- try {
46
- cp.execSync("pulumi version", { stdio: "ignore" });
47
- } catch {
48
- log(
49
- "agentcloud-sdk postinstall: pulumi not found; skipping provider plugin install",
50
- );
51
- return;
52
- }
53
-
54
- if (!providerBin || !fs.existsSync(providerBin)) {
55
- warn(
56
- `agentcloud-sdk postinstall: missing provider binary for ${key}; skipping plugin install`,
57
- );
58
- return;
59
- }
60
-
61
- // Install (or reinstall) the provider plugin so Pulumi programs can run without
62
- // any manual plugin setup.
63
- const cmd = `pulumi plugin install resource agentcloud ${version} --file ${JSON.stringify(providerBin)} --reinstall`;
64
- try {
65
- cp.execSync(cmd, { stdio: "inherit" });
66
- } catch (err) {
67
- // Don't hard-fail npm installs for transient Pulumi/plugin issues; the next
68
- // `agentcloud infra` invocation will surface a precise error.
69
- warn(
70
- `agentcloud-sdk postinstall: failed to install provider plugin (version=${version})`,
71
- );
72
- warn(String(err?.message || err));
73
- }
74
- }
75
-
76
- main();
package/dist/service.d.ts DELETED
@@ -1,47 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- export declare class Service extends pulumi.CustomResource {
3
- /**
4
- * Get an existing Service 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): Service;
12
- /**
13
- * Returns true if the given object is an instance of Service. 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 Service;
17
- readonly cpu: pulumi.Output<number | undefined>;
18
- readonly healthcheckPath: pulumi.Output<string | undefined>;
19
- readonly memoryMb: pulumi.Output<number | undefined>;
20
- readonly name: pulumi.Output<string>;
21
- readonly port: pulumi.Output<number | undefined>;
22
- readonly projectId: pulumi.Output<string | undefined>;
23
- readonly serviceId: pulumi.Output<string>;
24
- readonly serviceUrl: pulumi.Output<string | undefined>;
25
- readonly status: pulumi.Output<string>;
26
- readonly type: pulumi.Output<string>;
27
- /**
28
- * Create a Service resource with the given unique name, arguments, and options.
29
- *
30
- * @param name The _unique_ name of the resource.
31
- * @param args The arguments to use to populate this resource's properties.
32
- * @param opts A bag of options that control this resource's behavior.
33
- */
34
- constructor(name: string, args: ServiceArgs, opts?: pulumi.CustomResourceOptions);
35
- }
36
- /**
37
- * The set of arguments for constructing a Service resource.
38
- */
39
- export interface ServiceArgs {
40
- cpu?: pulumi.Input<number>;
41
- healthcheckPath?: pulumi.Input<string>;
42
- memoryMb?: pulumi.Input<number>;
43
- name: pulumi.Input<string>;
44
- port?: pulumi.Input<number>;
45
- projectId?: pulumi.Input<string>;
46
- type: pulumi.Input<string>;
47
- }
package/dist/service.js DELETED
@@ -1,79 +0,0 @@
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.Service = void 0;
6
- const pulumi = require("@pulumi/pulumi");
7
- const utilities = require("./utilities");
8
- class Service extends pulumi.CustomResource {
9
- /**
10
- * Get an existing Service 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 Service(name, undefined, { ...opts, id: id });
19
- }
20
- /**
21
- * Returns true if the given object is an instance of Service. 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'] === Service.__pulumiType;
29
- }
30
- /**
31
- * Create a Service 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
- if (args?.type === undefined && !opts.urn) {
45
- throw new Error("Missing required property 'type'");
46
- }
47
- resourceInputs["cpu"] = args?.cpu;
48
- resourceInputs["healthcheckPath"] = args?.healthcheckPath;
49
- resourceInputs["memoryMb"] = args?.memoryMb;
50
- resourceInputs["name"] = args?.name;
51
- resourceInputs["port"] = args?.port;
52
- resourceInputs["projectId"] = args?.projectId;
53
- resourceInputs["type"] = args?.type;
54
- resourceInputs["serviceId"] = undefined /*out*/;
55
- resourceInputs["serviceUrl"] = undefined /*out*/;
56
- resourceInputs["status"] = undefined /*out*/;
57
- }
58
- else {
59
- resourceInputs["cpu"] = undefined /*out*/;
60
- resourceInputs["healthcheckPath"] = undefined /*out*/;
61
- resourceInputs["memoryMb"] = undefined /*out*/;
62
- resourceInputs["name"] = undefined /*out*/;
63
- resourceInputs["port"] = undefined /*out*/;
64
- resourceInputs["projectId"] = undefined /*out*/;
65
- resourceInputs["serviceId"] = undefined /*out*/;
66
- resourceInputs["serviceUrl"] = undefined /*out*/;
67
- resourceInputs["status"] = undefined /*out*/;
68
- resourceInputs["type"] = undefined /*out*/;
69
- }
70
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
71
- const replaceOnChanges = { replaceOnChanges: ["name", "projectId", "type"] };
72
- opts = pulumi.mergeOptions(opts, replaceOnChanges);
73
- super(Service.__pulumiType, name, resourceInputs, opts);
74
- }
75
- }
76
- exports.Service = Service;
77
- /** @internal */
78
- Service.__pulumiType = 'agentcloud:index:Service';
79
- //# sourceMappingURL=service.js.map