@pulumi/datadog 4.58.0-alpha.1760420742 → 4.58.0

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 (69) hide show
  1. package/applicationKey.d.ts +13 -2
  2. package/applicationKey.js +13 -2
  3. package/applicationKey.js.map +1 -1
  4. package/aws/getIntegrationIamPermissionsStandard.d.ts +22 -0
  5. package/aws/getIntegrationIamPermissionsStandard.js +24 -0
  6. package/aws/getIntegrationIamPermissionsStandard.js.map +1 -0
  7. package/aws/index.d.ts +3 -0
  8. package/aws/index.js +4 -1
  9. package/aws/index.js.map +1 -1
  10. package/awsCurConfig.d.ts +40 -0
  11. package/awsCurConfig.js +10 -0
  12. package/awsCurConfig.js.map +1 -1
  13. package/azureUcConfig.d.ts +151 -0
  14. package/azureUcConfig.js +89 -0
  15. package/azureUcConfig.js.map +1 -0
  16. package/customAllocationRule.d.ts +141 -0
  17. package/customAllocationRule.js +91 -0
  18. package/customAllocationRule.js.map +1 -0
  19. package/customAllocationRules.d.ts +61 -0
  20. package/customAllocationRules.js +65 -0
  21. package/customAllocationRules.js.map +1 -0
  22. package/gcpUcConfig.d.ts +192 -0
  23. package/gcpUcConfig.js +116 -0
  24. package/gcpUcConfig.js.map +1 -0
  25. package/getAzureUcConfig.d.ts +98 -0
  26. package/getAzureUcConfig.js +32 -0
  27. package/getAzureUcConfig.js.map +1 -0
  28. package/getCustomAllocationRule.d.ts +88 -0
  29. package/getCustomAllocationRule.js +34 -0
  30. package/getCustomAllocationRule.js.map +1 -0
  31. package/getGcpUcConfig.d.ts +88 -0
  32. package/getGcpUcConfig.js +28 -0
  33. package/getGcpUcConfig.js.map +1 -0
  34. package/getPermissions.d.ts +26 -2
  35. package/getPermissions.js +26 -2
  36. package/getPermissions.js.map +1 -1
  37. package/getRole.d.ts +4 -4
  38. package/getRole.js +4 -4
  39. package/getRoleUsers.d.ts +32 -0
  40. package/getRoleUsers.js +32 -0
  41. package/getRoleUsers.js.map +1 -1
  42. package/getRoles.d.ts +4 -4
  43. package/getRoles.js +4 -4
  44. package/getTagPipelineRuleset.d.ts +66 -0
  45. package/getTagPipelineRuleset.js +30 -0
  46. package/getTagPipelineRuleset.js.map +1 -0
  47. package/index.d.ts +30 -0
  48. package/index.js +47 -5
  49. package/index.js.map +1 -1
  50. package/package.json +2 -2
  51. package/role.d.ts +6 -6
  52. package/role.js +6 -6
  53. package/serviceAccountApplicationKey.d.ts +15 -3
  54. package/serviceAccountApplicationKey.js +15 -3
  55. package/serviceAccountApplicationKey.js.map +1 -1
  56. package/syntheticsPrivateLocation.d.ts +8 -0
  57. package/syntheticsPrivateLocation.js +2 -0
  58. package/syntheticsPrivateLocation.js.map +1 -1
  59. package/tagPipelineRuleset.d.ts +103 -0
  60. package/tagPipelineRuleset.js +73 -0
  61. package/tagPipelineRuleset.js.map +1 -0
  62. package/tagPipelineRulesets.d.ts +73 -0
  63. package/tagPipelineRulesets.js +77 -0
  64. package/tagPipelineRulesets.js.map +1 -0
  65. package/types/input.d.ts +798 -0
  66. package/types/output.d.ts +588 -0
  67. package/userRole.d.ts +16 -8
  68. package/userRole.js +16 -8
  69. package/userRole.js.map +1 -1
package/role.d.ts CHANGED
@@ -11,16 +11,16 @@ import * as outputs from "./types/output";
11
11
  * import * as datadog from "@pulumi/datadog";
