@pulumi/datadog 4.48.0-alpha.1743486128 → 4.48.0-alpha.1743651164

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.
@@ -45,7 +45,7 @@ export declare class ApmRetentionFilter extends pulumi.CustomResource {
45
45
  */
46
46
  readonly name: pulumi.Output<string>;
47
47
  /**
48
- * Sample rate to apply to spans going through this retention filter as a string, a value of 1.0 keeps all spans matching the query.
48
+ * Sample rate to apply to spans going through this retention filter as a string, a value of 1.0 keeps all spans matching the query. Value must be between 0.00 and 1.00.
49
49
  */
50
50
  readonly rate: pulumi.Output<string>;
51
51
  /**
@@ -78,7 +78,7 @@ export interface ApmRetentionFilterState {
78
78
  */
79
79
  name?: pulumi.Input<string>;
80
80
  /**
81
- * Sample rate to apply to spans going through this retention filter as a string, a value of 1.0 keeps all spans matching the query.
81
+ * Sample rate to apply to spans going through this retention filter as a string, a value of 1.0 keeps all spans matching the query. Value must be between 0.00 and 1.00.
82
82
  */
83
83
  rate?: pulumi.Input<string>;
84
84
  }
@@ -103,7 +103,7 @@ export interface ApmRetentionFilterArgs {
103
103
  */
104
104
  name: pulumi.Input<string>;
105
105
  /**
106
- * Sample rate to apply to spans going through this retention filter as a string, a value of 1.0 keeps all spans matching the query.
106
+ * Sample rate to apply to spans going through this retention filter as a string, a value of 1.0 keeps all spans matching the query. Value must be between 0.00 and 1.00.
107
107
  */
108
108
  rate: pulumi.Input<string>;
109
109
  }
