@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
@@ -0,0 +1,64 @@
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.TeamHierarchyLinks = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides a Datadog TeamHierarchyLinks resource. This can be used to create and manage Datadog Team Hierarchy Links.
10
+ */
11
+ class TeamHierarchyLinks extends pulumi.CustomResource {
12
+ /**
13
+ * Get an existing TeamHierarchyLinks 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, id, state, opts) {
22
+ return new TeamHierarchyLinks(name, state, { ...opts, id: id });
23
+ }
24
+ /**
25
+ * Returns true if the given object is an instance of TeamHierarchyLinks. This is designed to work even
26
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
27
+ */
28
+ static isInstance(obj) {
29
+ if (obj === undefined || obj === null) {
30
+ return false;
31
+ }
32
+ return obj['__pulumiType'] === TeamHierarchyLinks.__pulumiType;
33
+ }
34
+ constructor(name, argsOrState, opts) {
35
+ let resourceInputs = {};
36
+ opts = opts || {};
37
+ if (opts.id) {
38
+ const state = argsOrState;
39
+ resourceInputs["createdAt"] = state?.createdAt;
40
+ resourceInputs["parentTeamId"] = state?.parentTeamId;
41
+ resourceInputs["provisionedBy"] = state?.provisionedBy;
42
+ resourceInputs["subTeamId"] = state?.subTeamId;
43
+ }
44
+ else {
45
+ const args = argsOrState;
46
+ if (args?.parentTeamId === undefined && !opts.urn) {
47
+ throw new Error("Missing required property 'parentTeamId'");
48
+ }
49
+ if (args?.subTeamId === undefined && !opts.urn) {
50
+ throw new Error("Missing required property 'subTeamId'");
51
+ }
52
+ resourceInputs["parentTeamId"] = args?.parentTeamId;
53
+ resourceInputs["subTeamId"] = args?.subTeamId;
54
+ resourceInputs["createdAt"] = undefined /*out*/;
55
+ resourceInputs["provisionedBy"] = undefined /*out*/;
56
+ }
57
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
58
+ super(TeamHierarchyLinks.__pulumiType, name, resourceInputs, opts);
59
+ }
60
+ }
61
+ exports.TeamHierarchyLinks = TeamHierarchyLinks;
62
+ /** @internal */
63
+ TeamHierarchyLinks.__pulumiType = 'datadog:index/teamHierarchyLinks:TeamHierarchyLinks';
64
+ //# sourceMappingURL=teamHierarchyLinks.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"teamHierarchyLinks.js","sourceRoot":"","sources":["../teamHierarchyLinks.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;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;IA2BD,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,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;SAClD;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,IAAI,IAAI,EAAE,YAAY,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,IAAI,EAAE,SAAS,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5C,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,eAAe,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACvD;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;;AA7EL,gDA8EC;AAhEG,gBAAgB;AACO,+BAAY,GAAG,qDAAqD,CAAC"}
package/types/input.d.ts CHANGED
@@ -397,6 +397,9 @@ export interface CostBudgetEntry {
397
397
  tagFilters?: pulumi.Input<pulumi.Input<inputs.CostBudgetEntryTagFilter>[]>;
398
398
  }
399
399
  export interface CostBudgetEntryTagFilter {
400
+ /**
401
+ * **Note:** Must be one of the tags from the `metricsQuery`.
402
+ */
400
403
  tagKey: pulumi.Input<string>;
401
404
  tagValue: pulumi.Input<string>;
402
405
  }
@@ -9673,6 +9676,250 @@ export interface GetIncidentNotificationRuleConditionArgs {
9673
9676
  */
9674
9677
  values?: pulumi.Input<pulumi.Input<string>[]>;
9675
9678
  }