12
12
  *
13
13
  * // Source the permissions
14
- * const bar = datadog.getPermissions({});
15
- * // Create a new Datadog role
16
- * const foo = new datadog.Role("foo", {
17
- * name: "foo",
14
+ * const ddPerms = datadog.getPermissions({});
15
+ * // Create an API Key Manager role
16
+ * const apiKeyManager = new datadog.Role("api_key_manager", {
17
+ * name: "API Key Manager",
18
18
  * permissions: [
19
19
  * {
20
- * id: bar.then(bar => bar.permissions?.monitorsDowntime),
20
+ * id: ddPerms.then(ddPerms => ddPerms.permissions?.apiKeysRead),
21
21
  * },
22
22
  * {
23
- * id: bar.then(bar => bar.permissions?.monitorsWrite),
23
+ * id: ddPerms.then(ddPerms => ddPerms.permissions?.apiKeysWrite),
24
24
  * },
25
25
  * ],
26
26
  * });
package/role.js CHANGED
@@ -15,16 +15,16 @@ const utilities = require("./utilities");
15
15
  * import * as datadog from "@pulumi/datadog";
16
16
  *
17
17
  * // Source the permissions
18
- * const bar = datadog.getPermissions({});
19
- * // Create a new Datadog role
20
- * const foo = new datadog.Role("foo", {
21
- * name: "foo",
18
+ * const ddPerms = datadog.getPermissions({});
19
+ * // Create an API Key Manager role
20
+ * const apiKeyManager = new datadog.Role("api_key_manager", {
21
+ * name: "API Key Manager",
22
22
  * permissions: [
23
23
  * {
24
- * id: bar.then(bar => bar.permissions?.monitorsDowntime),
24
+ * id: ddPerms.then(ddPerms => ddPerms.permissions?.apiKeysRead),
25
25
  * },
26
26
  * {
27
- * id: bar.then(bar => bar.permissions?.monitorsWrite),
27
+ * id: ddPerms.then(ddPerms => ddPerms.permissions?.apiKeysWrite),
28
28
  * },
29
29
  * ],
30
30
  * });
@@ -8,10 +8,22 @@ import * as pulumi from "@pulumi/pulumi";
8
8
  * import * as pulumi from "@pulumi/pulumi";
9
9
  * import * as datadog from "@pulumi/datadog";
10
10
  *
11
- * // Create new service_account_application_key resource
12
- * const foo = new datadog.ServiceAccountApplicationKey("foo", {
11
+ * // Source the permissions for scoped keys
12
+ * const ddPerms = datadog.getPermissions({});
13
+ * // Create an unrestricted Service Account Application Key
14
+ * // This key inherits all permissions of the service account that owns the key
15
+ * const unrestrictedKey = new datadog.ServiceAccountApplicationKey("unrestricted_key", {
13
16
  * serviceAccountId: "00000000-0000-1234-0000-000000000000",
14
- * name: "Application key for managing dashboards",
17
+ * name: "Unrestricted Service Account Key",
18
+ * });
19
+ * // Create a scoped Service Account Application Key for monitor management
20
+ * const monitorManagementKey = new datadog.ServiceAccountApplicationKey("monitor_management_key", {
21
+ * serviceAccountId: "00000000-0000-1234-0000-000000000000",
22
+ * name: "Monitor Management Service Account Key",
23
+ * scopes: [
24
+ * ddPerms.then(ddPerms => ddPerms.permissions?.monitorsRead),
25
+ * ddPerms.then(ddPerms => ddPerms.permissions?.monitorsWrite),
26
+ * ],
15
27
  * });
16
28
  * ```
17
29
  *
@@ -14,10 +14,22 @@ const utilities = require("./utilities");
14
14
  * import * as pulumi from "@pulumi/pulumi";
15
15
  * import * as datadog from "@pulumi/datadog";
16
16
  *
17
- * // Create new service_account_application_key resource
18
- * const foo = new datadog.ServiceAccountApplicationKey("foo", {
17
+ * // Source the permissions for scoped keys
18
+ * const ddPerms = datadog.getPermissions({});
19
+ * // Create an unrestricted Service Account Application Key
20
+ * // This key inherits all permissions of the service account that owns the key
21
+ * const unrestrictedKey = new datadog.ServiceAccountApplicationKey("unrestricted_key", {
19
22
  * serviceAccountId: "00000000-0000-1234-0000-000000000000",
20
- * name: "Application key for managing dashboards",
23
+ * name: "Unrestricted Service Account Key",
24
+ * });
25
+ * // Create a scoped Service Account Application Key for monitor management
26
+ * const monitorManagementKey = new datadog.ServiceAccountApplicationKey("monitor_management_key", {
27
+ * serviceAccountId: "00000000-0000-1234-0000-000000000000",
28
+ * name: "Monitor Management Service Account Key",
29
+ * scopes: [
30
+ * ddPerms.then(ddPerms => ddPerms.permissions?.monitorsRead),
31
+ * ddPerms.then(ddPerms => ddPerms.permissions?.monitorsWrite),
32
+ * ],
21
33
  * });
22
34
  * ```
23
35
  *
@@ -1 +1 @@
1
- {"version":3,"file":"serviceAccountApplicationKey.js","sourceRoot":"","sources":["../serviceAccountApplicationKey.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;SAChE;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,IAAI,IAAI,EAAE,gBAAgB,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,8CAA8C,CAAC,CAAC;aACnE;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC/C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC;QACxD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AA3FL,oEA4FC;AA9EG,gBAAgB;AACO,yCAAY,GAAG,yEAAyE,CAAC"}
1
+ {"version":3,"file":"serviceAccountApplicationKey.js","sourceRoot":"","sources":["../serviceAccountApplicationKey.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;SAChE;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,IAAI,IAAI,EAAE,gBAAgB,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,8CAA8C,CAAC,CAAC;aACnE;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC/C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC;QACxD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AA3FL,oEA4FC;AA9EG,gBAAgB;AACO,yCAAY,GAAG,yEAAyE,CAAC"}
@@ -66,6 +66,10 @@ export declare class SyntheticsPrivateLocation extends pulumi.CustomResource {
66
66
  * Synthetics private location name.
67
67
  */
68
68
  readonly name: pulumi.Output<string>;
69
+ /**
70
+ * Resource ID to use when setting restrictions with a `datadog.RestrictionPolicy` resource.
71
+ */
72
+ readonly restrictionPolicyResourceId: pulumi.Output<string>;
69
73
  /**
70
74
  * A list of tags to associate with your synthetics private location.
71
75
  */
@@ -103,6 +107,10 @@ export interface SyntheticsPrivateLocationState {
103
107
  * Synthetics private location name.
104
108
  */
105
109
  name?: pulumi.Input<string>;
110
+ /**
111
+ * Resource ID to use when setting restrictions with a `datadog.RestrictionPolicy` resource.
112
+ */
113
+ restrictionPolicyResourceId?: pulumi.Input<string>;
106
114
  /**
107
115
  * A list of tags to associate with your synthetics private location.
108
116
  */
@@ -67,6 +67,7 @@ class SyntheticsPrivateLocation extends pulumi.CustomResource {
67
67
  resourceInputs["description"] = state?.description;
68
68
  resourceInputs["metadata"] = state?.metadata;
69
69
  resourceInputs["name"] = state?.name;
70
+ resourceInputs["restrictionPolicyResourceId"] = state?.restrictionPolicyResourceId;
70
71
  resourceInputs["tags"] = state?.tags;
71
72
  }
72
73
  else {
@@ -80,6 +81,7 @@ class SyntheticsPrivateLocation extends pulumi.CustomResource {
80
81
  resourceInputs["name"] = args?.name;
81
82
  resourceInputs["tags"] = args?.tags;
82
83
  resourceInputs["config"] = undefined /*out*/;
84
+ resourceInputs["restrictionPolicyResourceId"] = undefined /*out*/;
83
85
  }
84
86
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
85
87
  const secretOpts = { additionalSecretOutputs: ["apiKey", "config"] };
@@ -1 +1 @@
1
- {"version":3,"file":"syntheticsPrivateLocation.js","sourceRoot":"","sources":["../syntheticsPrivateLocation.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,yBAA0B,SAAQ,MAAM,CAAC,cAAc;IAChE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsC,EAAE,IAAmC;QACpI,OAAO,IAAI,yBAAyB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAChF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,yBAAyB,CAAC,YAAY,CAAC;IAC1E,CAAC;IAmCD,YAAY,IAAY,EAAE,WAA4E,EAAE,IAAmC;QACvI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyD,CAAC;YACxE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAwD,CAAC;YACtE,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACjF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,CAAC;QACrE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,yBAAyB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9E,CAAC;;AAxFL,8DAyFC;AA3EG,gBAAgB;AACO,sCAAY,GAAG,mEAAmE,CAAC"}
1
+ {"version":3,"file":"syntheticsPrivateLocation.js","sourceRoot":"","sources":["../syntheticsPrivateLocation.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,yBAA0B,SAAQ,MAAM,CAAC,cAAc;IAChE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsC,EAAE,IAAmC;QACpI,OAAO,IAAI,yBAAyB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAChF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,yBAAyB,CAAC,YAAY,CAAC;IAC1E,CAAC;IAuCD,YAAY,IAAY,EAAE,WAA4E,EAAE,IAAmC;QACvI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyD,CAAC;YACxE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,EAAE,2BAA2B,CAAC;YACnF,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAwD,CAAC;YACtE,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACjF,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,6BAA6B,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACrE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,QAAQ,EAAE,QAAQ,CAAC,EAAE,CAAC;QACrE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,yBAAyB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9E,CAAC;;AA9FL,8DA+FC;AAjFG,gBAAgB;AACO,sCAAY,GAAG,mEAAmE,CAAC"}
@@ -0,0 +1,103 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * Provides a Datadog Tag Pipeline Ruleset resource.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ## Import
10
+ *
11
+ * The `pulumi import` command can be used, for example:
12
+ *
13
+ * ```sh
14
+ * $ pulumi import datadog:index/tagPipelineRuleset:TagPipelineRuleset example "your-ruleset-id-here"
15
+ * ```
16
+ */
17
+ export declare class TagPipelineRuleset extends pulumi.CustomResource {
18
+ /**
19
+ * Get an existing TagPipelineRuleset resource's state with the given name, ID, and optional extra
20
+ * properties used to qualify the lookup.
21
+ *
22
+ * @param name The _unique_ name of the resulting resource.
23
+ * @param id The _unique_ provider ID of the resource to lookup.
24
+ * @param state Any extra arguments used during the lookup.
25
+ * @param opts Optional settings to control the behavior of the CustomResource.
26
+ */
27
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TagPipelineRulesetState, opts?: pulumi.CustomResourceOptions): TagPipelineRuleset;
28
+ /**
29
+ * Returns true if the given object is an instance of TagPipelineRuleset. This is designed to work even
30
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
31
+ */
32
+ static isInstance(obj: any): obj is TagPipelineRuleset;
33
+ /**
34
+ * Whether the ruleset is enabled.
35
+ */
36
+ readonly enabled: pulumi.Output<boolean>;
37
+ /**
38
+ * The name of the ruleset.
39
+ */
40
+ readonly name: pulumi.Output<string>;
41
+ /**
42
+ * The position of the ruleset in the pipeline.
43
+ */
44
+ readonly position: pulumi.Output<number>;
45
+ /**
46
+ * The rules in the ruleset.
47
+ */
48
+ readonly rules: pulumi.Output<outputs.TagPipelineRulesetRule[] | undefined>;
49
+ /**
50
+ * The version of the ruleset.
51
+ */
52
+ readonly version: pulumi.Output<number>;
53
+ /**
54
+ * Create a TagPipelineRuleset resource with the given unique name, arguments, and options.
55
+ *
56
+ * @param name The _unique_ name of the resource.
57
+ * @param args The arguments to use to populate this resource's properties.
58
+ * @param opts A bag of options that control this resource's behavior.
59
+ */
60
+ constructor(name: string, args: TagPipelineRulesetArgs, opts?: pulumi.CustomResourceOptions);
61
+ }
62
+ /**
63
+ * Input properties used for looking up and filtering TagPipelineRuleset resources.
64
+ */
65
+ export interface TagPipelineRulesetState {
66
+ /**
67
+ * Whether the ruleset is enabled.
68
+ */
69
+ enabled?: pulumi.Input<boolean>;
70
+ /**
71
+ * The name of the ruleset.
72
+ */
73
+ name?: pulumi.Input<string>;
74
+ /**
75
+ * The position of the ruleset in the pipeline.
76
+ */
77
+ position?: pulumi.Input<number>;
78
+ /**
79
+ * The rules in the ruleset.
80
+ */
81
+ rules?: pulumi.Input<pulumi.Input<inputs.TagPipelineRulesetRule>[]>;
82
+ /**
83
+ * The version of the ruleset.
84
+ */
85
+ version?: pulumi.Input<number>;
86
+ }
87
+ /**
88
+ * The set of arguments for constructing a TagPipelineRuleset resource.
89
+ */
90
+ export interface TagPipelineRulesetArgs {
91
+ /**
92
+ * Whether the ruleset is enabled.
93
+ */
94
+ enabled?: pulumi.Input<boolean>;
95
+ /**
96
+ * The name of the ruleset.
97
+ */
98
+ name: pulumi.Input<string>;
99
+ /**
100
+ * The rules in the ruleset.
101
+ */
102
+ rules?: pulumi.Input<pulumi.Input<inputs.TagPipelineRulesetRule>[]>;
103
+ }
@@ -0,0 +1,73 @@
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.TagPipelineRuleset = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides a Datadog Tag Pipeline Ruleset resource.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ## Import
14
+ *
15
+ * The `pulumi import` command can be used, for example:
16
+ *
17
+ * ```sh
18
+ * $ pulumi import datadog:index/tagPipelineRuleset:TagPipelineRuleset example "your-ruleset-id-here"
19
+ * ```
20
+ */
21
+ class TagPipelineRuleset extends pulumi.CustomResource {
22
+ /**
23
+ * Get an existing TagPipelineRuleset resource's state with the given name, ID, and optional extra
24
+ * properties used to qualify the lookup.
25
+ *
26
+ * @param name The _unique_ name of the resulting resource.
27
+ * @param id The _unique_ provider ID of the resource to lookup.
28
+ * @param state Any extra arguments used during the lookup.
29
+ * @param opts Optional settings to control the behavior of the CustomResource.
30
+ */
31
+ static get(name, id, state, opts) {
32
+ return new TagPipelineRuleset(name, state, { ...opts, id: id });
33
+ }
34
+ /**
35
+ * Returns true if the given object is an instance of TagPipelineRuleset. This is designed to work even
36
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
37
+ */
38
+ static isInstance(obj) {
39
+ if (obj === undefined || obj === null) {
40
+ return false;
41
+ }
42
+ return obj['__pulumiType'] === TagPipelineRuleset.__pulumiType;
43
+ }
44
+ constructor(name, argsOrState, opts) {
45
+ let resourceInputs = {};
46
+ opts = opts || {};
47
+ if (opts.id) {
48
+ const state = argsOrState;
49
+ resourceInputs["enabled"] = state?.enabled;
50
+ resourceInputs["name"] = state?.name;
51
+ resourceInputs["position"] = state?.position;
52
+ resourceInputs["rules"] = state?.rules;
53
+ resourceInputs["version"] = state?.version;
54
+ }
55
+ else {
56
+ const args = argsOrState;
57
+ if (args?.name === undefined && !opts.urn) {
58
+ throw new Error("Missing required property 'name'");
59
+ }
60
+ resourceInputs["enabled"] = args?.enabled;
61
+ resourceInputs["name"] = args?.name;
62
+ resourceInputs["rules"] = args?.rules;
63
+ resourceInputs["position"] = undefined /*out*/;
64
+ resourceInputs["version"] = undefined /*out*/;
65
+ }
66
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
67
+ super(TagPipelineRuleset.__pulumiType, name, resourceInputs, opts);
68
+ }
69
+ }
70
+ exports.TagPipelineRuleset = TagPipelineRuleset;
71
+ /** @internal */
72
+ TagPipelineRuleset.__pulumiType = 'datadog:index/tagPipelineRuleset:TagPipelineRuleset';
73
+ //# sourceMappingURL=tagPipelineRuleset.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tagPipelineRuleset.js","sourceRoot":"","sources":["../tagPipelineRuleset.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IACzD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACzE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;IA+BD,YAAY,IAAY,EAAE,WAA8D,EAAE,IAAmC;QACzH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAkD,CAAC;YACjE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;SAC9C;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;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;;AAhFL,gDAiFC;AAnEG,gBAAgB;AACO,+BAAY,GAAG,qDAAqD,CAAC"}
@@ -0,0 +1,73 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Provides a Datadog Tag Pipeline Ruleset Order resource that can be used to manage the order of Tag Pipeline Rulesets.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as datadog from "@pulumi/datadog";
10
+ *
11
+ * // Create new tag_pipeline_ruleset_order resource
12
+ * const myRulesets = new datadog.TagPipelineRulesets("my_rulesets", {rulesetIds: [
13
+ * "ruleset-id-1",
14
+ * "ruleset-id-2",
15
+ * "ruleset-id-3",
16
+ * ]});
17
+ * ```
18
+ *
19
+ * ## Import
20
+ *
21
+ * The `pulumi import` command can be used, for example:
22
+ *
23
+ * ```sh
24
+ * $ pulumi import datadog:index/tagPipelineRulesets:TagPipelineRulesets my_rulesets order
25
+ * ```
26
+ */
27
+ export declare class TagPipelineRulesets extends pulumi.CustomResource {
28
+ /**
29
+ * Get an existing TagPipelineRulesets resource's state with the given name, ID, and optional extra
30
+ * properties used to qualify the lookup.
31
+ *
32
+ * @param name The _unique_ name of the resulting resource.
33
+ * @param id The _unique_ provider ID of the resource to lookup.
34
+ * @param state Any extra arguments used during the lookup.
35
+ * @param opts Optional settings to control the behavior of the CustomResource.
36
+ */
37
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TagPipelineRulesetsState, opts?: pulumi.CustomResourceOptions): TagPipelineRulesets;
38
+ /**
39
+ * Returns true if the given object is an instance of TagPipelineRulesets. This is designed to work even
40
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
41
+ */
42
+ static isInstance(obj: any): obj is TagPipelineRulesets;
43
+ /**
44
+ * The list of Tag Pipeline Ruleset IDs, in order. Rulesets are executed in the order specified in this list.
45
+ */
46
+ readonly rulesetIds: pulumi.Output<string[]>;
47
+ /**
48
+ * Create a TagPipelineRulesets resource with the given unique name, arguments, and options.
49
+ *
50
+ * @param name The _unique_ name of the resource.
51
+ * @param args The arguments to use to populate this resource's properties.
52
+ * @param opts A bag of options that control this resource's behavior.
53
+ */
54
+ constructor(name: string, args: TagPipelineRulesetsArgs, opts?: pulumi.CustomResourceOptions);
55
+ }
56
+ /**
57
+ * Input properties used for looking up and filtering TagPipelineRulesets resources.
58
+ */
59
+ export interface TagPipelineRulesetsState {
60
+ /**
61
+ * The list of Tag Pipeline Ruleset IDs, in order. Rulesets are executed in the order specified in this list.
62
+ */
63
+ rulesetIds?: pulumi.Input<pulumi.Input<string>[]>;
64
+ }
65
+ /**
66
+ * The set of arguments for constructing a TagPipelineRulesets resource.
67
+ */
68
+ export interface TagPipelineRulesetsArgs {
69
+ /**
70
+ * The list of Tag Pipeline Ruleset IDs, in order. Rulesets are executed in the order specified in this list.
71
+ */
72
+ rulesetIds: pulumi.Input<pulumi.Input<string>[]>;
73
+ }
@@ -0,0 +1,77 @@
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.TagPipelineRulesets = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides a Datadog Tag Pipeline Ruleset Order resource that can be used to manage the order of Tag Pipeline Rulesets.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as datadog from "@pulumi/datadog";
16
+ *
17
+ * // Create new tag_pipeline_ruleset_order resource
18
+ * const myRulesets = new datadog.TagPipelineRulesets("my_rulesets", {rulesetIds: [
19
+ * "ruleset-id-1",
20
+ * "ruleset-id-2",
21
+ * "ruleset-id-3",
22
+ * ]});
23
+ * ```
24
+ *
25
+ * ## Import
26
+ *
27
+ * The `pulumi import` command can be used, for example:
28
+ *
29
+ * ```sh
30
+ * $ pulumi import datadog:index/tagPipelineRulesets:TagPipelineRulesets my_rulesets order
31
+ * ```
32
+ */
33
+ class TagPipelineRulesets extends pulumi.CustomResource {
34
+ /**
35
+ * Get an existing TagPipelineRulesets resource's state with the given name, ID, and optional extra
36
+ * properties used to qualify the lookup.
37
+ *
38
+ * @param name The _unique_ name of the resulting resource.
39
+ * @param id The _unique_ provider ID of the resource to lookup.
40
+ * @param state Any extra arguments used during the lookup.
41
+ * @param opts Optional settings to control the behavior of the CustomResource.
42
+ */
43
+ static get(name, id, state, opts) {
44
+ return new TagPipelineRulesets(name, state, { ...opts, id: id });
45
+ }
46
+ /**
47
+ * Returns true if the given object is an instance of TagPipelineRulesets. This is designed to work even
48
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
49
+ */
50
+ static isInstance(obj) {
51
+ if (obj === undefined || obj === null) {
52
+ return false;
53
+ }
54
+ return obj['__pulumiType'] === TagPipelineRulesets.__pulumiType;
55
+ }
56
+ constructor(name, argsOrState, opts) {
57
+ let resourceInputs = {};
58
+ opts = opts || {};
59
+ if (opts.id) {
60
+ const state = argsOrState;
61
+ resourceInputs["rulesetIds"] = state?.rulesetIds;
62
+ }
63
+ else {
64
+ const args = argsOrState;
65
+ if (args?.rulesetIds === undefined && !opts.urn) {
66
+ throw new Error("Missing required property 'rulesetIds'");
67
+ }
68
+ resourceInputs["rulesetIds"] = args?.rulesetIds;
69
+ }
70
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
71
+ super(TagPipelineRulesets.__pulumiType, name, resourceInputs, opts);
72
+ }
73
+ }
74
+ exports.TagPipelineRulesets = TagPipelineRulesets;
75
+ /** @internal */
76
+ TagPipelineRulesets.__pulumiType = 'datadog:index/tagPipelineRulesets:TagPipelineRulesets';
77
+ //# sourceMappingURL=tagPipelineRulesets.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tagPipelineRulesets.js","sourceRoot":"","sources":["../tagPipelineRulesets.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAa,mBAAoB,SAAQ,MAAM,CAAC,cAAc;IAC1D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgC,EAAE,IAAmC;QAC9H,OAAO,IAAI,mBAAmB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC1E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,mBAAmB,CAAC,YAAY,CAAC;IACpE,CAAC;IAeD,YAAY,IAAY,EAAE,WAAgE,EAAE,IAAmC;QAC3H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAmD,CAAC;YAClE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;SACpD;aAAM;YACH,MAAM,IAAI,GAAG,WAAkD,CAAC;YAChE,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;SACnD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,mBAAmB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACxE,CAAC;;AAxDL,kDAyDC;AA3CG,gBAAgB;AACO,gCAAY,GAAG,uDAAuD,CAAC"}