@rpothin/powerplatform 0.1.41 → 0.1.42

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 (96) hide show
  1. package/.gitattributes +1 -0
  2. package/{bin/billingPolicy.js → billingPolicy.ts} +64 -39
  3. package/{bin/types/input.js → config/index.ts} +3 -3
  4. package/config/vars.ts +42 -0
  5. package/{bin/dlpPolicy.js → dlpPolicy.ts} +52 -39
  6. package/environment.ts +245 -0
  7. package/{bin/environmentBackup.js → environmentBackup.ts} +46 -39
  8. package/{bin/environmentGroup.js → environmentGroup.ts} +54 -39
  9. package/{bin/environmentSettings.js → environmentSettings.ts} +70 -39
  10. package/getApps.ts +47 -0
  11. package/getConnectors.ts +47 -0
  12. package/{bin/getEnvironments.d.ts → getEnvironments.ts} +25 -3
  13. package/getFlows.ts +47 -0
  14. package/index.ts +124 -0
  15. package/{bin/isvContract.js → isvContract.ts} +54 -39
  16. package/{bin/managedEnvironment.js → managedEnvironment.ts} +34 -39
  17. package/package.json +1 -6
  18. package/provider.ts +44 -0
  19. package/{bin/roleAssignment.js → roleAssignment.ts} +58 -39
  20. package/tsconfig.json +44 -0
  21. package/types/index.ts +13 -0
  22. package/{bin/types/input.d.ts → types/input.ts} +10 -4
  23. package/{bin/types/output.d.ts → types/output.ts} +16 -4
  24. package/{bin/utilities.js → utilities.ts} +28 -46
  25. package/bin/billingPolicy.d.ts +0 -76
  26. package/bin/billingPolicy.d.ts.map +0 -1
  27. package/bin/billingPolicy.js.map +0 -1
  28. package/bin/config/index.d.ts +0 -2
  29. package/bin/config/index.d.ts.map +0 -1
  30. package/bin/config/index.js +0 -21
  31. package/bin/config/index.js.map +0 -1
  32. package/bin/config/vars.d.ts +0 -13
  33. package/bin/config/vars.d.ts.map +0 -1
  34. package/bin/config/vars.js +0 -48
  35. package/bin/config/vars.js.map +0 -1
  36. package/bin/dlpPolicy.d.ts +0 -64
  37. package/bin/dlpPolicy.d.ts.map +0 -1
  38. package/bin/dlpPolicy.js.map +0 -1
  39. package/bin/environment.d.ts +0 -172
  40. package/bin/environment.d.ts.map +0 -1
  41. package/bin/environment.js +0 -124
  42. package/bin/environment.js.map +0 -1
  43. package/bin/environmentBackup.d.ts +0 -58
  44. package/bin/environmentBackup.d.ts.map +0 -1
  45. package/bin/environmentBackup.js.map +0 -1
  46. package/bin/environmentGroup.d.ts +0 -66
  47. package/bin/environmentGroup.d.ts.map +0 -1
  48. package/bin/environmentGroup.js.map +0 -1
  49. package/bin/environmentSettings.d.ts +0 -82
  50. package/bin/environmentSettings.d.ts.map +0 -1
  51. package/bin/environmentSettings.js.map +0 -1
  52. package/bin/getApps.d.ts +0 -29
  53. package/bin/getApps.d.ts.map +0 -1
  54. package/bin/getApps.js +0 -51
  55. package/bin/getApps.js.map +0 -1
  56. package/bin/getConnectors.d.ts +0 -29
  57. package/bin/getConnectors.d.ts.map +0 -1
  58. package/bin/getConnectors.js +0 -51
  59. package/bin/getConnectors.js.map +0 -1
  60. package/bin/getEnvironments.d.ts.map +0 -1
  61. package/bin/getEnvironments.js +0 -55
  62. package/bin/getEnvironments.js.map +0 -1
  63. package/bin/getFlows.d.ts +0 -29
  64. package/bin/getFlows.d.ts.map +0 -1
  65. package/bin/getFlows.js +0 -51
  66. package/bin/getFlows.js.map +0 -1
  67. package/bin/index.d.ts +0 -46
  68. package/bin/index.d.ts.map +0 -1
  69. package/bin/index.js +0 -105
  70. package/bin/index.js.map +0 -1
  71. package/bin/isvContract.d.ts +0 -66
  72. package/bin/isvContract.d.ts.map +0 -1
  73. package/bin/isvContract.js.map +0 -1
  74. package/bin/managedEnvironment.d.ts +0 -46
  75. package/bin/managedEnvironment.d.ts.map +0 -1
  76. package/bin/managedEnvironment.js.map +0 -1
  77. package/bin/package.json +0 -31
  78. package/bin/provider.d.ts +0 -22
  79. package/bin/provider.d.ts.map +0 -1
  80. package/bin/provider.js +0 -61
  81. package/bin/provider.js.map +0 -1
  82. package/bin/roleAssignment.d.ts +0 -70
  83. package/bin/roleAssignment.d.ts.map +0 -1
  84. package/bin/roleAssignment.js.map +0 -1
  85. package/bin/types/index.d.ts +0 -4
  86. package/bin/types/index.d.ts.map +0 -1
  87. package/bin/types/index.js +0 -34
  88. package/bin/types/index.js.map +0 -1
  89. package/bin/types/input.d.ts.map +0 -1
  90. package/bin/types/input.js.map +0 -1
  91. package/bin/types/output.d.ts.map +0 -1
  92. package/bin/types/output.js +0 -5
  93. package/bin/types/output.js.map +0 -1
  94. package/bin/utilities.d.ts +0 -5
  95. package/bin/utilities.d.ts.map +0 -1
  96. package/bin/utilities.js.map +0 -1
