@pulumi/datadog 4.61.0-alpha.1766036506 → 4.61.0-alpha.1766430889

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 (45) hide show
  1. package/aws/getIntegrationIamPermissionsResourceCollection.d.ts +22 -0
  2. package/aws/getIntegrationIamPermissionsResourceCollection.js +24 -0
  3. package/aws/getIntegrationIamPermissionsResourceCollection.js.map +1 -0
  4. package/aws/index.d.ts +3 -0
  5. package/aws/index.js +4 -1
  6. package/aws/index.js.map +1 -1
  7. package/costBudget.d.ts +147 -6
  8. package/costBudget.js +141 -0
  9. package/costBudget.js.map +1 -1
  10. package/customAllocationRules.d.ts +16 -2
  11. package/customAllocationRules.js +15 -2
  12. package/customAllocationRules.js.map +1 -1
  13. package/getReferenceTable.d.ts +106 -0
  14. package/getReferenceTable.js +36 -0
  15. package/getReferenceTable.js.map +1 -0
  16. package/getReferenceTableRows.d.ts +66 -0
  17. package/getReferenceTableRows.js +32 -0
  18. package/getReferenceTableRows.js.map +1 -0
  19. package/getTeamHierarchyLinks.d.ts +72 -0
  20. package/getTeamHierarchyLinks.js +34 -0
  21. package/getTeamHierarchyLinks.js.map +1 -0
  22. package/index.d.ts +18 -0
  23. package/index.js +27 -3
  24. package/index.js.map +1 -1
  25. package/logsRestrictionQuery.d.ts +103 -0
  26. package/logsRestrictionQuery.js +85 -0
  27. package/logsRestrictionQuery.js.map +1 -0
  28. package/monitor.d.ts +12 -0
  29. package/monitor.js +2 -0
  30. package/monitor.js.map +1 -1
  31. package/monitorNotificationRule.d.ts +17 -5
  32. package/monitorNotificationRule.js +2 -3
  33. package/monitorNotificationRule.js.map +1 -1
  34. package/onCallSchedule.d.ts +29 -17
  35. package/onCallSchedule.js +29 -17
  36. package/onCallSchedule.js.map +1 -1
  37. package/package.json +2 -2
  38. package/referenceTable.d.ts +271 -0
  39. package/referenceTable.js +196 -0
  40. package/referenceTable.js.map +1 -0
  41. package/teamHierarchyLinks.d.ts +79 -0
  42. package/teamHierarchyLinks.js +64 -0
  43. package/teamHierarchyLinks.js.map +1 -0
  44. package/types/input.d.ts +412 -1
  45. package/types/output.d.ts +290 -1
package/types/output.d.ts CHANGED
@@ -396,6 +396,9 @@ export interface CostBudgetEntry {
396
396
  tagFilters?: outputs.CostBudgetEntryTagFilter[];
397
397
  }
398
398
  export interface CostBudgetEntryTagFilter {
399
+ /**
400
+ * **Note:** Must be one of the tags from the `metricsQuery`.
401
+ */
399
402
  tagKey: string;
400
403
  tagValue: string;
401
404
  }
@@ -9700,6 +9703,128 @@ export interface GetMonitorsMonitor {
9700
9703
  */
9701
9704
  type: string;
9702
9705
  }