9679
+ export interface GetReferenceTableFileMetadata {
9680
+ /**
9681
+ * Cloud storage access configuration. Only present for cloud storage sources (S3, GCS, Azure).
9682
+ */
9683
+ accessDetails?: inputs.GetReferenceTableFileMetadataAccessDetails;
9684
+ /**
9685
+ * Error message from the last sync attempt, if any.
9686
+ */
9687
+ errorMessage?: string;
9688
+ /**
9689
+ * The number of rows that failed to sync.
9690
+ */
9691
+ errorRowCount?: number;
9692
+ /**
9693
+ * The type of error that occurred during file processing. Only present for cloud storage sources.
9694
+ */
9695
+ errorType?: string;
9696
+ /**
9697
+ * Whether automatic sync is enabled for this table. Only present for cloud storage sources (S3, GCS, Azure).
9698
+ */
9699
+ syncEnabled?: boolean;
9700
+ }
9701
+ export interface GetReferenceTableFileMetadataArgs {
9702
+ /**
9703
+ * Cloud storage access configuration. Only present for cloud storage sources (S3, GCS, Azure).
9704
+ */
9705
+ accessDetails?: pulumi.Input<inputs.GetReferenceTableFileMetadataAccessDetailsArgs>;
9706
+ /**
9707
+ * Error message from the last sync attempt, if any.
9708
+ */
9709
+ errorMessage?: pulumi.Input<string>;
9710
+ /**
9711
+ * The number of rows that failed to sync.
9712
+ */
9713
+ errorRowCount?: pulumi.Input<number>;
9714
+ /**
9715
+ * The type of error that occurred during file processing. Only present for cloud storage sources.
9716
+ */
9717
+ errorType?: pulumi.Input<string>;
9718
+ /**
9719
+ * Whether automatic sync is enabled for this table. Only present for cloud storage sources (S3, GCS, Azure).
9720
+ */
9721
+ syncEnabled?: pulumi.Input<boolean>;
9722
+ }
9723
+ export interface GetReferenceTableFileMetadataAccessDetails {
9724
+ /**
9725
+ * AWS S3 access configuration.
9726
+ */
9727
+ awsDetail?: inputs.GetReferenceTableFileMetadataAccessDetailsAwsDetail;
9728
+ /**
9729
+ * Azure Blob Storage access configuration.
9730
+ */
9731
+ azureDetail?: inputs.GetReferenceTableFileMetadataAccessDetailsAzureDetail;
9732
+ /**
9733
+ * Google Cloud Storage access configuration.
9734
+ */
9735
+ gcpDetail?: inputs.GetReferenceTableFileMetadataAccessDetailsGcpDetail;
9736
+ }
9737
+ export interface GetReferenceTableFileMetadataAccessDetailsArgs {
9738
+ /**
9739
+ * AWS S3 access configuration.
9740
+ */
9741
+ awsDetail?: pulumi.Input<inputs.GetReferenceTableFileMetadataAccessDetailsAwsDetailArgs>;
9742
+ /**
9743
+ * Azure Blob Storage access configuration.
9744
+ */
9745
+ azureDetail?: pulumi.Input<inputs.GetReferenceTableFileMetadataAccessDetailsAzureDetailArgs>;
9746
+ /**
9747
+ * Google Cloud Storage access configuration.
9748
+ */
9749
+ gcpDetail?: pulumi.Input<inputs.GetReferenceTableFileMetadataAccessDetailsGcpDetailArgs>;
9750
+ }
9751
+ export interface GetReferenceTableFileMetadataAccessDetailsAwsDetail {
9752
+ /**
9753
+ * The ID of the AWS account.
9754
+ */
9755
+ awsAccountId?: string;
9756
+ /**
9757
+ * The name of the AWS S3 bucket.
9758
+ */
9759
+ awsBucketName?: string;
9760
+ /**
9761
+ * The relative file path from the AWS S3 bucket root to the CSV file.
9762
+ */
9763
+ filePath?: string;
9764
+ }
9765
+ export interface GetReferenceTableFileMetadataAccessDetailsAwsDetailArgs {
9766
+ /**
9767
+ * The ID of the AWS account.
9768
+ */
9769
+ awsAccountId?: pulumi.Input<string>;
9770
+ /**
9771
+ * The name of the AWS S3 bucket.
9772
+ */
9773
+ awsBucketName?: pulumi.Input<string>;
9774
+ /**
9775
+ * The relative file path from the AWS S3 bucket root to the CSV file.
9776
+ */
9777
+ filePath?: pulumi.Input<string>;
9778
+ }
9779
+ export interface GetReferenceTableFileMetadataAccessDetailsAzureDetail {
9780
+ /**
9781
+ * The Azure client ID (application ID).
9782
+ */
9783
+ azureClientId?: string;
9784
+ /**
9785
+ * The name of the Azure container.
9786
+ */
9787
+ azureContainerName?: string;
9788
+ /**
9789
+ * The name of the Azure storage account.
9790
+ */
9791
+ azureStorageAccountName?: string;
9792
+ /**
9793
+ * The ID of the Azure tenant.
9794
+ */
9795
+ azureTenantId?: string;
9796
+ /**
9797
+ * The relative file path from the Azure container root to the CSV file.
9798
+ */
9799
+ filePath?: string;
9800
+ }
9801
+ export interface GetReferenceTableFileMetadataAccessDetailsAzureDetailArgs {
9802
+ /**
9803
+ * The Azure client ID (application ID).
9804
+ */
9805
+ azureClientId?: pulumi.Input<string>;
9806
+ /**
9807
+ * The name of the Azure container.
9808
+ */
9809
+ azureContainerName?: pulumi.Input<string>;
9810
+ /**
9811
+ * The name of the Azure storage account.
9812
+ */
9813
+ azureStorageAccountName?: pulumi.Input<string>;
9814
+ /**
9815
+ * The ID of the Azure tenant.
9816
+ */
9817
+ azureTenantId?: pulumi.Input<string>;
9818
+ /**
9819
+ * The relative file path from the Azure container root to the CSV file.
9820
+ */
9821
+ filePath?: pulumi.Input<string>;
9822
+ }
9823
+ export interface GetReferenceTableFileMetadataAccessDetailsGcpDetail {
9824
+ /**
9825
+ * The relative file path from the GCS bucket root to the CSV file.
9826
+ */
9827
+ filePath?: string;
9828
+ /**
9829
+ * The name of the GCP bucket.
9830
+ */
9831
+ gcpBucketName?: string;
9832
+ /**
9833
+ * The ID of the GCP project.
9834
+ */
9835
+ gcpProjectId?: string;
9836
+ /**
9837
+ * The email of the GCP service account used to access the bucket.
9838
+ */
9839
+ gcpServiceAccountEmail?: string;
9840
+ }
9841
+ export interface GetReferenceTableFileMetadataAccessDetailsGcpDetailArgs {
9842
+ /**
9843
+ * The relative file path from the GCS bucket root to the CSV file.
9844
+ */
9845
+ filePath?: pulumi.Input<string>;
9846
+ /**
9847
+ * The name of the GCP bucket.
9848
+ */
9849
+ gcpBucketName?: pulumi.Input<string>;
9850
+ /**
9851
+ * The ID of the GCP project.
9852
+ */
9853
+ gcpProjectId?: pulumi.Input<string>;
9854
+ /**
9855
+ * The email of the GCP service account used to access the bucket.
9856
+ */
9857
+ gcpServiceAccountEmail?: pulumi.Input<string>;
9858
+ }
9859
+ export interface GetReferenceTableRowsRow {
9860
+ /**
9861
+ * The primary key value of the row.
9862
+ */
9863
+ id?: string;
9864
+ /**
9865
+ * Map of field names to values for this row. All values are returned as strings.
9866
+ */
9867
+ values?: {
9868
+ [key: string]: string;
9869
+ };
9870
+ }
9871
+ export interface GetReferenceTableRowsRowArgs {
9872
+ /**
9873
+ * The primary key value of the row.
9874
+ */
9875
+ id?: pulumi.Input<string>;
9876
+ /**
9877
+ * Map of field names to values for this row. All values are returned as strings.
9878
+ */
9879
+ values?: pulumi.Input<{
9880
+ [key: string]: pulumi.Input<string>;
9881
+ }>;
9882
+ }
9883
+ export interface GetReferenceTableSchema {
9884
+ /**
9885
+ * List of fields in the table schema.
9886
+ */
9887
+ fields?: inputs.GetReferenceTableSchemaField[];
9888
+ /**
9889
+ * List of field names that serve as primary keys for the table.
9890
+ */
9891
+ primaryKeys?: string[];
9892
+ }
9893
+ export interface GetReferenceTableSchemaArgs {
9894
+ /**
9895
+ * List of fields in the table schema.
9896
+ */
9897
+ fields?: pulumi.Input<pulumi.Input<inputs.GetReferenceTableSchemaFieldArgs>[]>;
9898
+ /**
9899
+ * List of field names that serve as primary keys for the table.
9900
+ */
9901
+ primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
9902
+ }
9903
+ export interface GetReferenceTableSchemaField {
9904
+ /**
9905
+ * The name of the field.
9906
+ */
9907
+ name?: string;
9908
+ /**
9909
+ * The data type of the field (e.g., STRING, INT32).
9910
+ */
9911
+ type?: string;
9912
+ }
9913
+ export interface GetReferenceTableSchemaFieldArgs {
9914
+ /**
9915
+ * The name of the field.
9916
+ */
9917
+ name?: pulumi.Input<string>;
9918
+ /**
9919
+ * The data type of the field (e.g., STRING, INT32).
9920
+ */
9921
+ type?: pulumi.Input<string>;
9922
+ }
9676
9923
  export interface GetTagPipelineRulesetRule {
9677
9924
  /**
9678
9925
  * Whether the rule is enabled.
@@ -11519,6 +11766,28 @@ export interface MetricTagConfigurationAggregation {
11519
11766
  */
11520
11767
  time: pulumi.Input<string>;
11521
11768
  }