@@ -1,29 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- import * as outputs from "./types/output";
3
- /**
4
- * Lists connectors available in a Power Platform environment.
5
- */
6
- export declare function getConnectors(args: GetConnectorsArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectorsResult>;
7
- export interface GetConnectorsArgs {
8
- /**
9
- * The ID of the environment to list connectors for.
10
- */
11
- environmentId: string;
12
- }
13
- export interface GetConnectorsResult {
14
- /**
15
- * The list of connectors.
16
- */
17
- readonly connectors: outputs.ConnectorSummary[];
18
- }
19
- /**
20
- * Lists connectors available in a Power Platform environment.
21
- */
22
- export declare function getConnectorsOutput(args: GetConnectorsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectorsResult>;
23
- export interface GetConnectorsOutputArgs {
24
- /**
25
- * The ID of the environment to list connectors for.
26
- */
27
- environmentId: pulumi.Input<string>;
28
- }
29
- //# sourceMappingURL=getConnectors.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getConnectors.d.ts","sourceRoot":"","sources":["../getConnectors.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;GAEG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,iBAAiB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,mBAAmB,CAAC,CAKhH;AAED,MAAM,WAAW,iBAAiB;IAC9B;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,QAAQ,CAAC,UAAU,EAAE,OAAO,CAAC,gBAAgB,EAAE,CAAC;CACnD;AACD;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,uBAAuB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAKxI;AAED,MAAM,WAAW,uBAAuB;IACpC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC"}
@@ -1,51 +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
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
- if (k2 === undefined) k2 = k;
6
- var desc = Object.getOwnPropertyDescriptor(m, k);
7
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
- desc = { enumerable: true, get: function() { return m[k]; } };
9
- }
10
- Object.defineProperty(o, k2, desc);
11
- }) : (function(o, m, k, k2) {
12
- if (k2 === undefined) k2 = k;
13
- o[k2] = m[k];
14
- }));
15
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
16
- Object.defineProperty(o, "default", { enumerable: true, value: v });
17
- }) : function(o, v) {
18
- o["default"] = v;
19
- });
20
- var __importStar = (this && this.__importStar) || function (mod) {
21
- if (mod && mod.__esModule) return mod;
22
- var result = {};
23
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
24
- __setModuleDefault(result, mod);
25
- return result;
26
- };
27
- Object.defineProperty(exports, "__esModule", { value: true });
28
- exports.getConnectorsOutput = exports.getConnectors = void 0;
29
- const pulumi = __importStar(require("@pulumi/pulumi"));
30
- const utilities = __importStar(require("./utilities"));
31
- /**
32
- * Lists connectors available in a Power Platform environment.
33
- */
34
- function getConnectors(args, opts) {
35
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
36
- return pulumi.runtime.invoke("powerplatform:index:getConnectors", {
37
- "environmentId": args.environmentId,
38
- }, opts);
39
- }
40
- exports.getConnectors = getConnectors;
41
- /**
42
- * Lists connectors available in a Power Platform environment.
43
- */
44
- function getConnectorsOutput(args, opts) {
45
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
46
- return pulumi.runtime.invokeOutput("powerplatform:index:getConnectors", {
47
- "environmentId": args.environmentId,
48
- }, opts);
49
- }
50
- exports.getConnectorsOutput = getConnectorsOutput;
51
- //# sourceMappingURL=getConnectors.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getConnectors.js","sourceRoot":"","sources":["../getConnectors.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;GAEG;AACH,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,mCAAmC,EAAE;QAC9D,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC;AAeD;;GAEG;AACH,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,mCAAmC,EAAE;QACpE,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"getEnvironments.d.ts","sourceRoot":"","sources":["../getEnvironments.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;GAEG;AACH,wBAAgB,eAAe,CAAC,IAAI,CAAC,EAAE,mBAAmB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAOvH;AAED,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,OAAO,CAAC,kBAAkB,EAAE,CAAC;CACvD;AACD;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,CAAC,EAAE,yBAAyB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAO/I;AAED,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC9B;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CAC9B"}
@@ -1,55 +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
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
- if (k2 === undefined) k2 = k;
6
- var desc = Object.getOwnPropertyDescriptor(m, k);
7
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
- desc = { enumerable: true, get: function() { return m[k]; } };
9
- }
10
- Object.defineProperty(o, k2, desc);
11
- }) : (function(o, m, k, k2) {
12
- if (k2 === undefined) k2 = k;
13
- o[k2] = m[k];
14
- }));
15
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
16
- Object.defineProperty(o, "default", { enumerable: true, value: v });
17
- }) : function(o, v) {
18
- o["default"] = v;
19
- });
20
- var __importStar = (this && this.__importStar) || function (mod) {
21
- if (mod && mod.__esModule) return mod;
22
- var result = {};
23
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
24
- __setModuleDefault(result, mod);
25
- return result;
26
- };
27
- Object.defineProperty(exports, "__esModule", { value: true });
28
- exports.getEnvironmentsOutput = exports.getEnvironments = void 0;
29
- const pulumi = __importStar(require("@pulumi/pulumi"));
30
- const utilities = __importStar(require("./utilities"));
31
- /**
32
- * Retrieves a list of Power Platform environments available for the authenticated user.
33
- */
34
- function getEnvironments(args, opts) {
35
- args = args || {};
36
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
37
- return pulumi.runtime.invoke("powerplatform:index:getEnvironments", {
38
- "filter": args.filter,
39
- "top": args.top,
40
- }, opts);
41
- }
42
- exports.getEnvironments = getEnvironments;
43
- /**
44
- * Retrieves a list of Power Platform environments available for the authenticated user.
45
- */
46
- function getEnvironmentsOutput(args, opts) {
47
- args = args || {};
48
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
49
- return pulumi.runtime.invokeOutput("powerplatform:index:getEnvironments", {
50
- "filter": args.filter,
51
- "top": args.top,
52
- }, opts);
53
- }
54
- exports.getEnvironmentsOutput = getEnvironmentsOutput;
55
- //# sourceMappingURL=getEnvironments.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getEnvironments.js","sourceRoot":"","sources":["../getEnvironments.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;GAEG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,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,qCAAqC,EAAE;QAChE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0CAOC;AAmBD;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAAiC;IACrG,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,qCAAqC,EAAE;QACtE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sDAOC"}
package/bin/getFlows.d.ts DELETED
@@ -1,29 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- import * as outputs from "./types/output";
3
- /**
4
- * Lists Cloud Flows in a Power Platform environment.
5
- */
6
- export declare function getFlows(args: GetFlowsArgs, opts?: pulumi.InvokeOptions): Promise<GetFlowsResult>;
7
- export interface GetFlowsArgs {
8
- /**
9
- * The ID of the environment to list flows for.
10
- */
11
- environmentId: string;
12
- }
13
- export interface GetFlowsResult {
14
- /**
15
- * The list of Cloud Flows.
16
- */
17
- readonly flows: outputs.FlowSummary[];
18
- }
19
- /**
20
- * Lists Cloud Flows in a Power Platform environment.
21
- */
22
- export declare function getFlowsOutput(args: GetFlowsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFlowsResult>;
23
- export interface GetFlowsOutputArgs {
24
- /**
25
- * The ID of the environment to list flows for.
26
- */
27
- environmentId: pulumi.Input<string>;
28
- }
29
- //# sourceMappingURL=getFlows.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getFlows.d.ts","sourceRoot":"","sources":["../getFlows.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;GAEG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,YAAY,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,cAAc,CAAC,CAKjG;AAED,MAAM,WAAW,YAAY;IACzB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,cAAc;IAC3B;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,OAAO,CAAC,WAAW,EAAE,CAAC;CACzC;AACD;;GAEG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,kBAAkB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,CAKzH;AAED,MAAM,WAAW,kBAAkB;IAC/B;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC"}
package/bin/getFlows.js DELETED
@@ -1,51 +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
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
- if (k2 === undefined) k2 = k;
6
- var desc = Object.getOwnPropertyDescriptor(m, k);
7
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
- desc = { enumerable: true, get: function() { return m[k]; } };
9
- }
10
- Object.defineProperty(o, k2, desc);
11
- }) : (function(o, m, k, k2) {
12
- if (k2 === undefined) k2 = k;
13
- o[k2] = m[k];
14
- }));
15
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
16
- Object.defineProperty(o, "default", { enumerable: true, value: v });
17
- }) : function(o, v) {
18
- o["default"] = v;
19
- });
20
- var __importStar = (this && this.__importStar) || function (mod) {
21
- if (mod && mod.__esModule) return mod;
22
- var result = {};
23
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
24
- __setModuleDefault(result, mod);
25
- return result;
26
- };
27
- Object.defineProperty(exports, "__esModule", { value: true });
28
- exports.getFlowsOutput = exports.getFlows = void 0;
29
- const pulumi = __importStar(require("@pulumi/pulumi"));
30
- const utilities = __importStar(require("./utilities"));
31
- /**
32
- * Lists Cloud Flows in a Power Platform environment.
33
- */
34
- function getFlows(args, opts) {
35
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
36
- return pulumi.runtime.invoke("powerplatform:index:getFlows", {
37
- "environmentId": args.environmentId,
38
- }, opts);
39
- }
40
- exports.getFlows = getFlows;
41
- /**
42
- * Lists Cloud Flows in a Power Platform environment.
43
- */
44
- function getFlowsOutput(args, opts) {
45
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
46
- return pulumi.runtime.invokeOutput("powerplatform:index:getFlows", {
47
- "environmentId": args.environmentId,
48
- }, opts);
49
- }
50
- exports.getFlowsOutput = getFlowsOutput;
51
- //# sourceMappingURL=getFlows.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getFlows.js","sourceRoot":"","sources":["../getFlows.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;GAEG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8BAA8B,EAAE;QACzD,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4BAKC;AAeD;;GAEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAAiC;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8BAA8B,EAAE;QAC/D,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC"}
package/bin/index.d.ts DELETED
@@ -1,46 +0,0 @@
1
- export { BillingPolicyArgs } from "./billingPolicy";
2
- export type BillingPolicy = import("./billingPolicy").BillingPolicy;
3
- export declare const BillingPolicy: typeof import("./billingPolicy").BillingPolicy;
4
- export { DlpPolicyArgs } from "./dlpPolicy";
5
- export type DlpPolicy = import("./dlpPolicy").DlpPolicy;
6
- export declare const DlpPolicy: typeof import("./dlpPolicy").DlpPolicy;
7
- export { EnvironmentArgs } from "./environment";
8
- export type Environment = import("./environment").Environment;
9
- export declare const Environment: typeof import("./environment").Environment;
10
- export { EnvironmentBackupArgs } from "./environmentBackup";
11
- export type EnvironmentBackup = import("./environmentBackup").EnvironmentBackup;
12
- export declare const EnvironmentBackup: typeof import("./environmentBackup").EnvironmentBackup;
13
- export { EnvironmentGroupArgs } from "./environmentGroup";
14
- export type EnvironmentGroup = import("./environmentGroup").EnvironmentGroup;
15
- export declare const EnvironmentGroup: typeof import("./environmentGroup").EnvironmentGroup;
16
- export { EnvironmentSettingsArgs } from "./environmentSettings";
17
- export type EnvironmentSettings = import("./environmentSettings").EnvironmentSettings;
18
- export declare const EnvironmentSettings: typeof import("./environmentSettings").EnvironmentSettings;
19
- export { GetAppsArgs, GetAppsResult, GetAppsOutputArgs } from "./getApps";
20
- export declare const getApps: typeof import("./getApps").getApps;
21
- export declare const getAppsOutput: typeof import("./getApps").getAppsOutput;
22
- export { GetConnectorsArgs, GetConnectorsResult, GetConnectorsOutputArgs } from "./getConnectors";
23
- export declare const getConnectors: typeof import("./getConnectors").getConnectors;
24
- export declare const getConnectorsOutput: typeof import("./getConnectors").getConnectorsOutput;
25
- export { GetEnvironmentsArgs, GetEnvironmentsResult, GetEnvironmentsOutputArgs } from "./getEnvironments";
26
- export declare const getEnvironments: typeof import("./getEnvironments").getEnvironments;
27
- export declare const getEnvironmentsOutput: typeof import("./getEnvironments").getEnvironmentsOutput;
28
- export { GetFlowsArgs, GetFlowsResult, GetFlowsOutputArgs } from "./getFlows";
29
- export declare const getFlows: typeof import("./getFlows").getFlows;
30
- export declare const getFlowsOutput: typeof import("./getFlows").getFlowsOutput;
31
- export { IsvContractArgs } from "./isvContract";
32
- export type IsvContract = import("./isvContract").IsvContract;
33
- export declare const IsvContract: typeof import("./isvContract").IsvContract;
34
- export { ManagedEnvironmentArgs } from "./managedEnvironment";
35
- export type ManagedEnvironment = import("./managedEnvironment").ManagedEnvironment;
36
- export declare const ManagedEnvironment: typeof import("./managedEnvironment").ManagedEnvironment;
37
- export { ProviderArgs } from "./provider";
38
- export type Provider = import("./provider").Provider;
39
- export declare const Provider: typeof import("./provider").Provider;
40
- export { RoleAssignmentArgs } from "./roleAssignment";
41
- export type RoleAssignment = import("./roleAssignment").RoleAssignment;
42
- export declare const RoleAssignment: typeof import("./roleAssignment").RoleAssignment;
43
- import * as config from "./config";
44
- import * as types from "./types";
45
- export { config, types, };
46
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
package/bin/index.js DELETED
@@ -1,105 +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
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
5
- if (k2 === undefined) k2 = k;
6
- var desc = Object.getOwnPropertyDescriptor(m, k);
7
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
8
- desc = { enumerable: true, get: function() { return m[k]; } };
9
- }
10
- Object.defineProperty(o, k2, desc);
11
- }) : (function(o, m, k, k2) {
12
- if (k2 === undefined) k2 = k;
13
- o[k2] = m[k];
14
- }));
15
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
16
- Object.defineProperty(o, "default", { enumerable: true, value: v });
17
- }) : function(o, v) {
18
- o["default"] = v;
19
- });
20
- var __importStar = (this && this.__importStar) || function (mod) {
21
- if (mod && mod.__esModule) return mod;
22
- var result = {};
23
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
24
- __setModuleDefault(result, mod);
25
- return result;
26
- };
27
- Object.defineProperty(exports, "__esModule", { value: true });
28
- exports.types = exports.config = exports.RoleAssignment = exports.Provider = exports.ManagedEnvironment = exports.IsvContract = exports.getFlowsOutput = exports.getFlows = exports.getEnvironmentsOutput = exports.getEnvironments = exports.getConnectorsOutput = exports.getConnectors = exports.getAppsOutput = exports.getApps = exports.EnvironmentSettings = exports.EnvironmentGroup = exports.EnvironmentBackup = exports.Environment = exports.DlpPolicy = exports.BillingPolicy = void 0;
29
- const pulumi = __importStar(require("@pulumi/pulumi"));
30
- const utilities = __importStar(require("./utilities"));
31
- exports.BillingPolicy = null;
32
- utilities.lazyLoad(exports, ["BillingPolicy"], () => require("./billingPolicy"));
33
- exports.DlpPolicy = null;
34
- utilities.lazyLoad(exports, ["DlpPolicy"], () => require("./dlpPolicy"));
35
- exports.Environment = null;
36
- utilities.lazyLoad(exports, ["Environment"], () => require("./environment"));
37
- exports.EnvironmentBackup = null;
38
- utilities.lazyLoad(exports, ["EnvironmentBackup"], () => require("./environmentBackup"));
39
- exports.EnvironmentGroup = null;
40
- utilities.lazyLoad(exports, ["EnvironmentGroup"], () => require("./environmentGroup"));
41
- exports.EnvironmentSettings = null;
42
- utilities.lazyLoad(exports, ["EnvironmentSettings"], () => require("./environmentSettings"));
43
- exports.getApps = null;
44
- exports.getAppsOutput = null;
45
- utilities.lazyLoad(exports, ["getApps", "getAppsOutput"], () => require("./getApps"));
46
- exports.getConnectors = null;
47
- exports.getConnectorsOutput = null;
48
- utilities.lazyLoad(exports, ["getConnectors", "getConnectorsOutput"], () => require("./getConnectors"));
49
- exports.getEnvironments = null;
50
- exports.getEnvironmentsOutput = null;
51
- utilities.lazyLoad(exports, ["getEnvironments", "getEnvironmentsOutput"], () => require("./getEnvironments"));
52
- exports.getFlows = null;
53
- exports.getFlowsOutput = null;
54
- utilities.lazyLoad(exports, ["getFlows", "getFlowsOutput"], () => require("./getFlows"));
55
- exports.IsvContract = null;
56
- utilities.lazyLoad(exports, ["IsvContract"], () => require("./isvContract"));
57
- exports.ManagedEnvironment = null;
58
- utilities.lazyLoad(exports, ["ManagedEnvironment"], () => require("./managedEnvironment"));
59
- exports.Provider = null;
60
- utilities.lazyLoad(exports, ["Provider"], () => require("./provider"));
61
- exports.RoleAssignment = null;
62
- utilities.lazyLoad(exports, ["RoleAssignment"], () => require("./roleAssignment"));
63
- // Export sub-modules:
64
- const config = __importStar(require("./config"));
65
- exports.config = config;
66
- const types = __importStar(require("./types"));
67
- exports.types = types;
68
- const _module = {
69
- version: utilities.getVersion(),
70
- construct: (name, type, urn) => {
71
- switch (type) {
72
- case "powerplatform:index:BillingPolicy":
73
- return new exports.BillingPolicy(name, undefined, { urn });
74
- case "powerplatform:index:DlpPolicy":
75
- return new exports.DlpPolicy(name, undefined, { urn });
76
- case "powerplatform:index:Environment":
77
- return new exports.Environment(name, undefined, { urn });
78
- case "powerplatform:index:EnvironmentBackup":
79
- return new exports.EnvironmentBackup(name, undefined, { urn });
80
- case "powerplatform:index:EnvironmentGroup":
81
- return new exports.EnvironmentGroup(name, undefined, { urn });
82
- case "powerplatform:index:EnvironmentSettings":
83
- return new exports.EnvironmentSettings(name, undefined, { urn });
84
- case "powerplatform:index:IsvContract":
85
- return new exports.IsvContract(name, undefined, { urn });
86
- case "powerplatform:index:ManagedEnvironment":
87
- return new exports.ManagedEnvironment(name, undefined, { urn });
88
- case "powerplatform:index:RoleAssignment":
89
- return new exports.RoleAssignment(name, undefined, { urn });
90
- default:
91
- throw new Error(`unknown resource type ${type}`);
92
- }
93
- },
94
- };
95
- pulumi.runtime.registerResourceModule("powerplatform", "index", _module);
96
- pulumi.runtime.registerResourcePackage("powerplatform", {
97
- version: utilities.getVersion(),
98
- constructProvider: (name, type, urn) => {
99
- if (type !== "pulumi:providers:powerplatform") {
100
- throw new Error(`unknown provider type ${type}`);
101
- }
102
- return new exports.Provider(name, undefined, { urn });
103
- },
104
- });
105
- //# sourceMappingURL=index.js.map
package/bin/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
@@ -1,66 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- /**
3
- * Manages an ISV (Independent Software Vendor) contract for Power Platform licensing.
4
- */
5
- export declare class IsvContract extends pulumi.CustomResource {
6
- /**
7
- * Get an existing IsvContract resource's state with the given name, ID, and optional extra
8
- * properties used to qualify the lookup.
9
- *
10
- * @param name The _unique_ name of the resulting resource.
11
- * @param id The _unique_ provider ID of the resource to lookup.
12
- * @param opts Optional settings to control the behavior of the CustomResource.
13
- */
14
- static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): IsvContract;
15
- /**
16
- * Returns true if the given object is an instance of IsvContract. This is designed to work even
17
- * when multiple copies of the Pulumi SDK have been loaded into the same process.
18
- */
19
- static isInstance(obj: any): obj is IsvContract;
20
- /**
21
- * The timestamp when the ISV contract was created.
22
- */
23
- readonly createdOn: pulumi.Output<string | undefined>;
24
- /**
25
- * The geographic region of the ISV contract.
26
- */
27
- readonly geo: pulumi.Output<string>;
28
- /**
29
- * The timestamp when the ISV contract was last modified.
30
- */
31
- readonly lastModifiedOn: pulumi.Output<string | undefined>;
32
- /**
33
- * The name of the ISV contract.
34
- */
35
- readonly name: pulumi.Output<string>;
36
- /**
37
- * The status of the ISV contract.
38
- */
39
- readonly status: pulumi.Output<string | undefined>;
40
- /**
41
- * Create a IsvContract resource with the given unique name, arguments, and options.
42
- *
43
- * @param name The _unique_ name of the resource.
44
- * @param args The arguments to use to populate this resource's properties.
45
- * @param opts A bag of options that control this resource's behavior.
46
- */
47
- constructor(name: string, args: IsvContractArgs, opts?: pulumi.CustomResourceOptions);
48
- }
49
- /**
50
- * The set of arguments for constructing a IsvContract resource.
51
- */
52
- export interface IsvContractArgs {
53
- /**
54
- * The geographic region for the ISV contract (e.g., unitedstates, europe). Immutable after creation.
55
- */
56
- geo: pulumi.Input<string>;
57
- /**
58
- * The name of the ISV contract.
59
- */
60
- name: pulumi.Input<string>;
61
- /**
62
- * The status of the ISV contract: Enabled or Disabled.
63
- */
64
- status?: pulumi.Input<string>;
65
- }
66
- //# sourceMappingURL=isvContract.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"isvContract.d.ts","sourceRoot":"","sources":["../isvContract.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;GAEG;AACH,qBAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;OAOG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,WAAW;IAO9G;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,WAAW;IAOtD;;OAEG;IACH,SAAgC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7E;;OAEG;IACH,SAAwB,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACnD;;OAEG;IACH,SAAgC,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAClF;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACpD;;OAEG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAElE;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,eAAe,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAyBvF;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC5B;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC1B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC3B;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACjC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"isvContract.js","sourceRoot":"","sources":["../isvContract.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;GAEG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,WAAW,CAAC,IAAI,EAAE,SAAgB,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACxE,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,iCAAiC,CAAC;IAExE;;;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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAuBD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAqB,EAAE,IAAmC;QAChF,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,IAAI,IAAI,EAAE,GAAG,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtC,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;aACtD;YACD,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,EAAE,GAAG,CAAC;YAClC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACxD;aAAM;YACH,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACrD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,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,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AA/EL,kCAgFC"}
@@ -1,46 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- /**
3
- * Enables managed environment governance on a Power Platform environment. Managed environments provide enhanced admin controls. Deleting this resource disables the managed environment setting.
4
- */
5
- export declare class ManagedEnvironment extends pulumi.CustomResource {
6
- /**
7
- * Get an existing ManagedEnvironment resource's state with the given name, ID, and optional extra
8
- * properties used to qualify the lookup.
9
- *
10
- * @param name The _unique_ name of the resulting resource.
11
- * @param id The _unique_ provider ID of the resource to lookup.
12
- * @param opts Optional settings to control the behavior of the CustomResource.
13
- */
14
- static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ManagedEnvironment;
15
- /**
16
- * Returns true if the given object is an instance of ManagedEnvironment. This is designed to work even
17
- * when multiple copies of the Pulumi SDK have been loaded into the same process.
18
- */
19
- static isInstance(obj: any): obj is ManagedEnvironment;
20
- /**
21
- * Whether the managed environment is enabled.
22
- */
23
- readonly enabled: pulumi.Output<boolean>;
24
- /**
25
- * The ID of the managed environment.
26
- */
27
- readonly environmentId: pulumi.Output<string>;
28
- /**
29
- * Create a ManagedEnvironment resource with the given unique name, arguments, and options.
30
- *
31
- * @param name The _unique_ name of the resource.
32
- * @param args The arguments to use to populate this resource's properties.
33
- * @param opts A bag of options that control this resource's behavior.
34
- */
35
- constructor(name: string, args: ManagedEnvironmentArgs, opts?: pulumi.CustomResourceOptions);
36
- }
37
- /**
38
- * The set of arguments for constructing a ManagedEnvironment resource.
39
- */
40
- export interface ManagedEnvironmentArgs {
41
- /**
42
- * The ID of the Power Platform environment to manage.
43
- */
44
- environmentId: pulumi.Input<string>;
45
- }
46
- //# sourceMappingURL=managedEnvironment.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"managedEnvironment.d.ts","sourceRoot":"","sources":["../managedEnvironment.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;GAEG;AACH,qBAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IACzD;;;;;;;OAOG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,kBAAkB;IAOrH;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,kBAAkB;IAO7D;;OAEG;IACH,SAAgC,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAChE;;OAEG;IACH,SAAwB,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAE7D;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,sBAAsB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAgB9F;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACnC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"managedEnvironment.js","sourceRoot":"","sources":["../managedEnvironment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;GAEG;AACH,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;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,wCAAwC,CAAC;IAE/E;;;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;IAWD;;;;;;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,aAAa,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAChD,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;YACD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;aAAM;YACH,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,eAAe,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACvD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACvE,CAAC;;AA1DL,gDA2DC"}
package/bin/package.json DELETED
@@ -1,31 +0,0 @@
1
- {
2
- "name": "@rpothin/powerplatform",
3
- "version": "0.1.41",
4
- "keywords": [
5
- "category/cloud",
6
- "kind/native"
7
- ],
8
- "homepage": "https://github.com/rpothin/pulumi-powerplatform",
9
- "repository": "https://github.com/rpothin/pulumi-powerplatform",
10
- "license": "MIT",
11
- "main": "bin/index.js",
12
- "types": "bin/index.d.ts",
13
- "files": [
14
- "bin"
15
- ],
16
- "scripts": {
17
- "build": "tsc"
18
- },
19
- "dependencies": {
20
- "@pulumi/pulumi": "^3.142.0"
21
- },
22
- "devDependencies": {
23
- "@types/node": "^20",
24
- "typescript": "^4.7.0"
25
- },
26
- "pulumi": {
27
- "resource": true,
28
- "name": "powerplatform",
29
- "server": "github://api.github.com/rpothin"
30
- }
31
- }
package/bin/provider.d.ts DELETED
@@ -1,22 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- export declare class Provider extends pulumi.ProviderResource {
3
- /**
4
- * Returns true if the given object is an instance of Provider. This is designed to work even
5
- * when multiple copies of the Pulumi SDK have been loaded into the same process.
6
- */
7
- static isInstance(obj: any): obj is Provider;
8
- /**
9
- * Create a Provider resource with the given unique name, arguments, and options.
10
- *
11
- * @param name The _unique_ name of the resource.
12
- * @param args The arguments to use to populate this resource's properties.
13
- * @param opts A bag of options that control this resource's behavior.
14
- */
15
- constructor(name: string, args?: ProviderArgs, opts?: pulumi.ResourceOptions);
16
- }
17
- /**
18
- * The set of arguments for constructing a Provider resource.
19
- */
20
- export interface ProviderArgs {
21
- }
22
- //# sourceMappingURL=provider.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../provider.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC,qBAAa,QAAS,SAAQ,MAAM,CAAC,gBAAgB;IAIjD;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,QAAQ;IAQnD;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,YAAY,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,eAAe;CAQ/E;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;CAC5B"}