@@ -0,0 +1,123 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Provides a Datadog App resource for creating and managing Datadog Apps from App Builder using the JSON definition.
4
+ *
5
+ * ## Import
6
+ *
7
+ * ```sh
8
+ * $ pulumi import datadog:index/appBuilderApp:AppBuilderApp my_app 11111111-2222-3333-4444-555555555555
9
+ * ```
10
+ */
11
+ export declare class AppBuilderApp extends pulumi.CustomResource {
12
+ /**
13
+ * Get an existing AppBuilderApp resource's state with the given name, ID, and optional extra
14
+ * properties used to qualify the lookup.
15
+ *
16
+ * @param name The _unique_ name of the resulting resource.
17
+ * @param id The _unique_ provider ID of the resource to lookup.
18
+ * @param state Any extra arguments used during the lookup.
19
+ * @param opts Optional settings to control the behavior of the CustomResource.
20
+ */
21
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AppBuilderAppState, opts?: pulumi.CustomResourceOptions): AppBuilderApp;
22
+ /**
23
+ * Returns true if the given object is an instance of AppBuilderApp. This is designed to work even
24
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
25
+ */
26
+ static isInstance(obj: any): obj is AppBuilderApp;
27
+ /**
28
+ * If specified, this will override the Action Connection IDs for the specified Action Query Names in the App JSON. Otherwise, a map of the App's Action Query Names to Action Connection IDs will be returned in output.
29
+ */
30
+ readonly actionQueryNamesToConnectionIds: pulumi.Output<{
31
+ [key: string]: string;
32
+ }>;
33
+ /**
34
+ * The JSON representation of the App. String length must be at least 1.
35
+ */
36
+ readonly appJson: pulumi.Output<string>;
37
+ /**
38
+ * If specified, this will override the human-readable description of the App in the App JSON. String length must be at least 1.
39
+ */
40
+ readonly description: pulumi.Output<string>;
41
+ /**
42
+ * If specified, this will override the name of the App in the App JSON. String length must be at least 1.
43
+ */
44
+ readonly name: pulumi.Output<string>;
45
+ /**
46
+ * Set the app to published or unpublished. Published apps are available to other users. To ensure the app is accessible to the correct users, you also need to set a [Restriction Policy](https://docs.datadoghq.com/api/latest/restriction-policies/) on the app if a policy does not yet exist. Defaults to `false`.
47
+ */
48
+ readonly published: pulumi.Output<boolean>;
49
+ /**
50
+ * The name of the root component of the app. This must be a grid component that contains all other components. If specified, this will override the root instance name of the App in the App JSON. String length must be at least 1.
51
+ */
52
+ readonly rootInstanceName: pulumi.Output<string>;
53
+ /**
54
+ * Create a AppBuilderApp 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: AppBuilderAppArgs, opts?: pulumi.CustomResourceOptions);
61
+ }
62
+ /**
63
+ * Input properties used for looking up and filtering AppBuilderApp resources.
64
+ */
65
+ export interface AppBuilderAppState {
66
+ /**
67
+ * If specified, this will override the Action Connection IDs for the specified Action Query Names in the App JSON. Otherwise, a map of the App's Action Query Names to Action Connection IDs will be returned in output.
68
+ */
69
+ actionQueryNamesToConnectionIds?: pulumi.Input<{
70
+ [key: string]: pulumi.Input<string>;
71
+ }>;
72
+ /**
73
+ * The JSON representation of the App. String length must be at least 1.
74
+ */
75
+ appJson?: pulumi.Input<string>;
76
+ /**
77
+ * If specified, this will override the human-readable description of the App in the App JSON. String length must be at least 1.
78
+ */
79
+ description?: pulumi.Input<string>;
80
+ /**
81
+ * If specified, this will override the name of the App in the App JSON. String length must be at least 1.
82
+ */
83
+ name?: pulumi.Input<string>;
84
+ /**
85
+ * Set the app to published or unpublished. Published apps are available to other users. To ensure the app is accessible to the correct users, you also need to set a [Restriction Policy](https://docs.datadoghq.com/api/latest/restriction-policies/) on the app if a policy does not yet exist. Defaults to `false`.
86
+ */
87
+ published?: pulumi.Input<boolean>;
88
+ /**
89
+ * The name of the root component of the app. This must be a grid component that contains all other components. If specified, this will override the root instance name of the App in the App JSON. String length must be at least 1.
90
+ */
91
+ rootInstanceName?: pulumi.Input<string>;
92
+ }
93
+ /**
94
+ * The set of arguments for constructing a AppBuilderApp resource.
95
+ */
96
+ export interface AppBuilderAppArgs {
97
+ /**
98
+ * If specified, this will override the Action Connection IDs for the specified Action Query Names in the App JSON. Otherwise, a map of the App's Action Query Names to Action Connection IDs will be returned in output.
99
+ */
100
+ actionQueryNamesToConnectionIds?: pulumi.Input<{
101
+ [key: string]: pulumi.Input<string>;
102
+ }>;
103
+ /**
104
+ * The JSON representation of the App. String length must be at least 1.
105
+ */
106
+ appJson: pulumi.Input<string>;
107
+ /**
108
+ * If specified, this will override the human-readable description of the App in the App JSON. String length must be at least 1.
109
+ */
110
+ description?: pulumi.Input<string>;
111
+ /**
112
+ * If specified, this will override the name of the App in the App JSON. String length must be at least 1.
113
+ */
114
+ name?: pulumi.Input<string>;
115
+ /**
116
+ * Set the app to published or unpublished. Published apps are available to other users. To ensure the app is accessible to the correct users, you also need to set a [Restriction Policy](https://docs.datadoghq.com/api/latest/restriction-policies/) on the app if a policy does not yet exist. Defaults to `false`.
117
+ */
118
+ published?: pulumi.Input<boolean>;
119
+ /**
120
+ * The name of the root component of the app. This must be a grid component that contains all other components. If specified, this will override the root instance name of the App in the App JSON. String length must be at least 1.
121
+ */
122
+ rootInstanceName?: pulumi.Input<string>;
123
+ }
@@ -0,0 +1,71 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.AppBuilderApp = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides a Datadog App resource for creating and managing Datadog Apps from App Builder using the JSON definition.
10
+ *
11
+ * ## Import
12
+ *
13
+ * ```sh
14
+ * $ pulumi import datadog:index/appBuilderApp:AppBuilderApp my_app 11111111-2222-3333-4444-555555555555
15
+ * ```
16
+ */
17
+ class AppBuilderApp extends pulumi.CustomResource {
18
+ /**
19
+ * Get an existing AppBuilderApp 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, id, state, opts) {
28
+ return new AppBuilderApp(name, state, Object.assign(Object.assign({}, opts), { id: id }));
29
+ }
30
+ /**
31
+ * Returns true if the given object is an instance of AppBuilderApp. This is designed to work even
32
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
33
+ */
34
+ static isInstance(obj) {
35
+ if (obj === undefined || obj === null) {
36
+ return false;
37
+ }
38
+ return obj['__pulumiType'] === AppBuilderApp.__pulumiType;
39
+ }
40
+ constructor(name, argsOrState, opts) {
41
+ let resourceInputs = {};
42
+ opts = opts || {};
43
+ if (opts.id) {
44
+ const state = argsOrState;
45
+ resourceInputs["actionQueryNamesToConnectionIds"] = state ? state.actionQueryNamesToConnectionIds : undefined;
46
+ resourceInputs["appJson"] = state ? state.appJson : undefined;
47
+ resourceInputs["description"] = state ? state.description : undefined;
48
+ resourceInputs["name"] = state ? state.name : undefined;
49
+ resourceInputs["published"] = state ? state.published : undefined;
50
+ resourceInputs["rootInstanceName"] = state ? state.rootInstanceName : undefined;
51
+ }
52
+ else {
53
+ const args = argsOrState;
54
+ if ((!args || args.appJson === undefined) && !opts.urn) {
55
+ throw new Error("Missing required property 'appJson'");
56
+ }
57
+ resourceInputs["actionQueryNamesToConnectionIds"] = args ? args.actionQueryNamesToConnectionIds : undefined;
58
+ resourceInputs["appJson"] = args ? args.appJson : undefined;
59
+ resourceInputs["description"] = args ? args.description : undefined;
60
+ resourceInputs["name"] = args ? args.name : undefined;
61
+ resourceInputs["published"] = args ? args.published : undefined;
62
+ resourceInputs["rootInstanceName"] = args ? args.rootInstanceName : undefined;
63
+ }
64
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
65
+ super(AppBuilderApp.__pulumiType, name, resourceInputs, opts);
66
+ }
67
+ }
68
+ exports.AppBuilderApp = AppBuilderApp;
69
+ /** @internal */
70
+ AppBuilderApp.__pulumiType = 'datadog:index/appBuilderApp:AppBuilderApp';
71
+ //# sourceMappingURL=appBuilderApp.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"appBuilderApp.js","sourceRoot":"","sources":["../appBuilderApp.ts"],"names":[],"mappings":"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"}
@@ -28,6 +28,8 @@ import * as outputs from "../types/output";
28
28
  *