11769
+ export interface MonitorAsset {
11770
+ /**
11771
+ * Type of asset the entity represents on a monitor. Valid values are `runbook`.
11772
+ */
11773
+ category: pulumi.Input<string>;
11774
+ /**
11775
+ * Name for the monitor asset.
11776
+ */
11777
+ name: pulumi.Input<string>;
11778
+ /**
11779
+ * Identifier of the internal Datadog resource that this asset represents.
11780
+ */
11781
+ resourceKey?: pulumi.Input<string>;
11782
+ /**
11783
+ * Type of internal Datadog resource associated with a monitor asset. Valid values are `notebook`.
11784
+ */
11785
+ resourceType?: pulumi.Input<string>;
11786
+ /**
11787
+ * URL for the asset.
11788
+ */
11789
+ url: pulumi.Input<string>;
11790
+ }
11522
11791
  export interface MonitorConfigPolicyTagPolicy {
11523
11792
  /**
11524
11793
  * The key of the tag
@@ -11569,11 +11838,35 @@ export interface MonitorMonitorThresholds {
11569
11838
  */
11570
11839
  warningRecovery?: pulumi.Input<string>;
11571
11840
  }
11841
+ export interface MonitorNotificationRuleConditionalRecipients {
11842
+ /**
11843
+ * Conditions of the notification rule.
11844
+ */
11845
+ conditions?: pulumi.Input<pulumi.Input<inputs.MonitorNotificationRuleConditionalRecipientsCondition>[]>;
11846
+ /**
11847
+ * If none of the `conditions` applied, `fallbackRecipients` will get notified.
11848
+ */
11849
+ fallbackRecipients?: pulumi.Input<pulumi.Input<string>[]>;
11850
+ }
11851
+ export interface MonitorNotificationRuleConditionalRecipientsCondition {
11852
+ /**
11853
+ * List of recipients to notify.
11854
+ */
11855
+ recipients: pulumi.Input<pulumi.Input<string>[]>;
11856
+ /**
11857
+ * The scope to which the monitor applied.
11858
+ */
11859
+ scope: pulumi.Input<string>;
11860
+ }
11572
11861
  export interface MonitorNotificationRuleFilter {
11862
+ /**
11863
+ * The scope to which the monitor applied.
11864
+ */
11865
+ scope?: pulumi.Input<string>;
11573
11866
  /**
11574
11867
  * All tags that target monitors must match.
11575
11868
  */
11576
- tags: pulumi.Input<pulumi.Input<string>[]>;
11869
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
11577
11870
  }