9706
+ export interface GetReferenceTableFileMetadata {
9707
+ /**
9708
+ * Cloud storage access configuration. Only present for cloud storage sources (S3, GCS, Azure).
9709
+ */
9710
+ accessDetails?: outputs.GetReferenceTableFileMetadataAccessDetails;
9711
+ /**
9712
+ * Error message from the last sync attempt, if any.
9713
+ */
9714
+ errorMessage: string;
9715
+ /**
9716
+ * The number of rows that failed to sync.
9717
+ */
9718
+ errorRowCount: number;
9719
+ /**
9720
+ * The type of error that occurred during file processing. Only present for cloud storage sources.
9721
+ */
9722
+ errorType: string;
9723
+ /**
9724
+ * Whether automatic sync is enabled for this table. Only present for cloud storage sources (S3, GCS, Azure).
9725
+ */
9726
+ syncEnabled: boolean;
9727
+ }
9728
+ export interface GetReferenceTableFileMetadataAccessDetails {
9729
+ /**
9730
+ * AWS S3 access configuration.
9731
+ */
9732
+ awsDetail?: outputs.GetReferenceTableFileMetadataAccessDetailsAwsDetail;
9733
+ /**
9734
+ * Azure Blob Storage access configuration.
9735
+ */
9736
+ azureDetail?: outputs.GetReferenceTableFileMetadataAccessDetailsAzureDetail;
9737
+ /**
9738
+ * Google Cloud Storage access configuration.
9739
+ */
9740
+ gcpDetail?: outputs.GetReferenceTableFileMetadataAccessDetailsGcpDetail;
9741
+ }
9742
+ export interface GetReferenceTableFileMetadataAccessDetailsAwsDetail {
9743
+ /**
9744
+ * The ID of the AWS account.
9745
+ */
9746
+ awsAccountId: string;
9747
+ /**
9748
+ * The name of the AWS S3 bucket.
9749
+ */
9750
+ awsBucketName: string;
9751
+ /**
9752
+ * The relative file path from the AWS S3 bucket root to the CSV file.
9753
+ */
9754
+ filePath: string;
9755
+ }
9756
+ export interface GetReferenceTableFileMetadataAccessDetailsAzureDetail {
9757
+ /**
9758
+ * The Azure client ID (application ID).
9759
+ */
9760
+ azureClientId: string;
9761
+ /**
9762
+ * The name of the Azure container.
9763
+ */
9764
+ azureContainerName: string;
9765
+ /**
9766
+ * The name of the Azure storage account.
9767
+ */
9768
+ azureStorageAccountName: string;
9769
+ /**
9770
+ * The ID of the Azure tenant.
9771
+ */
9772
+ azureTenantId: string;
9773
+ /**
9774
+ * The relative file path from the Azure container root to the CSV file.
9775
+ */
9776
+ filePath: string;
9777
+ }
9778
+ export interface GetReferenceTableFileMetadataAccessDetailsGcpDetail {
9779
+ /**
9780
+ * The relative file path from the GCS bucket root to the CSV file.
9781
+ */
9782
+ filePath: string;
9783
+ /**
9784
+ * The name of the GCP bucket.
9785
+ */
9786
+ gcpBucketName: string;
9787
+ /**
9788
+ * The ID of the GCP project.
9789
+ */
9790
+ gcpProjectId: string;
9791
+ /**
9792
+ * The email of the GCP service account used to access the bucket.
9793
+ */
9794
+ gcpServiceAccountEmail: string;
9795
+ }
9796
+ export interface GetReferenceTableRowsRow {
9797
+ /**
9798
+ * The primary key value of the row.
9799
+ */
9800
+ id: string;
9801
+ /**
9802
+ * Map of field names to values for this row. All values are returned as strings.
9803
+ */
9804
+ values: {
9805
+ [key: string]: string;
9806
+ };
9807
+ }
9808
+ export interface GetReferenceTableSchema {
9809
+ /**
9810
+ * List of fields in the table schema.
9811
+ */
9812
+ fields?: outputs.GetReferenceTableSchemaField[];
9813
+ /**
9814
+ * List of field names that serve as primary keys for the table.
9815
+ */
9816
+ primaryKeys: string[];
9817
+ }
9818
+ export interface GetReferenceTableSchemaField {
9819
+ /**
9820
+ * The name of the field.
9821
+ */
9822
+ name: string;
9823
+ /**
9824
+ * The data type of the field (e.g., STRING, INT32).
9825
+ */
9826
+ type: string;
9827
+ }
9703
9828
  export interface GetRoleUsersRoleUser {
9704
9829
  roleId: string;
9705
9830
  userId: string;
@@ -11934,6 +12059,28 @@ export interface MetricTagConfigurationAggregation {
11934
12059
  */
11935
12060
  time: string;
11936
12061
  }
12062
+ export interface MonitorAsset {
12063
+ /**
12064
+ * Type of asset the entity represents on a monitor. Valid values are `runbook`.
12065
+ */
12066
+ category: string;
12067
+ /**
12068
+ * Name for the monitor asset.
12069
+ */
12070
+ name: string;
12071
+ /**
12072
+ * Identifier of the internal Datadog resource that this asset represents.
12073
+ */
12074
+ resourceKey?: string;
12075
+ /**
12076
+ * Type of internal Datadog resource associated with a monitor asset. Valid values are `notebook`.
12077
+ */
12078
+ resourceType?: string;
12079
+ /**
12080
+ * URL for the asset.
12081
+ */
12082
+ url: string;
12083
+ }
11937
12084
  export interface MonitorConfigPolicyTagPolicy {
11938
12085
  /**
11939
12086
  * The key of the tag
@@ -11984,11 +12131,35 @@ export interface MonitorMonitorThresholds {
11984
12131
  */
11985
12132
  warningRecovery?: string;
11986
12133
  }
12134
+ export interface MonitorNotificationRuleConditionalRecipients {
12135
+ /**
12136
+ * Conditions of the notification rule.
12137
+ */
12138
+ conditions?: outputs.MonitorNotificationRuleConditionalRecipientsCondition[];
12139
+ /**
12140
+ * If none of the `conditions` applied, `fallbackRecipients` will get notified.
12141
+ */
12142
+ fallbackRecipients?: string[];
12143
+ }
12144
+ export interface MonitorNotificationRuleConditionalRecipientsCondition {
12145
+ /**
12146
+ * List of recipients to notify.
12147
+ */
12148
+ recipients: string[];
12149
+ /**
12150
+ * The scope to which the monitor applied.
12151
+ */
12152
+ scope: string;
12153
+ }
11987
12154
  export interface MonitorNotificationRuleFilter {
12155
+ /**
12156
+ * The scope to which the monitor applied.
12157
+ */
12158
+ scope?: string;
11988
12159
  /**
11989
12160
  * All tags that target monitors must match.
11990
12161
  */
11991
- tags: string[];
12162
+ tags?: string[];
11992
12163
  }
11993
12164
  export interface MonitorSchedulingOption {
11994
12165
  /**
@@ -14248,6 +14419,10 @@ export interface OnCallEscalationPolicyStep {
14248
14419
  targets: outputs.OnCallEscalationPolicyStepTarget[];
14249
14420
  }
14250
14421
  export interface OnCallEscalationPolicyStepTarget {
14422
+ /**
14423
+ * For schedule targets, specifies which on-call user to page. Valid values: `current` (default), `previous`, `next`. Valid values are `current`, `previous`, `next`.
14424
+ */
14425
+ position?: string;
14251
14426
  /**
14252
14427
  * Targeted schedule ID.
14253
14428
  */
@@ -14290,6 +14465,10 @@ export interface OnCallScheduleLayer {
14290
14465
  * The date/time when the rotation for this layer starts (in ISO 8601).
14291
14466
  */
14292
14467
  rotationStart: string;
14468
+ /**
14469
+ * The time zone for this layer. If not specified, the layer inherits the schedule's time zone.
14470
+ */
14471
+ timeZone?: string;
14293
14472
  /**
14294
14473
  * List of user IDs for the layer. Can either be a valid user id or null
14295
14474
  */
@@ -26127,6 +26306,116 @@ export interface PowerpackWidgetWidgetLayout {
26127
26306
  */
26128
26307
  y: number;
26129
26308
  }
26309
+ export interface ReferenceTableFileMetadata {
26310
+ /**
26311
+ * Cloud storage access configuration. Exactly one of aws*detail, gcp*detail, or azure*detail must be specified.
26312
+ */
26313
+ accessDetails?: outputs.ReferenceTableFileMetadataAccessDetails;
26314
+ /**
26315
+ * Error message from the last sync attempt, if any.
26316
+ */
26317
+ errorMessage: string;
26318
+ /**
26319
+ * The number of rows that failed to sync.
26320
+ */
26321
+ errorRowCount: number;
26322
+ /**
26323
+ * The type of error that occurred during file processing.
26324
+ */
26325
+ errorType: string;
26326
+ /**
26327
+ * Whether this table should automatically sync with the cloud storage source.
26328
+ */
26329
+ syncEnabled: boolean;
26330
+ }
26331
+ export interface ReferenceTableFileMetadataAccessDetails {
26332
+ /**
26333
+ * AWS S3 access configuration. Required when source is S3.
26334
+ */
26335
+ awsDetail?: outputs.ReferenceTableFileMetadataAccessDetailsAwsDetail;
26336
+ /**
26337
+ * Azure Blob Storage access configuration. Required when source is AZURE.
26338
+ */
26339
+ azureDetail?: outputs.ReferenceTableFileMetadataAccessDetailsAzureDetail;
26340
+ /**
26341
+ * Google Cloud Storage access configuration. Required when source is GCS.
26342
+ */
26343
+ gcpDetail?: outputs.ReferenceTableFileMetadataAccessDetailsGcpDetail;
26344
+ }
26345
+ export interface ReferenceTableFileMetadataAccessDetailsAwsDetail {
26346
+ /**
26347
+ * The ID of the AWS account.
26348
+ */
26349
+ awsAccountId?: string;
26350
+ /**
26351
+ * The name of the AWS S3 bucket.
26352
+ */
26353
+ awsBucketName?: string;
26354
+ /**
26355
+ * The relative file path from the AWS S3 bucket root to the CSV file.
26356
+ */
26357
+ filePath?: string;
26358
+ }
26359
+ export interface ReferenceTableFileMetadataAccessDetailsAzureDetail {
26360
+ /**
26361
+ * The Azure client ID (application ID).
26362
+ */
26363
+ azureClientId?: string;
26364
+ /**
26365
+ * The name of the Azure container.
26366
+ */
26367
+ azureContainerName?: string;
26368
+ /**
26369
+ * The name of the Azure storage account.
26370
+ */
26371
+ azureStorageAccountName?: string;
26372
+ /**
26373
+ * The ID of the Azure tenant.
26374
+ */
26375
+ azureTenantId?: string;
26376
+ /**
26377
+ * The relative file path from the Azure container root to the CSV file.
26378
+ */
26379
+ filePath?: string;
26380
+ }
26381
+ export interface ReferenceTableFileMetadataAccessDetailsGcpDetail {
26382
+ /**
26383
+ * The relative file path from the GCS bucket root to the CSV file.
26384
+ */
26385
+ filePath?: string;
26386
+ /**
26387
+ * The name of the GCP bucket.
26388
+ */
26389
+ gcpBucketName?: string;
26390
+ /**
26391
+ * The ID of the GCP project.
26392
+ */
26393
+ gcpProjectId?: string;
26394
+ /**
26395
+ * The email of the GCP service account used to access the bucket.
26396
+ */
26397
+ gcpServiceAccountEmail?: string;
26398
+ }
26399
+ export interface ReferenceTableSchema {
26400
+ /**
26401
+ * List of fields in the table schema. Must include at least one field. Schema is only set on create.
26402
+ */
26403
+ fields?: outputs.ReferenceTableSchemaField[];
26404
+ /**
26405
+ * List of field names that serve as primary keys for the table. Currently only one primary key is supported.
26406
+ */
26407
+ primaryKeys: string[];
26408
+ }
26409
+ export interface ReferenceTableSchemaField {
26410
+ /**
26411
+ * The name of the field.
26412
+ */
26413
+ name: string;
26414
+ /**
26415
+ * The data type of the field. Must be one of: STRING, INT32. Valid values are `STRING`, `INT32`.
26416
+ */
26417
+ type: string;
26418
+ }
26130
26419
  export interface RestrictionPolicyBinding {
26131
26420
  /**
26132
26421
  * An array of principals. A principal is a subject or group of subjects. Each principal is formatted as `type:id`. Supported types: `role`, `team`, `user`, and `org`. Org ID can be obtained using a `GET /api/v2/current_user` API request. Find it in the `data.relationships.org.data.id` field.