@rpothin/powerplatform 0.1.33 → 0.1.35
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/.gitattributes +1 -0
- package/{bin/billingPolicy.js → billingPolicy.ts} +64 -39
- package/{bin/types/input.js → config/index.ts} +3 -3
- package/config/vars.ts +42 -0
- package/{bin/dlpPolicy.js → dlpPolicy.ts} +52 -39
- package/environment.ts +245 -0
- package/{bin/environmentBackup.js → environmentBackup.ts} +46 -39
- package/{bin/environmentGroup.js → environmentGroup.ts} +54 -39
- package/{bin/environmentSettings.js → environmentSettings.ts} +70 -39
- package/getApps.ts +47 -0
- package/getConnectors.ts +47 -0
- package/{bin/getEnvironments.d.ts → getEnvironments.ts} +25 -3
- package/getFlows.ts +47 -0
- package/index.ts +124 -0
- package/{bin/isvContract.js → isvContract.ts} +54 -39
- package/{bin/managedEnvironment.js → managedEnvironment.ts} +34 -39
- package/package.json +2 -7
- package/provider.ts +44 -0
- package/{bin/roleAssignment.js → roleAssignment.ts} +58 -39
- package/tsconfig.json +44 -0
- package/types/index.ts +13 -0
- package/types/input.ts +122 -0
- package/{bin/types/output.d.ts → types/output.ts} +94 -4
- package/{bin/utilities.js → utilities.ts} +28 -46
- package/bin/billingPolicy.d.ts +0 -76
- package/bin/billingPolicy.d.ts.map +0 -1
- package/bin/billingPolicy.js.map +0 -1
- package/bin/config/index.d.ts +0 -2
- package/bin/config/index.d.ts.map +0 -1
- package/bin/config/index.js +0 -21
- package/bin/config/index.js.map +0 -1
- package/bin/config/vars.d.ts +0 -13
- package/bin/config/vars.d.ts.map +0 -1
- package/bin/config/vars.js +0 -48
- package/bin/config/vars.js.map +0 -1
- package/bin/dlpPolicy.d.ts +0 -64
- package/bin/dlpPolicy.d.ts.map +0 -1
- package/bin/dlpPolicy.js.map +0 -1
- package/bin/environment.d.ts +0 -106
- package/bin/environment.d.ts.map +0 -1
- package/bin/environment.js +0 -108
- package/bin/environment.js.map +0 -1
- package/bin/environmentBackup.d.ts +0 -58
- package/bin/environmentBackup.d.ts.map +0 -1
- package/bin/environmentBackup.js.map +0 -1
- package/bin/environmentGroup.d.ts +0 -66
- package/bin/environmentGroup.d.ts.map +0 -1
- package/bin/environmentGroup.js.map +0 -1
- package/bin/environmentSettings.d.ts +0 -82
- package/bin/environmentSettings.d.ts.map +0 -1
- package/bin/environmentSettings.js.map +0 -1
- package/bin/getApps.d.ts +0 -29
- package/bin/getApps.d.ts.map +0 -1
- package/bin/getApps.js +0 -51
- package/bin/getApps.js.map +0 -1
- package/bin/getConnectors.d.ts +0 -29
- package/bin/getConnectors.d.ts.map +0 -1
- package/bin/getConnectors.js +0 -51
- package/bin/getConnectors.js.map +0 -1
- package/bin/getEnvironments.d.ts.map +0 -1
- package/bin/getEnvironments.js +0 -55
- package/bin/getEnvironments.js.map +0 -1
- package/bin/getFlows.d.ts +0 -29
- package/bin/getFlows.d.ts.map +0 -1
- package/bin/getFlows.js +0 -51
- package/bin/getFlows.js.map +0 -1
- package/bin/index.d.ts +0 -46
- package/bin/index.d.ts.map +0 -1
- package/bin/index.js +0 -105
- package/bin/index.js.map +0 -1
- package/bin/isvContract.d.ts +0 -66
- package/bin/isvContract.d.ts.map +0 -1
- package/bin/isvContract.js.map +0 -1
- package/bin/managedEnvironment.d.ts +0 -46
- package/bin/managedEnvironment.d.ts.map +0 -1
- package/bin/managedEnvironment.js.map +0 -1
- package/bin/package.json +0 -31
- package/bin/provider.d.ts +0 -22
- package/bin/provider.d.ts.map +0 -1
- package/bin/provider.js +0 -61
- package/bin/provider.js.map +0 -1
- package/bin/roleAssignment.d.ts +0 -70
- package/bin/roleAssignment.d.ts.map +0 -1
- package/bin/roleAssignment.js.map +0 -1
- package/bin/types/index.d.ts +0 -4
- package/bin/types/index.d.ts.map +0 -1
- package/bin/types/index.js +0 -34
- package/bin/types/index.js.map +0 -1
- package/bin/types/input.d.ts +0 -38
- package/bin/types/input.d.ts.map +0 -1
- package/bin/types/input.js.map +0 -1
- package/bin/types/output.d.ts.map +0 -1
- package/bin/types/output.js +0 -5
- package/bin/types/output.js.map +0 -1
- package/bin/utilities.d.ts +0 -5
- package/bin/utilities.d.ts.map +0 -1
- package/bin/utilities.js.map +0 -1
package/types/input.ts
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
2
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
3
|
+
|
|
4
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
5
|
+
import * as inputs from "../types/input";
|
|
6
|
+
import * as outputs from "../types/output";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Azure billing instrument (subscription) details for a billing policy.
|
|
10
|
+
*/
|
|
11
|
+
export interface BillingInstrumentArgs {
|
|
12
|
+
/**
|
|
13
|
+
* The billing instrument identifier.
|
|
14
|
+
*/
|
|
15
|
+
id?: pulumi.Input<string>;
|
|
16
|
+
/**
|
|
17
|
+
* The Azure resource group within the subscription.
|
|
18
|
+
*/
|
|
19
|
+
resourceGroup?: pulumi.Input<string>;
|
|
20
|
+
/**
|
|
21
|
+
* The Azure subscription ID.
|
|
22
|
+
*/
|
|
23
|
+
subscriptionId?: pulumi.Input<string>;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Configuration for the Dataverse database associated with a Power Platform environment.
|
|
28
|
+
*/
|
|
29
|
+
export interface DataverseArgs {
|
|
30
|
+
/**
|
|
31
|
+
* Whether the Dataverse instance is in administration mode.
|
|
32
|
+
*/
|
|
33
|
+
administrationModeEnabled?: pulumi.Input<boolean>;
|
|
34
|
+
/**
|
|
35
|
+
* Whether background operations are enabled during administration mode.
|
|
36
|
+
*/
|
|
37
|
+
backgroundOperationEnabled?: pulumi.Input<boolean>;
|
|
38
|
+
/**
|
|
39
|
+
* Currency code for the Dataverse database (e.g. USD). Immutable after creation.
|
|
40
|
+
*/
|
|
41
|
+
currencyCode?: pulumi.Input<string>;
|
|
42
|
+
/**
|
|
43
|
+
* Domain prefix for the Dataverse instance URL.
|
|
44
|
+
*/
|
|
45
|
+
domainName?: pulumi.Input<string>;
|
|
46
|
+
/**
|
|
47
|
+
* Base language LCID (e.g. 1033). Immutable after creation.
|
|
48
|
+
*/
|
|
49
|
+
languageCode?: pulumi.Input<number>;
|
|
50
|
+
/**
|
|
51
|
+
* Dataverse organization GUID. Computed.
|
|
52
|
+
*/
|
|
53
|
+
organizationId?: pulumi.Input<string>;
|
|
54
|
+
/**
|
|
55
|
+
* AAD security group GUID restricting environment access.
|
|
56
|
+
*/
|
|
57
|
+
securityGroupId?: pulumi.Input<string>;
|
|
58
|
+
/**
|
|
59
|
+
* JSON metadata for provisioning templates. Immutable after creation.
|
|
60
|
+
*/
|
|
61
|
+
templateMetadata?: pulumi.Input<string>;
|
|
62
|
+
/**
|
|
63
|
+
* Provisioning templates (e.g. D365_Sales). Immutable after creation.
|
|
64
|
+
*/
|
|
65
|
+
templates?: pulumi.Input<pulumi.Input<string>[]>;
|
|
66
|
+
/**
|
|
67
|
+
* Dataverse unique name. Computed.
|
|
68
|
+
*/
|
|
69
|
+
uniqueName?: pulumi.Input<string>;
|
|
70
|
+
/**
|
|
71
|
+
* URL of the Dataverse instance. Computed.
|
|
72
|
+
*/
|
|
73
|
+
url?: pulumi.Input<string>;
|
|
74
|
+
/**
|
|
75
|
+
* Dataverse version string. Computed.
|
|
76
|
+
*/
|
|
77
|
+
version?: pulumi.Input<string>;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* An enterprise policy associated with a Power Platform environment.
|
|
82
|
+
*/
|
|
83
|
+
export interface EnterprisePolicyArgs {
|
|
84
|
+
/**
|
|
85
|
+
* The resource ID of the policy.
|
|
86
|
+
*/
|
|
87
|
+
id?: pulumi.Input<string>;
|
|
88
|
+
/**
|
|
89
|
+
* Azure region of the policy.
|
|
90
|
+
*/
|
|
91
|
+
location?: pulumi.Input<string>;
|
|
92
|
+
/**
|
|
93
|
+
* Policy link status (e.g. Linked, Disabled).
|
|
94
|
+
*/
|
|
95
|
+
status?: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* System-assigned ID of the policy.
|
|
98
|
+
*/
|
|
99
|
+
systemId?: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Policy type (e.g. NetworkInjection, Encryption, Identity).
|
|
102
|
+
*/
|
|
103
|
+
type?: pulumi.Input<string>;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* A rule set for a DLP policy, defining data loss prevention rules.
|
|
108
|
+
*/
|
|
109
|
+
export interface RuleSetArgs {
|
|
110
|
+
/**
|
|
111
|
+
* The unique identifier of the rule set.
|
|
112
|
+
*/
|
|
113
|
+
id?: pulumi.Input<string>;
|
|
114
|
+
/**
|
|
115
|
+
* The inputs for the rule set, which may vary based on the rule.
|
|
116
|
+
*/
|
|
117
|
+
inputs?: pulumi.Input<{[key: string]: any}>;
|
|
118
|
+
/**
|
|
119
|
+
* The version of the rule set.
|
|
120
|
+
*/
|
|
121
|
+
version?: pulumi.Input<string>;
|
|
122
|
+
}
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
2
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
3
|
+
|
|
4
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
5
|
+
import * as inputs from "../types/input";
|
|
6
|
+
import * as outputs from "../types/output";
|
|
7
|
+
|
|
1
8
|
/**
|
|
2
9
|
* Summary information about a Power App.
|
|
3
10
|
*/
|
|
@@ -15,6 +22,7 @@ export interface AppSummary {
|
|
|
15
22
|
*/
|
|
16
23
|
name?: string;
|
|
17
24
|
}
|
|
25
|
+
|
|
18
26
|
/**
|
|
19
27
|
* Azure billing instrument (subscription) details for a billing policy.
|
|
20
28
|
*/
|
|
@@ -32,6 +40,7 @@ export interface BillingInstrument {
|
|
|
32
40
|
*/
|
|
33
41
|
subscriptionId?: string;
|
|
34
42
|
}
|
|
43
|
+
|
|
35
44
|
/**
|
|
36
45
|
* Summary information about a Power Platform connector.
|
|
37
46
|
*/
|
|
@@ -53,6 +62,87 @@ export interface ConnectorSummary {
|
|
|
53
62
|
*/
|
|
54
63
|
type?: string;
|
|
55
64
|
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Configuration for the Dataverse database associated with a Power Platform environment.
|
|
68
|
+
*/
|
|
69
|
+
export interface Dataverse {
|
|
70
|
+
/**
|
|
71
|
+
* Whether the Dataverse instance is in administration mode.
|
|
72
|
+
*/
|
|
73
|
+
administrationModeEnabled?: boolean;
|
|
74
|
+
/**
|
|
75
|
+
* Whether background operations are enabled during administration mode.
|
|
76
|
+
*/
|
|
77
|
+
backgroundOperationEnabled?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* Currency code for the Dataverse database (e.g. USD). Immutable after creation.
|
|
80
|
+
*/
|
|
81
|
+
currencyCode?: string;
|
|
82
|
+
/**
|
|
83
|
+
* Domain prefix for the Dataverse instance URL.
|
|
84
|
+
*/
|
|
85
|
+
domainName?: string;
|
|
86
|
+
/**
|
|
87
|
+
* Base language LCID (e.g. 1033). Immutable after creation.
|
|
88
|
+
*/
|
|
89
|
+
languageCode?: number;
|
|
90
|
+
/**
|
|
91
|
+
* Dataverse organization GUID. Computed.
|
|
92
|
+
*/
|
|
93
|
+
organizationId?: string;
|
|
94
|
+
/**
|
|
95
|
+
* AAD security group GUID restricting environment access.
|
|
96
|
+
*/
|
|
97
|
+
securityGroupId?: string;
|
|
98
|
+
/**
|
|
99
|
+
* JSON metadata for provisioning templates. Immutable after creation.
|
|
100
|
+
*/
|
|
101
|
+
templateMetadata?: string;
|
|
102
|
+
/**
|
|
103
|
+
* Provisioning templates (e.g. D365_Sales). Immutable after creation.
|
|
104
|
+
*/
|
|
105
|
+
templates?: string[];
|
|
106
|
+
/**
|
|
107
|
+
* Dataverse unique name. Computed.
|
|
108
|
+
*/
|
|
109
|
+
uniqueName?: string;
|
|
110
|
+
/**
|
|
111
|
+
* URL of the Dataverse instance. Computed.
|
|
112
|
+
*/
|
|
113
|
+
url?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Dataverse version string. Computed.
|
|
116
|
+
*/
|
|
117
|
+
version?: string;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* An enterprise policy associated with a Power Platform environment.
|
|
122
|
+
*/
|
|
123
|
+
export interface EnterprisePolicy {
|
|
124
|
+
/**
|
|
125
|
+
* The resource ID of the policy.
|
|
126
|
+
*/
|
|
127
|
+
id?: string;
|
|
128
|
+
/**
|
|
129
|
+
* Azure region of the policy.
|
|
130
|
+
*/
|
|
131
|
+
location?: string;
|
|
132
|
+
/**
|
|
133
|
+
* Policy link status (e.g. Linked, Disabled).
|
|
134
|
+
*/
|
|
135
|
+
status?: string;
|
|
136
|
+
/**
|
|
137
|
+
* System-assigned ID of the policy.
|
|
138
|
+
*/
|
|
139
|
+
systemId?: string;
|
|
140
|
+
/**
|
|
141
|
+
* Policy type (e.g. NetworkInjection, Encryption, Identity).
|
|
142
|
+
*/
|
|
143
|
+
type?: string;
|
|
144
|
+
}
|
|
145
|
+
|
|
56
146
|
/**
|
|
57
147
|
* Summary information about a Power Platform environment.
|
|
58
148
|
*/
|
|
@@ -110,6 +200,7 @@ export interface EnvironmentSummary {
|
|
|
110
200
|
*/
|
|
111
201
|
version?: string;
|
|
112
202
|
}
|
|
203
|
+
|
|
113
204
|
/**
|
|
114
205
|
* Summary information about a Cloud Flow.
|
|
115
206
|
*/
|
|
@@ -127,6 +218,7 @@ export interface FlowSummary {
|
|
|
127
218
|
*/
|
|
128
219
|
name?: string;
|
|
129
220
|
}
|
|
221
|
+
|
|
130
222
|
/**
|
|
131
223
|
* A rule set for a DLP policy, defining data loss prevention rules.
|
|
132
224
|
*/
|
|
@@ -138,12 +230,10 @@ export interface RuleSet {
|
|
|
138
230
|
/**
|
|
139
231
|
* The inputs for the rule set, which may vary based on the rule.
|
|
140
232
|
*/
|
|
141
|
-
inputs?: {
|
|
142
|
-
[key: string]: any;
|
|
143
|
-
};
|
|
233
|
+
inputs?: {[key: string]: any};
|
|
144
234
|
/**
|
|
145
235
|
* The version of the rule set.
|
|
146
236
|
*/
|
|
147
237
|
version?: string;
|
|
148
238
|
}
|
|
149
|
-
|
|
239
|
+
|
|
@@ -1,33 +1,11 @@
|
|
|
1
|
-
"use strict";
|
|
2
1
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
2
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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.callAsync = exports.lazyLoad = exports.resourceOptsDefaults = exports.getVersion = exports.getEnvNumber = exports.getEnvBoolean = exports.getEnv = void 0;
|
|
29
|
-
const runtime = __importStar(require("@pulumi/pulumi/runtime"));
|
|
30
|
-
function getEnv(...vars) {
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
import * as runtime from "@pulumi/pulumi/runtime";
|
|
6
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
7
|
+
|
|
8
|
+
export function getEnv(...vars: string[]): string | undefined {
|
|
31
9
|
for (const v of vars) {
|
|
32
10
|
const value = process.env[v];
|
|
33
11
|
if (value) {
|
|
@@ -36,8 +14,8 @@ function getEnv(...vars) {
|
|
|
36
14
|
}
|
|
37
15
|
return undefined;
|
|
38
16
|
}
|
|
39
|
-
|
|
40
|
-
function getEnvBoolean(...vars) {
|
|
17
|
+
|
|
18
|
+
export function getEnvBoolean(...vars: string[]): boolean | undefined {
|
|
41
19
|
const s = getEnv(...vars);
|
|
42
20
|
if (s !== undefined) {
|
|
43
21
|
// NOTE: these values are taken from https://golang.org/src/strconv/atob.go?s=351:391#L1, which is what
|
|
@@ -51,8 +29,8 @@ function getEnvBoolean(...vars) {
|
|
|
51
29
|
}
|
|
52
30
|
return undefined;
|
|
53
31
|
}
|
|
54
|
-
|
|
55
|
-
function getEnvNumber(...vars) {
|
|
32
|
+
|
|
33
|
+
export function getEnvNumber(...vars: string[]): number | undefined {
|
|
56
34
|
const s = getEnv(...vars);
|
|
57
35
|
if (s !== undefined) {
|
|
58
36
|
const f = parseFloat(s);
|
|
@@ -62,8 +40,8 @@ function getEnvNumber(...vars) {
|
|
|
62
40
|
}
|
|
63
41
|
return undefined;
|
|
64
42
|
}
|
|
65
|
-
|
|
66
|
-
function getVersion() {
|
|
43
|
+
|
|
44
|
+
export function getVersion(): string {
|
|
67
45
|
let version = require('./package.json').version;
|
|
68
46
|
// Node allows for the version to be prefixed by a "v", while semver doesn't.
|
|
69
47
|
// If there is a v, strip it off.
|
|
@@ -72,33 +50,39 @@ function getVersion() {
|
|
|
72
50
|
}
|
|
73
51
|
return version;
|
|
74
52
|
}
|
|
75
|
-
|
|
53
|
+
|
|
76
54
|
/** @internal */
|
|
77
|
-
function resourceOptsDefaults() {
|
|
55
|
+
export function resourceOptsDefaults(): any {
|
|
78
56
|
return { version: getVersion(), pluginDownloadURL: "github://api.github.com/rpothin" };
|
|
79
57
|
}
|
|
80
|
-
|
|
58
|
+
|
|
81
59
|
/** @internal */
|
|
82
|
-
function lazyLoad(exports, props, loadModule) {
|
|
60
|
+
export function lazyLoad(exports: any, props: string[], loadModule: any) {
|
|
83
61
|
for (let property of props) {
|
|
84
62
|
Object.defineProperty(exports, property, {
|
|
85
63
|
enumerable: true,
|
|
86
|
-
get: function
|
|
64
|
+
get: function() {
|
|
87
65
|
return loadModule()[property];
|
|
88
66
|
},
|
|
89
67
|
});
|
|
90
68
|
}
|
|
91
69
|
}
|
|
92
|
-
|
|
70
|
+
|
|
93
71
|
/** @internal */
|
|
94
|
-
async function callAsync(
|
|
95
|
-
|
|
72
|
+
export async function callAsync<T>(
|
|
73
|
+
tok: string,
|
|
74
|
+
props: pulumi.Inputs,
|
|
75
|
+
res?: pulumi.Resource,
|
|
76
|
+
opts?: {property?: string},
|
|
77
|
+
): Promise<T> {
|
|
78
|
+
const o: any = runtime.call<T>(tok, props, res);
|
|
96
79
|
const value = await o.promise(true /*withUnknowns*/);
|
|
97
80
|
const isKnown = await o.isKnown;
|
|
98
81
|
const isSecret = await o.isSecret;
|
|
99
|
-
const problem =
|
|
82
|
+
const problem: string|undefined =
|
|
83
|
+
!isKnown ? "an unknown value"
|
|
100
84
|
: isSecret ? "a secret value"
|
|
101
|
-
|
|
85
|
+
: undefined;
|
|
102
86
|
// Ingoring o.resources silently. They are typically non-empty, r.f() calls include r as a dependency.
|
|
103
87
|
if (problem) {
|
|
104
88
|
throw new Error(`Plain resource method "${tok}" incorrectly returned ${problem}. ` +
|
|
@@ -110,5 +94,3 @@ async function callAsync(tok, props, res, opts) {
|
|
|
110
94
|
}
|
|
111
95
|
return value;
|
|
112
96
|
}
|
|
113
|
-
exports.callAsync = callAsync;
|
|
114
|
-
//# sourceMappingURL=utilities.js.map
|
package/bin/billingPolicy.d.ts
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import * as inputs from "./types/input";
|
|
3
|
-
import * as outputs from "./types/output";
|
|
4
|
-
/**
|
|
5
|
-
* Manages a Power Platform billing policy. Billing policies control pay-as-you-go billing for Power Platform environments.
|
|
6
|
-
*/
|
|
7
|
-
export declare class BillingPolicy extends pulumi.CustomResource {
|
|
8
|
-
/**
|
|
9
|
-
* Get an existing BillingPolicy resource's state with the given name, ID, and optional extra
|
|
10
|
-
* properties used to qualify the lookup.
|
|
11
|
-
*
|
|
12
|
-
* @param name The _unique_ name of the resulting resource.
|
|
13
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
14
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
15
|
-
*/
|
|
16
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): BillingPolicy;
|
|
17
|
-
/**
|
|
18
|
-
* Returns true if the given object is an instance of BillingPolicy. This is designed to work even
|
|
19
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
20
|
-
*/
|
|
21
|
-
static isInstance(obj: any): obj is BillingPolicy;
|
|
22
|
-
/**
|
|
23
|
-
* The billing instrument details.
|
|
24
|
-
*/
|
|
25
|
-
readonly billingInstrument: pulumi.Output<outputs.BillingInstrument | undefined>;
|
|
26
|
-
/**
|
|
27
|
-
* The timestamp when the billing policy was created.
|
|
28
|
-
*/
|
|
29
|
-
readonly createdOn: pulumi.Output<string | undefined>;
|
|
30
|
-
/**
|
|
31
|
-
* The timestamp when the billing policy was last modified.
|
|
32
|
-
*/
|
|
33
|
-
readonly lastModifiedOn: pulumi.Output<string | undefined>;
|
|
34
|
-
/**
|
|
35
|
-
* The geographic location of the billing policy.
|
|
36
|
-
*/
|
|
37
|
-
readonly location: pulumi.Output<string>;
|
|
38
|
-
/**
|
|
39
|
-
* The name of the billing policy.
|
|
40
|
-
*/
|
|
41
|
-
readonly name: pulumi.Output<string>;
|
|
42
|
-
/**
|
|
43
|
-
* The status of the billing policy.
|
|
44
|
-
*/
|
|
45
|
-
readonly status: pulumi.Output<string | undefined>;
|
|
46
|
-
/**
|
|
47
|
-
* Create a BillingPolicy resource with the given unique name, arguments, and options.
|
|
48
|
-
*
|
|
49
|
-
* @param name The _unique_ name of the resource.
|
|
50
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
51
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
52
|
-
*/
|
|
53
|
-
constructor(name: string, args: BillingPolicyArgs, opts?: pulumi.CustomResourceOptions);
|
|
54
|
-
}
|
|
55
|
-
/**
|
|
56
|
-
* The set of arguments for constructing a BillingPolicy resource.
|
|
57
|
-
*/
|
|
58
|
-
export interface BillingPolicyArgs {
|
|
59
|
-
/**
|
|
60
|
-
* The billing instrument (Azure subscription) details.
|
|
61
|
-
*/
|
|
62
|
-
billingInstrument?: pulumi.Input<inputs.BillingInstrumentArgs>;
|
|
63
|
-
/**
|
|
64
|
-
* The geographic location for the billing policy (e.g., unitedstates, europe).
|
|
65
|
-
*/
|
|
66
|
-
location: pulumi.Input<string>;
|
|
67
|
-
/**
|
|
68
|
-
* The name of the billing policy.
|
|
69
|
-
*/
|
|
70
|
-
name: pulumi.Input<string>;
|
|
71
|
-
/**
|
|
72
|
-
* The status of the billing policy: Enabled or Disabled.
|
|
73
|
-
*/
|
|
74
|
-
status?: pulumi.Input<string>;
|
|
75
|
-
}
|
|
76
|
-
//# sourceMappingURL=billingPolicy.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"billingPolicy.d.ts","sourceRoot":"","sources":["../billingPolicy.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;GAEG;AACH,qBAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;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,aAAa;IAOhH;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,aAAa;IAOxD;;OAEG;IACH,SAAwB,iBAAiB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,iBAAiB,GAAG,SAAS,CAAC,CAAC;IAChG;;OAEG;IACH,SAAgC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7E;;OAEG;IACH,SAAgC,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAClF;;OAEG;IACH,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACxD;;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,iBAAiB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CA2BzF;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAAC;IAC/D;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC/B;;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"}
|
package/bin/billingPolicy.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"billingPolicy.js","sourceRoot":"","sources":["../billingPolicy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;GAEG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,aAAa,CAAC,IAAI,EAAE,SAAgB,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC1E,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,mCAAmC,CAAC;IAE1E;;;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,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;IA2BD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAuB,EAAE,IAAmC;QAClF,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,IAAI,IAAI,EAAE,QAAQ,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3C,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;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,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,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,mBAAmB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACrD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,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,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;;AArFL,sCAsFC"}
|
package/bin/config/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../config/index.ts"],"names":[],"mappings":"AAIA,cAAc,QAAQ,CAAC"}
|
package/bin/config/index.js
DELETED
|
@@ -1,21 +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 __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
-
};
|
|
18
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
// Export members:
|
|
20
|
-
__exportStar(require("./vars"), exports);
|
|
21
|
-
//# sourceMappingURL=index.js.map
|
package/bin/config/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../config/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;AAEjF,kBAAkB;AAClB,yCAAuB"}
|
package/bin/config/vars.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The Azure AD Application (Client) ID. Can also be set with the AZURE_CLIENT_ID environment variable.
|
|
3
|
-
*/
|
|
4
|
-
export declare const clientId: string | undefined;
|
|
5
|
-
/**
|
|
6
|
-
* The Azure AD Client Secret. Can also be set with the AZURE_CLIENT_SECRET environment variable.
|
|
7
|
-
*/
|
|
8
|
-
export declare const clientSecret: string | undefined;
|
|
9
|
-
/**
|
|
10
|
-
* The Azure AD Tenant ID for authenticating with Power Platform. Can also be set with the AZURE_TENANT_ID environment variable.
|
|
11
|
-
*/
|
|
12
|
-
export declare const tenantId: string | undefined;
|
|
13
|
-
//# sourceMappingURL=vars.d.ts.map
|
package/bin/config/vars.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"vars.d.ts","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":"AASA;;GAEG;AACH,MAAM,CAAC,OAAO,CAAC,MAAM,QAAQ,EAAE,MAAM,GAAG,SAAS,CAAC;AAQlD;;GAEG;AACH,MAAM,CAAC,OAAO,CAAC,MAAM,YAAY,EAAE,MAAM,GAAG,SAAS,CAAC;AAQtD;;GAEG;AACH,MAAM,CAAC,OAAO,CAAC,MAAM,QAAQ,EAAE,MAAM,GAAG,SAAS,CAAC"}
|
package/bin/config/vars.js
DELETED
|
@@ -1,48 +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
|
-
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
29
|
-
const __config = new pulumi.Config("powerplatform");
|
|
30
|
-
Object.defineProperty(exports, "clientId", {
|
|
31
|
-
get() {
|
|
32
|
-
return __config.get("clientId");
|
|
33
|
-
},
|
|
34
|
-
enumerable: true,
|
|
35
|
-
});
|
|
36
|
-
Object.defineProperty(exports, "clientSecret", {
|
|
37
|
-
get() {
|
|
38
|
-
return __config.get("clientSecret");
|
|
39
|
-
},
|
|
40
|
-
enumerable: true,
|
|
41
|
-
});
|
|
42
|
-
Object.defineProperty(exports, "tenantId", {
|
|
43
|
-
get() {
|
|
44
|
-
return __config.get("tenantId");
|
|
45
|
-
},
|
|
46
|
-
enumerable: true,
|
|
47
|
-
});
|
|
48
|
-
//# sourceMappingURL=vars.js.map
|
package/bin/config/vars.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAIzC,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC;AAMpD,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,cAAc,EAAE;IAC3C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IACxC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC"}
|
package/bin/dlpPolicy.d.ts
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import * as inputs from "./types/input";
|
|
3
|
-
import * as outputs from "./types/output";
|
|
4
|
-
/**
|
|
5
|
-
* Manages a Power Platform Data Loss Prevention (DLP) policy. DLP policies define rules to control how connectors can share data. Note: Deletion removes all rule sets from the policy, as the SDK does not expose a direct policy delete endpoint.
|
|
6
|
-
*/
|
|
7
|
-
export declare class DlpPolicy extends pulumi.CustomResource {
|
|
8
|
-
/**
|
|
9
|
-
* Get an existing DlpPolicy resource's state with the given name, ID, and optional extra
|
|
10
|
-
* properties used to qualify the lookup.
|
|
11
|
-
*
|
|
12
|
-
* @param name The _unique_ name of the resulting resource.
|
|
13
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
14
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
15
|
-
*/
|
|
16
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): DlpPolicy;
|
|
17
|
-
/**
|
|
18
|
-
* Returns true if the given object is an instance of DlpPolicy. This is designed to work even
|
|
19
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
20
|
-
*/
|
|
21
|
-
static isInstance(obj: any): obj is DlpPolicy;
|
|
22
|
-
/**
|
|
23
|
-
* The timestamp when the policy was last modified.
|
|
24
|
-
*/
|
|
25
|
-
readonly lastModified: pulumi.Output<string | undefined>;
|
|
26
|
-
/**
|
|
27
|
-
* The name of the DLP policy.
|
|
28
|
-
*/
|
|
29
|
-
readonly name: pulumi.Output<string>;
|
|
30
|
-
/**
|
|
31
|
-
* The number of rule sets in the policy.
|
|
32
|
-
*/
|
|
33
|
-
readonly ruleSetCount: pulumi.Output<number | undefined>;
|
|
34
|
-
/**
|
|
35
|
-
* The rule sets that define the DLP policy rules.
|
|
36
|
-
*/
|
|
37
|
-
readonly ruleSets: pulumi.Output<outputs.RuleSet[] | undefined>;
|
|
38
|
-
/**
|
|
39
|
-
* The tenant ID that owns the policy.
|
|
40
|
-
*/
|
|
41
|
-
readonly tenantId: pulumi.Output<string | undefined>;
|
|
42
|
-
/**
|
|
43
|
-
* Create a DlpPolicy resource with the given unique name, arguments, and options.
|
|
44
|
-
*
|
|
45
|
-
* @param name The _unique_ name of the resource.
|
|
46
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
47
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
48
|
-
*/
|
|
49
|
-
constructor(name: string, args: DlpPolicyArgs, opts?: pulumi.CustomResourceOptions);
|
|
50
|
-
}
|
|
51
|
-
/**
|
|
52
|
-
* The set of arguments for constructing a DlpPolicy resource.
|
|
53
|
-
*/
|
|
54
|
-
export interface DlpPolicyArgs {
|
|
55
|
-
/**
|
|
56
|
-
* The name of the DLP policy.
|
|
57
|
-
*/
|
|
58
|
-
name: pulumi.Input<string>;
|
|
59
|
-
/**
|
|
60
|
-
* The rule sets that define the DLP policy rules.
|
|
61
|
-
*/
|
|
62
|
-
ruleSets?: pulumi.Input<pulumi.Input<inputs.RuleSetArgs>[]>;
|
|
63
|
-
}
|
|
64
|
-
//# sourceMappingURL=dlpPolicy.d.ts.map
|
package/bin/dlpPolicy.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dlpPolicy.d.ts","sourceRoot":"","sources":["../dlpPolicy.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;GAEG;AACH,qBAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;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,SAAS;IAO5G;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,SAAS;IAOpD;;OAEG;IACH,SAAgC,YAAY,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAChF;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACpD;;OAEG;IACH,SAAgC,YAAY,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAChF;;OAEG;IACH,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,EAAE,GAAG,SAAS,CAAC,CAAC;IAC/E;;OAEG;IACH,SAAgC,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAE5E;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAsBrF;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC1B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC3B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;CAC/D"}
|
package/bin/dlpPolicy.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dlpPolicy.js","sourceRoot":"","sources":["../dlpPolicy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;GAEG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,SAAS,CAAC,IAAI,EAAE,SAAgB,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtE,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,+BAA+B,CAAC;IAEtE;;;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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;IAuBD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAmB,EAAE,IAAmC;QAC9E,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,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACnD,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACnD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;aAAM;YACH,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACnD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACnD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;;AA5EL,8BA6EC"}
|