11578
11871
  export interface MonitorSchedulingOption {
11579
11872
  /**
@@ -13833,6 +14126,10 @@ export interface OnCallEscalationPolicyStep {
13833
14126
  targets: pulumi.Input<pulumi.Input<inputs.OnCallEscalationPolicyStepTarget>[]>;
13834
14127
  }
13835
14128
  export interface OnCallEscalationPolicyStepTarget {
14129
+ /**
14130
+ * For schedule targets, specifies which on-call user to page. Valid values: `current` (default), `previous`, `next`. Valid values are `current`, `previous`, `next`.
14131
+ */
14132
+ position?: pulumi.Input<string>;
13836
14133
  /**
13837
14134
  * Targeted schedule ID.
13838
14135
  */
@@ -13875,6 +14172,10 @@ export interface OnCallScheduleLayer {
13875
14172
  * The date/time when the rotation for this layer starts (in ISO 8601).
13876
14173
  */
13877
14174
  rotationStart: pulumi.Input<string>;
14175
+ /**
14176
+ * The time zone for this layer. If not specified, the layer inherits the schedule's time zone.
14177
+ */
14178
+ timeZone?: pulumi.Input<string>;
13878
14179
  /**
13879
14180
  * List of user IDs for the layer. Can either be a valid user id or null
13880
14181
  */
@@ -25720,6 +26021,116 @@ export interface ProviderDefaultTags {
25720
26021
  [key: string]: pulumi.Input<string>;
25721
26022
  }>;
25722
26023
  }
26024
+ export interface ReferenceTableFileMetadata {
26025
+ /**
26026
+ * Cloud storage access configuration. Exactly one of aws*detail, gcp*detail, or azure*detail must be specified.
26027
+ */
26028
+ accessDetails?: pulumi.Input<inputs.ReferenceTableFileMetadataAccessDetails>;
26029
+ /**
26030
+ * Error message from the last sync attempt, if any.
26031
+ */
26032
+ errorMessage?: pulumi.Input<string>;
26033
+ /**
26034
+ * The number of rows that failed to sync.
26035
+ */
26036
+ errorRowCount?: pulumi.Input<number>;
26037
+ /**
26038
+ * The type of error that occurred during file processing.
26039
+ */
26040
+ errorType?: pulumi.Input<string>;
26041
+ /**
26042
+ * Whether this table should automatically sync with the cloud storage source.
26043
+ */
26044
+ syncEnabled: pulumi.Input<boolean>;
26045
+ }
26046
+ export interface ReferenceTableFileMetadataAccessDetails {
26047
+ /**
26048
+ * AWS S3 access configuration. Required when source is S3.
26049
+ */
26050
+ awsDetail?: pulumi.Input<inputs.ReferenceTableFileMetadataAccessDetailsAwsDetail>;
26051
+ /**
26052
+ * Azure Blob Storage access configuration. Required when source is AZURE.
26053
+ */
26054
+ azureDetail?: pulumi.Input<inputs.ReferenceTableFileMetadataAccessDetailsAzureDetail>;
26055
+ /**
26056
+ * Google Cloud Storage access configuration. Required when source is GCS.
26057
+ */
26058
+ gcpDetail?: pulumi.Input<inputs.ReferenceTableFileMetadataAccessDetailsGcpDetail>;
26059
+ }
26060
+ export interface ReferenceTableFileMetadataAccessDetailsAwsDetail {
26061
+ /**
26062
+ * The ID of the AWS account.
26063
+ */
26064
+ awsAccountId?: pulumi.Input<string>;
26065
+ /**
26066
+ * The name of the AWS S3 bucket.
26067
+ */
26068
+ awsBucketName?: pulumi.Input<string>;
26069
+ /**
26070
+ * The relative file path from the AWS S3 bucket root to the CSV file.
26071
+ */
26072
+ filePath?: pulumi.Input<string>;
26073
+ }
26074
+ export interface ReferenceTableFileMetadataAccessDetailsAzureDetail {
26075
+ /**
26076
+ * The Azure client ID (application ID).
26077
+ */
26078
+ azureClientId?: pulumi.Input<string>;
26079
+ /**
26080
+ * The name of the Azure container.
26081
+ */
26082
+ azureContainerName?: pulumi.Input<string>;
26083
+ /**
26084
+ * The name of the Azure storage account.
26085
+ */
26086
+ azureStorageAccountName?: pulumi.Input<string>;
26087
+ /**
26088
+ * The ID of the Azure tenant.
26089
+ */
26090
+ azureTenantId?: pulumi.Input<string>;
26091
+ /**
26092
+ * The relative file path from the Azure container root to the CSV file.
26093
+ */
26094
+ filePath?: pulumi.Input<string>;
26095
+ }
26096
+ export interface ReferenceTableFileMetadataAccessDetailsGcpDetail {
26097
+ /**
26098
+ * The relative file path from the GCS bucket root to the CSV file.
26099
+ */
26100
+ filePath?: pulumi.Input<string>;
26101
+ /**
26102
+ * The name of the GCP bucket.
26103
+ */
26104
+ gcpBucketName?: pulumi.Input<string>;
26105
+ /**
26106
+ * The ID of the GCP project.
26107
+ */
26108
+ gcpProjectId?: pulumi.Input<string>;
26109
+ /**
26110
+ * The email of the GCP service account used to access the bucket.
26111
+ */
26112
+ gcpServiceAccountEmail?: pulumi.Input<string>;
26113
+ }
26114
+ export interface ReferenceTableSchema {
26115
+ /**
26116
+ * List of fields in the table schema. Must include at least one field. Schema is only set on create.
26117
+ */
26118
+ fields?: pulumi.Input<pulumi.Input<inputs.ReferenceTableSchemaField>[]>;
26119
+ /**
26120
+ * List of field names that serve as primary keys for the table. Currently only one primary key is supported.
26121
+ */
26122
+ primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
26123
+ }
26124
+ export interface ReferenceTableSchemaField {
26125
+ /**
26126
+ * The name of the field.
26127
+ */
26128
+ name?: pulumi.Input<string>;
26129
+ /**
26130
+ * The data type of the field. Must be one of: STRING, INT32. Valid values are `STRING`, `INT32`.
26131
+ */
26132
+ type?: pulumi.Input<string>;
26133
+ }
25723
26134
  export interface RestrictionPolicyBinding {
25724
26135
  /**
25725
26136
  * 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.