29
29
  * Microsoft Azure integrations can be imported using their `tenant name` and `client` id separated with a colon (`:`).
30
30
  *
31
+ * The client_secret should be passed by setting the environment variable CLIENT_SECRET
32
+ *
31
33
  * ```sh
32
34
  * $ pulumi import datadog:azure/integration:Integration sandbox ${tenant_name}:${client_id}
33
35
  * ```
@@ -32,6 +32,8 @@ const utilities = require("../utilities");
32
32
  *
33
33
  * Microsoft Azure integrations can be imported using their `tenant name` and `client` id separated with a colon (`:`).
34
34
  *
35
+ * The client_secret should be passed by setting the environment variable CLIENT_SECRET
36
+ *
35
37
  * ```sh
36
38
  * $ pulumi import datadog:azure/integration:Integration sandbox ${tenant_name}:${client_id}
37
39
  * ```
@@ -1 +1 @@
1
- {"version":3,"file":"integration.js","sourceRoot":"","sources":["../../azure/integration.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"integration.js","sourceRoot":"","sources":["../../azure/integration.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,84 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * This data source retrieves the definition of an existing Datadog App from App Builder for use in other resources, such as embedding Apps in Dashboards.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as datadog from "@pulumi/datadog";
10
+ *
11
+ * const myApp = datadog.getAppBuilderApp({
12
+ * id: "11111111-2222-3333-4444-555555555555",
13
+ * });
14
+ * ```
15
+ */
16
+ export declare function getAppBuilderApp(args: GetAppBuilderAppArgs, opts?: pulumi.InvokeOptions): Promise<GetAppBuilderAppResult>;
17
+ /**
18
+ * A collection of arguments for invoking getAppBuilderApp.
19
+ */
20
+ export interface GetAppBuilderAppArgs {
21
+ /**
22
+ * ID for the App.
23
+ */
24
+ id: string;
25
+ }
26
+ /**
27
+ * A collection of values returned by getAppBuilderApp.
28
+ */
29
+ export interface GetAppBuilderAppResult {
30
+ /**
31
+ * A map of the App's Action Query Names to Action Connection IDs.
32
+ */
33
+ readonly actionQueryNamesToConnectionIds: {
34
+ [key: string]: string;
35
+ };
36
+ /**
37
+ * The JSON representation of the App.
38
+ */
39
+ readonly appJson: string;
40
+ /**
41
+ * The human-readable description of the App.
42
+ */
43
+ readonly description: string;
44
+ /**
45
+ * ID for the App.
46
+ */
47
+ readonly id: string;
48
+ /**
49
+ * The name of the App.
50
+ */
51
+ readonly name: string;
52
+ /**
53
+ * Whether the app is published or unpublished. Published apps are available to other users. To ensure the app is accessible to the correct users, you also need to set a [Restriction Policy](https://docs.datadoghq.com/api/latest/restriction-policies/) on the app if a policy does not yet exist.
54
+ */
55
+ readonly published: boolean;
56
+ /**
57
+ * The name of the root component of the app. This is a grid component that contains all other components.
58
+ */
59
+ readonly rootInstanceName: string;
60
+ }
61
+ /**
62
+ * This data source retrieves the definition of an existing Datadog App from App Builder for use in other resources, such as embedding Apps in Dashboards.
63
+ *
64
+ * ## Example Usage
65
+ *
66
+ * ```typescript
67
+ * import * as pulumi from "@pulumi/pulumi";
68
+ * import * as datadog from "@pulumi/datadog";
69
+ *
70
+ * const myApp = datadog.getAppBuilderApp({
71
+ * id: "11111111-2222-3333-4444-555555555555",
72
+ * });
73
+ * ```
74
+ */
75
+ export declare function getAppBuilderAppOutput(args: GetAppBuilderAppOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppBuilderAppResult>;
76
+ /**
77
+ * A collection of arguments for invoking getAppBuilderApp.
78
+ */
79
+ export interface GetAppBuilderAppOutputArgs {
80
+ /**
81
+ * ID for the App.
82
+ */
83
+ id: pulumi.Input<string>;
84
+ }
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.getAppBuilderAppOutput = exports.getAppBuilderApp = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * This data source retrieves the definition of an existing Datadog App from App Builder for use in other resources, such as embedding Apps in Dashboards.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as datadog from "@pulumi/datadog";
16
+ *
17
+ * const myApp = datadog.getAppBuilderApp({
18
+ * id: "11111111-2222-3333-4444-555555555555",
19
+ * });
20
+ * ```
21
+ */
22
+ function getAppBuilderApp(args, opts) {
23
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
24
+ return pulumi.runtime.invoke("datadog:index/getAppBuilderApp:getAppBuilderApp", {
25
+ "id": args.id,
26
+ }, opts);
27
+ }
28
+ exports.getAppBuilderApp = getAppBuilderApp;
29
+ /**
30
+ * This data source retrieves the definition of an existing Datadog App from App Builder for use in other resources, such as embedding Apps in Dashboards.
31
+ *
32
+ * ## Example Usage
33
+ *
34
+ * ```typescript
35
+ * import * as pulumi from "@pulumi/pulumi";
36
+ * import * as datadog from "@pulumi/datadog";
37
+ *
38
+ * const myApp = datadog.getAppBuilderApp({
39
+ * id: "11111111-2222-3333-4444-555555555555",
40
+ * });
41
+ * ```
42
+ */
43
+ function getAppBuilderAppOutput(args, opts) {
44
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
45
+ return pulumi.runtime.invokeOutput("datadog:index/getAppBuilderApp:getAppBuilderApp", {
46
+ "id": args.id,
47
+ }, opts);
48
+ }
49
+ exports.getAppBuilderAppOutput = getAppBuilderAppOutput;
50
+ //# sourceMappingURL=getAppBuilderApp.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getAppBuilderApp.js","sourceRoot":"","sources":["../getAppBuilderApp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4CAKC;AA6CD;;;;;;;;;;;;;GAaG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAAiC;IACtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iDAAiD,EAAE;QAClF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wDAKC"}
@@ -0,0 +1,67 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
3
+ /**
4
+ * Provides a Datadog RUM retention filters datasource. This can be used to retrieve all RUM retention filters for a given RUM application.
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * ```typescript
9
+ * import * as pulumi from "@pulumi/pulumi";
10
+ * import * as datadog from "@pulumi/datadog";
11
+ *
12
+ * const testingRumRetentionFilters = datadog.getRumRetentionFilters({
13
+ * applicationId: "<APPLICATION_ID>",
14
+ * });
15
+ * ```
16
+ */
17
+ export declare function getRumRetentionFilters(args: GetRumRetentionFiltersArgs, opts?: pulumi.InvokeOptions): Promise<GetRumRetentionFiltersResult>;
18
+ /**
19
+ * A collection of arguments for invoking getRumRetentionFilters.
20
+ */
21
+ export interface GetRumRetentionFiltersArgs {
22
+ /**
23
+ * RUM application ID.
24
+ */
25
+ applicationId: string;
26
+ }
27
+ /**
28
+ * A collection of values returned by getRumRetentionFilters.
29
+ */
30
+ export interface GetRumRetentionFiltersResult {
31
+ /**
32
+ * RUM application ID.
33
+ */
34
+ readonly applicationId: string;
35
+ /**
36
+ * The ID of this resource.
37
+ */
38
+ readonly id: string;
39
+ /**
40
+ * The list of RUM retention filters.
41
+ */
42
+ readonly retentionFilters: outputs.GetRumRetentionFiltersRetentionFilter[];
43
+ }
44
+ /**
45
+ * Provides a Datadog RUM retention filters datasource. This can be used to retrieve all RUM retention filters for a given RUM application.
46
+ *
47
+ * ## Example Usage
48
+ *
49
+ * ```typescript
50
+ * import * as pulumi from "@pulumi/pulumi";
51
+ * import * as datadog from "@pulumi/datadog";
52
+ *
53
+ * const testingRumRetentionFilters = datadog.getRumRetentionFilters({
54
+ * applicationId: "<APPLICATION_ID>",
55
+ * });
56
+ * ```
57
+ */
58
+ export declare function getRumRetentionFiltersOutput(args: GetRumRetentionFiltersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRumRetentionFiltersResult>;
59
+ /**
60
+ * A collection of arguments for invoking getRumRetentionFilters.
61
+ */
62
+ export interface GetRumRetentionFiltersOutputArgs {
63
+ /**
64
+ * RUM application ID.
65
+ */
66
+ applicationId: pulumi.Input<string>;
67
+ }
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.getRumRetentionFiltersOutput = exports.getRumRetentionFilters = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides a Datadog RUM retention filters datasource. This can be used to retrieve all RUM retention filters for a given RUM application.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as datadog from "@pulumi/datadog";
16
+ *
17
+ * const testingRumRetentionFilters = datadog.getRumRetentionFilters({
18
+ * applicationId: "<APPLICATION_ID>",
19
+ * });
20
+ * ```
21
+ */
22
+ function getRumRetentionFilters(args, opts) {
23
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
24
+ return pulumi.runtime.invoke("datadog:index/getRumRetentionFilters:getRumRetentionFilters", {
25
+ "applicationId": args.applicationId,
26
+ }, opts);
27
+ }
28
+ exports.getRumRetentionFilters = getRumRetentionFilters;
29
+ /**
30
+ * Provides a Datadog RUM retention filters datasource. This can be used to retrieve all RUM retention filters for a given RUM application.
31
+ *
32
+ * ## Example Usage
33
+ *
34
+ * ```typescript
35
+ * import * as pulumi from "@pulumi/pulumi";
36
+ * import * as datadog from "@pulumi/datadog";
37
+ *
38
+ * const testingRumRetentionFilters = datadog.getRumRetentionFilters({
39
+ * applicationId: "<APPLICATION_ID>",
40
+ * });
41
+ * ```
42
+ */
43
+ function getRumRetentionFiltersOutput(args, opts) {
44
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
45
+ return pulumi.runtime.invokeOutput("datadog:index/getRumRetentionFilters:getRumRetentionFilters", {
46
+ "applicationId": args.applicationId,
47
+ }, opts);
48
+ }
49
+ exports.getRumRetentionFiltersOutput = getRumRetentionFiltersOutput;
50
+ //# sourceMappingURL=getRumRetentionFilters.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getRumRetentionFilters.js","sourceRoot":"","sources":["../getRumRetentionFilters.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6DAA6D,EAAE;QACxF,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wDAKC;AA6BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAAiC;IAClH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,6DAA6D,EAAE;QAC9F,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oEAKC"}
@@ -0,0 +1,135 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
3
+ /**
4
+ * Use this data source to list software catalog entities to use in other resources.
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * ```typescript
9
+ * import * as pulumi from "@pulumi/pulumi";
10
+ * import * as datadog from "@pulumi/datadog";
11
+ *
12
+ * const test = datadog.getSoftwareCatalog({});
13
+ * ```
14
+ */
15
+ export declare function getSoftwareCatalog(args?: GetSoftwareCatalogArgs, opts?: pulumi.InvokeOptions): Promise<GetSoftwareCatalogResult>;
16
+ /**
17
+ * A collection of arguments for invoking getSoftwareCatalog.
18
+ */
19
+ export interface GetSoftwareCatalogArgs {
20
+ /**
21
+ * Filter entities by excluding snapshotted entities.
22
+ */
23
+ filterExcludeSnapshot?: string;
24
+ /**
25
+ * Filter entities by UUID.
26
+ */
27
+ filterId?: string;
28
+ /**
29
+ * Filter entities by kind.
30
+ */
31
+ filterKind?: string;
32
+ /**
33
+ * Filter entities by name.
34
+ */
35
+ filterName?: string;
36
+ /**
37
+ * Filter entities by owner.
38
+ */
39
+ filterOwner?: string;
40
+ /**
41
+ * Filter entities by reference.
42
+ */
43
+ filterRef?: string;
44
+ /**
45
+ * Filter entities by relation type.
46
+ */
47
+ filterRelationType?: string;
48
+ }
49
+ /**
50
+ * A collection of values returned by getSoftwareCatalog.
51
+ */
52
+ export interface GetSoftwareCatalogResult {
53
+ /**
54
+ * List of entities
55
+ */
56
+ readonly entities: outputs.GetSoftwareCatalogEntity[];
57
+ /**
58
+ * Filter entities by excluding snapshotted entities.
59
+ */
60
+ readonly filterExcludeSnapshot?: string;
61
+ /**
62
+ * Filter entities by UUID.
63
+ */
64
+ readonly filterId?: string;
65
+ /**
66
+ * Filter entities by kind.
67
+ */
68
+ readonly filterKind?: string;
69
+ /**
70
+ * Filter entities by name.
71
+ */
72
+ readonly filterName?: string;
73
+ /**
74
+ * Filter entities by owner.
75
+ */
76
+ readonly filterOwner?: string;
77
+ /**
78
+ * Filter entities by reference.
79
+ */
80
+ readonly filterRef?: string;
81
+ /**
82
+ * Filter entities by relation type.
83
+ */
84
+ readonly filterRelationType?: string;
85
+ /**
86
+ * The ID of this resource.
87
+ */
88
+ readonly id: string;
89
+ }
90
+ /**
91
+ * Use this data source to list software catalog entities to use in other resources.
92
+ *
93
+ * ## Example Usage
94
+ *
95
+ * ```typescript
96
+ * import * as pulumi from "@pulumi/pulumi";
97
+ * import * as datadog from "@pulumi/datadog";
98
+ *
99
+ * const test = datadog.getSoftwareCatalog({});
100
+ * ```
101
+ */
102
+ export declare function getSoftwareCatalogOutput(args?: GetSoftwareCatalogOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSoftwareCatalogResult>;
103
+ /**
104
+ * A collection of arguments for invoking getSoftwareCatalog.
105
+ */
106
+ export interface GetSoftwareCatalogOutputArgs {
107
+ /**
108
+ * Filter entities by excluding snapshotted entities.
109
+ */
110
+ filterExcludeSnapshot?: pulumi.Input<string>;
111
+ /**
112
+ * Filter entities by UUID.
113
+ */
114
+ filterId?: pulumi.Input<string>;
115
+ /**
116
+ * Filter entities by kind.
117
+ */
118
+ filterKind?: pulumi.Input<string>;
119
+ /**
120
+ * Filter entities by name.
121
+ */
122
+ filterName?: pulumi.Input<string>;
123
+ /**
124
+ * Filter entities by owner.
125
+ */
126
+ filterOwner?: pulumi.Input<string>;
127
+ /**
128
+ * Filter entities by reference.
129
+ */
130
+ filterRef?: pulumi.Input<string>;
131
+ /**
132
+ * Filter entities by relation type.
133
+ */
134
+ filterRelationType?: pulumi.Input<string>;
135
+ }