@pulumi/datadog 4.25.0 → 4.25.1
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/logsIndex.d.ts +1 -1
- package/package.json +1 -1
- package/syntheticsTest.d.ts +1 -1
- package/syntheticsTest.js +1 -1
- package/types/input.d.ts +14 -2
- package/types/output.d.ts +14 -2
package/logsIndex.d.ts
CHANGED
|
@@ -70,7 +70,7 @@ export declare class LogsIndex extends pulumi.CustomResource {
|
|
|
70
70
|
/**
|
|
71
71
|
* Object containing options to override the default daily limit reset time.
|
|
72
72
|
*/
|
|
73
|
-
readonly dailyLimitReset: pulumi.Output<outputs.LogsIndexDailyLimitReset
|
|
73
|
+
readonly dailyLimitReset: pulumi.Output<outputs.LogsIndexDailyLimitReset>;
|
|
74
74
|
/**
|
|
75
75
|
* A percentage threshold of the daily quota at which a Datadog warning event is generated.
|
|
76
76
|
*/
|
package/package.json
CHANGED
package/syntheticsTest.d.ts
CHANGED
|
@@ -318,7 +318,7 @@ import * as outputs from "./types/output";
|
|
|
318
318
|
* host: "google.com",
|
|
319
319
|
* port: 50050,
|
|
320
320
|
* service: "Hello",
|
|
321
|
-
*
|
|
321
|
+
* plainProtoFile: `syntax = "proto3";
|
|
322
322
|
* option java_multiple_files = true;
|
|
323
323
|
* option java_package = "io.grpc.examples.helloworld";
|
|
324
324
|
* option java_outer_classname = "HelloWorldProto";
|
package/syntheticsTest.js
CHANGED
|
@@ -322,7 +322,7 @@ const utilities = require("./utilities");
|
|
|
322
322
|
* host: "google.com",
|
|
323
323
|
* port: 50050,
|
|
324
324
|
* service: "Hello",
|
|
325
|
-
*
|
|
325
|
+
* plainProtoFile: `syntax = "proto3";
|
|
326
326
|
* option java_multiple_files = true;
|
|
327
327
|
* option java_package = "io.grpc.examples.helloworld";
|
|
328
328
|
* option java_outer_classname = "HelloWorldProto";
|
package/types/input.d.ts
CHANGED
|
@@ -50670,12 +50670,18 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
50670
50670
|
* Persist cookies across redirects.
|
|
50671
50671
|
*/
|
|
50672
50672
|
persistCookies?: pulumi.Input<boolean>;
|
|
50673
|
+
/**
|
|
50674
|
+
* The content of a proto file as a string.
|
|
50675
|
+
*/
|
|
50676
|
+
plainProtoFile?: pulumi.Input<string>;
|
|
50673
50677
|
/**
|
|
50674
50678
|
* Port to use when performing the test.
|
|
50675
50679
|
*/
|
|
50676
50680
|
port?: pulumi.Input<number>;
|
|
50677
50681
|
/**
|
|
50678
|
-
* A protobuf JSON descriptor.
|
|
50682
|
+
* A protobuf JSON descriptor. **Deprecated.** Use `plainProtoFile` instead.
|
|
50683
|
+
*
|
|
50684
|
+
* @deprecated Use `plain_proto_file` instead.
|
|
50679
50685
|
*/
|
|
50680
50686
|
protoJsonDescriptor?: pulumi.Input<string>;
|
|
50681
50687
|
/**
|
|
@@ -51247,12 +51253,18 @@ export interface SyntheticsTestRequestDefinition {
|
|
|
51247
51253
|
* Persist cookies across redirects.
|
|
51248
51254
|
*/
|
|
51249
51255
|
persistCookies?: pulumi.Input<boolean>;
|
|
51256
|
+
/**
|
|
51257
|
+
* The content of a proto file as a string.
|
|
51258
|
+
*/
|
|
51259
|
+
plainProtoFile?: pulumi.Input<string>;
|
|
51250
51260
|
/**
|
|
51251
51261
|
* Port to use when performing the test.
|
|
51252
51262
|
*/
|
|
51253
51263
|
port?: pulumi.Input<number>;
|
|
51254
51264
|
/**
|
|
51255
|
-
* A protobuf JSON descriptor.
|
|
51265
|
+
* A protobuf JSON descriptor. **Deprecated.** Use `plainProtoFile` instead.
|
|
51266
|
+
*
|
|
51267
|
+
* @deprecated Use `plain_proto_file` instead.
|
|
51256
51268
|
*/
|
|
51257
51269
|
protoJsonDescriptor?: pulumi.Input<string>;
|
|
51258
51270
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -51269,12 +51269,18 @@ export interface SyntheticsTestApiStepRequestDefinition {
|
|
|
51269
51269
|
* Persist cookies across redirects.
|
|
51270
51270
|
*/
|
|
51271
51271
|
persistCookies?: boolean;
|
|
51272
|
+
/**
|
|
51273
|
+
* The content of a proto file as a string.
|
|
51274
|
+
*/
|
|
51275
|
+
plainProtoFile?: string;
|
|
51272
51276
|
/**
|
|
51273
51277
|
* Port to use when performing the test.
|
|
51274
51278
|
*/
|
|
51275
51279
|
port?: number;
|
|
51276
51280
|
/**
|
|
51277
|
-
* A protobuf JSON descriptor.
|
|
51281
|
+
* A protobuf JSON descriptor. **Deprecated.** Use `plainProtoFile` instead.
|
|
51282
|
+
*
|
|
51283
|
+
* @deprecated Use `plain_proto_file` instead.
|
|
51278
51284
|
*/
|
|
51279
51285
|
protoJsonDescriptor?: string;
|
|
51280
51286
|
/**
|
|
@@ -51846,12 +51852,18 @@ export interface SyntheticsTestRequestDefinition {
|
|
|
51846
51852
|
* Persist cookies across redirects.
|
|
51847
51853
|
*/
|
|
51848
51854
|
persistCookies?: boolean;
|
|
51855
|
+
/**
|
|
51856
|
+
* The content of a proto file as a string.
|
|
51857
|
+
*/
|
|
51858
|
+
plainProtoFile?: string;
|
|
51849
51859
|
/**
|
|
51850
51860
|
* Port to use when performing the test.
|
|
51851
51861
|
*/
|
|
51852
51862
|
port?: number;
|
|
51853
51863
|
/**
|
|
51854
|
-
* A protobuf JSON descriptor.
|
|
51864
|
+
* A protobuf JSON descriptor. **Deprecated.** Use `plainProtoFile` instead.
|
|
51865
|
+
*
|
|
51866
|
+
* @deprecated Use `plain_proto_file` instead.
|
|
51855
51867
|
*/
|
|
51856
51868
|
protoJsonDescriptor?: string;
|
|
51857
51869
|
/**
|