@pulumi/databricks 1.100.0-alpha.1784183363 → 1.100.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 (82) hide show
  1. package/accountNetworkPolicy.d.ts +23 -0
  2. package/accountNetworkPolicy.d.ts.map +1 -1
  3. package/accountNetworkPolicy.js +23 -0
  4. package/accountNetworkPolicy.js.map +1 -1
  5. package/aiSearchEndpoint.d.ts +1 -1
  6. package/aiSearchEndpoint.js +1 -1
  7. package/aiSearchIndex.d.ts +1 -1
  8. package/aiSearchIndex.js +1 -1
  9. package/alertV2.d.ts +1 -1
  10. package/alertV2.js +1 -1
  11. package/disasterRecoveryFailoverGroup.d.ts +1 -1
  12. package/disasterRecoveryFailoverGroup.js +1 -1
  13. package/disasterRecoveryStableUrl.d.ts +33 -1
  14. package/disasterRecoveryStableUrl.d.ts.map +1 -1
  15. package/disasterRecoveryStableUrl.js +5 -1
  16. package/disasterRecoveryStableUrl.js.map +1 -1
  17. package/getAiSearchEndpoint.d.ts +2 -2
  18. package/getAiSearchEndpoint.js +2 -2
  19. package/getAiSearchEndpoints.d.ts +2 -2
  20. package/getAiSearchEndpoints.js +2 -2
  21. package/getAiSearchIndex.d.ts +2 -2
  22. package/getAiSearchIndex.js +2 -2
  23. package/getAiSearchIndexes.d.ts +2 -2
  24. package/getAiSearchIndexes.js +2 -2
  25. package/getAlertV2.d.ts +2 -2
  26. package/getAlertV2.js +2 -2
  27. package/getAlertsV2.d.ts +2 -2
  28. package/getAlertsV2.js +2 -2
  29. package/getDisasterRecoveryFailoverGroup.d.ts +2 -2
  30. package/getDisasterRecoveryFailoverGroup.js +2 -2
  31. package/getDisasterRecoveryFailoverGroups.d.ts +2 -2
  32. package/getDisasterRecoveryFailoverGroups.js +2 -2
  33. package/getDisasterRecoveryStableUrl.d.ts +18 -2
  34. package/getDisasterRecoveryStableUrl.d.ts.map +1 -1
  35. package/getDisasterRecoveryStableUrl.js +2 -2
  36. package/getDisasterRecoveryStableUrl.js.map +1 -1
  37. package/getDisasterRecoveryStableUrls.d.ts +2 -2
  38. package/getDisasterRecoveryStableUrls.js +2 -2
  39. package/getMlflowExperiment.d.ts +3 -0
  40. package/getMlflowExperiment.d.ts.map +1 -1
  41. package/getMlflowExperiment.js +2 -0
  42. package/getMlflowExperiment.js.map +1 -1
  43. package/getPostgresCdfConfig.d.ts +115 -0
  44. package/getPostgresCdfConfig.d.ts.map +1 -0
  45. package/getPostgresCdfConfig.js +89 -0
  46. package/getPostgresCdfConfig.js.map +1 -0
  47. package/getPostgresCdfConfigs.d.ts +97 -0
  48. package/getPostgresCdfConfigs.d.ts.map +1 -0
  49. package/getPostgresCdfConfigs.js +91 -0
  50. package/getPostgresCdfConfigs.js.map +1 -0
  51. package/getPostgresCdfStatus.d.ts +123 -0
  52. package/getPostgresCdfStatus.d.ts.map +1 -0
  53. package/getPostgresCdfStatus.js +89 -0
  54. package/getPostgresCdfStatus.js.map +1 -0
  55. package/getPostgresCdfStatuses.d.ts +97 -0
  56. package/getPostgresCdfStatuses.d.ts.map +1 -0
  57. package/getPostgresCdfStatuses.js +91 -0
  58. package/getPostgresCdfStatuses.js.map +1 -0
  59. package/getSupervisorAgentTool.d.ts +1 -1
  60. package/index.d.ts +15 -0
  61. package/index.d.ts.map +1 -1
  62. package/index.js +22 -5
  63. package/index.js.map +1 -1
  64. package/job.d.ts +3 -0
  65. package/job.d.ts.map +1 -1
  66. package/job.js +2 -0
  67. package/job.js.map +1 -1
  68. package/mlflowExperiment.d.ts +3 -0
  69. package/mlflowExperiment.d.ts.map +1 -1
  70. package/mlflowExperiment.js +2 -0
  71. package/mlflowExperiment.js.map +1 -1
  72. package/mwsWorkspaces.d.ts +3 -3
  73. package/package.json +2 -2
  74. package/postgresCdfConfig.d.ts +188 -0
  75. package/postgresCdfConfig.d.ts.map +1 -0
  76. package/postgresCdfConfig.js +142 -0
  77. package/postgresCdfConfig.js.map +1 -0
  78. package/supervisorAgentTool.d.ts +3 -3
  79. package/types/input.d.ts +149 -13
  80. package/types/input.d.ts.map +1 -1
  81. package/types/output.d.ts +265 -17
  82. package/types/output.d.ts.map +1 -1
@@ -45,6 +45,29 @@ import * as outputs from "./types/output";
45
45
  * },
46
46
  * });
47
47
  * ```
48
+ *
49
+ * Restrict ingress to private connectivity by only allowing requests from registered private endpoints:
50
+ *
51
+ * ```typescript
52
+ * import * as pulumi from "@pulumi/pulumi";
53
+ * import * as databricks from "@pulumi/databricks";
54
+ *
55
+ * const examplePrivateAccessPolicy = new databricks.AccountNetworkPolicy("example_private_access_policy", {
56
+ * networkPolicyId: "example-private-access-policy",
57
+ * ingress: {
58
+ * privateAccess: {
59
+ * restrictionMode: "RESTRICTED_ACCESS",
60
+ * allowRules: [{
61
+ * origin: {
62
+ * endpoints: {
63
+ * endpointIds: ["example-private-endpoint-id"],
64
+ * },
65
+ * },
66
+ * }],
67
+ * },
68
+ * },
69
+ * });
70
+ * ```
48
71
  */
49
72
  export declare class AccountNetworkPolicy extends pulumi.CustomResource {
50
73
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"accountNetworkPolicy.d.ts","sourceRoot":"","sources":["../accountNetworkPolicy.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,qBAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,yBAAyB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,oBAAoB;IAO1J;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,oBAAoB;IAO/D;;OAEG;IACH,SAAwB,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACzD;;OAEG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,0BAA0B,GAAG,SAAS,CAAC,CAAC;IAC9F;;OAEG;IACH,SAAwB,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,2BAA2B,GAAG,SAAS,CAAC,CAAC;IAChG;;;;OAIG;IACH,SAAwB,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAC5G;;OAEG;IACH,SAAwB,eAAe,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAE3E;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,wBAAwB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAsBjG;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,0BAA0B,GAAG,SAAS,CAAC,CAAC;IACrE;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,2BAA2B,GAAG,SAAS,CAAC,CAAC;IACvE;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IACnF;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CACtD;AAED;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACrC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,0BAA0B,GAAG,SAAS,CAAC,CAAC;IACrE;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,2BAA2B,GAAG,SAAS,CAAC,CAAC;IACvE;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IACnF;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CACtD"}
1
+ {"version":3,"file":"accountNetworkPolicy.d.ts","sourceRoot":"","sources":["../accountNetworkPolicy.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmEG;AACH,qBAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,yBAAyB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,oBAAoB;IAO1J;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,oBAAoB;IAO/D;;OAEG;IACH,SAAwB,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACzD;;OAEG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,0BAA0B,GAAG,SAAS,CAAC,CAAC;IAC9F;;OAEG;IACH,SAAwB,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,2BAA2B,GAAG,SAAS,CAAC,CAAC;IAChG;;;;OAIG;IACH,SAAwB,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAC5G;;OAEG;IACH,SAAwB,eAAe,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAE3E;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,wBAAwB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAsBjG;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,0BAA0B,GAAG,SAAS,CAAC,CAAC;IACrE;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,2BAA2B,GAAG,SAAS,CAAC,CAAC;IACvE;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IACnF;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CACtD;AAED;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACrC;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,0BAA0B,GAAG,SAAS,CAAC,CAAC;IACrE;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,2BAA2B,GAAG,SAAS,CAAC,CAAC;IACvE;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IACnF;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CACtD"}
@@ -72,6 +72,29 @@ const utilities = __importStar(require("./utilities"));
72
72
  * },
73
73
  * });
74
74
  * ```
75
+ *
76
+ * Restrict ingress to private connectivity by only allowing requests from registered private endpoints:
77
+ *
78
+ * ```typescript
79
+ * import * as pulumi from "@pulumi/pulumi";
80
+ * import * as databricks from "@pulumi/databricks";
81
+ *
82
+ * const examplePrivateAccessPolicy = new databricks.AccountNetworkPolicy("example_private_access_policy", {
83
+ * networkPolicyId: "example-private-access-policy",
84
+ * ingress: {
85
+ * privateAccess: {
86
+ * restrictionMode: "RESTRICTED_ACCESS",
87
+ * allowRules: [{
88
+ * origin: {
89
+ * endpoints: {
90
+ * endpointIds: ["example-private-endpoint-id"],
91
+ * },
92
+ * },
93
+ * }],
94
+ * },
95
+ * },
96
+ * });
97
+ * ```
75
98
  */
76
99
  class AccountNetworkPolicy extends pulumi.CustomResource {
77
100
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"accountNetworkPolicy.js","sourceRoot":"","sources":["../accountNetworkPolicy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC3E,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,4DAA4D,CAAC;IAEnG;;;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,oBAAoB,CAAC,YAAY,CAAC;IACrE,CAAC;IAiCD,YAAY,IAAY,EAAE,WAAkE,EAAE,IAAmC;QAC7H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoD,CAAC;YACnE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;SAC9D;aAAM;YACH,MAAM,IAAI,GAAG,WAAmD,CAAC;YACjE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;SAC7D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzE,CAAC;;AA/EL,oDAgFC"}
1
+ {"version":3,"file":"accountNetworkPolicy.js","sourceRoot":"","sources":["../accountNetworkPolicy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmEG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC3E,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,4DAA4D,CAAC;IAEnG;;;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,oBAAoB,CAAC,YAAY,CAAC;IACrE,CAAC;IAiCD,YAAY,IAAY,EAAE,WAAkE,EAAE,IAAmC;QAC7H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoD,CAAC;YACnE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;SAC9D;aAAM;YACH,MAAM,IAAI,GAAG,WAAmD,CAAC;YACjE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;SAC7D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzE,CAAC;;AA/EL,oDAgFC"}
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
6
  *
7
7
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
8
8
  *
@@ -29,7 +29,7 @@ exports.AiSearchEndpoint = void 0;
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
35
35
  *
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
6
  *
7
7
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
8
8
  *
package/aiSearchIndex.js CHANGED
@@ -29,7 +29,7 @@ exports.AiSearchIndex = void 0;
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
35
35
  *
package/alertV2.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
6
  *
7
7
  * [API Documentation](https://docs.databricks.com/api/workspace/alertsv2)
8
8
  *
package/alertV2.js CHANGED
@@ -29,7 +29,7 @@ exports.AlertV2 = void 0;
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/workspace/alertsv2)
35
35
  *
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
6
  *
7
7
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
8
8
  *
@@ -29,7 +29,7 @@ exports.DisasterRecoveryFailoverGroup = void 0;
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
35
35
  *
@@ -1,6 +1,6 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
3
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
4
4
  *
5
5
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
6
6
  *
@@ -40,6 +40,15 @@ export declare class DisasterRecoveryStableUrl extends pulumi.CustomResource {
40
40
  * when multiple copies of the Pulumi SDK have been loaded into the same process.
41
41
  */
42
42
  static isInstance(obj: any): obj is DisasterRecoveryStableUrl;
43
+ /**
44
+ * (string) - The workspace this stable URL currently routes to. Set to
45
+ * `initialWorkspaceId` at creation, advanced to the failover group's primary
46
+ * while attached (including across a failover), and preserved when the stable
47
+ * URL is detached from its failover group. Read this to see where an unattached
48
+ * stable URL points: after a failover followed by a detach it reflects the
49
+ * post-failover primary, not `initialWorkspaceId`
50
+ */
51
+ readonly effectiveWorkspaceId: pulumi.Output<string>;
43
52
  /**
44
53
  * (string) - Fully qualified resource name of the FailoverGroup this stable URL is
45
54
  * currently linked to, in the format
@@ -67,6 +76,13 @@ export declare class DisasterRecoveryStableUrl extends pulumi.CustomResource {
67
76
  * resource name as {parent}/stable-urls/{stable_url_id}
68
77
  */
69
78
  readonly stableUrlId: pulumi.Output<string>;
79
+ /**
80
+ * (string) - The stable workspace ID for this stable URL. Generated on creation and
81
+ * immutable thereafter; identifies the URL across failovers and is the same
82
+ * value embedded in the `url` (as the `w=` query parameter for SPOG URLs,
83
+ * or in the `conn-<id>` hostname for Private-Link URLs)
84
+ */
85
+ readonly stableWorkspaceId: pulumi.Output<string>;
70
86
  /**
71
87
  * (string) - The stable URL endpoint. Generated on creation and
72
88
  * immutable thereafter. For non-Private-Link workspaces this is
@@ -87,6 +103,15 @@ export declare class DisasterRecoveryStableUrl extends pulumi.CustomResource {
87
103
  * Input properties used for looking up and filtering DisasterRecoveryStableUrl resources.
88
104
  */
89
105
  export interface DisasterRecoveryStableUrlState {
106
+ /**
107
+ * (string) - The workspace this stable URL currently routes to. Set to
108
+ * `initialWorkspaceId` at creation, advanced to the failover group's primary
109
+ * while attached (including across a failover), and preserved when the stable
110
+ * URL is detached from its failover group. Read this to see where an unattached
111
+ * stable URL points: after a failover followed by a detach it reflects the
112
+ * post-failover primary, not `initialWorkspaceId`
113
+ */
114
+ effectiveWorkspaceId?: pulumi.Input<string | undefined>;
90
115
  /**
91
116
  * (string) - Fully qualified resource name of the FailoverGroup this stable URL is
92
117
  * currently linked to, in the format
@@ -114,6 +139,13 @@ export interface DisasterRecoveryStableUrlState {
114
139
  * resource name as {parent}/stable-urls/{stable_url_id}
115
140
  */
116
141
  stableUrlId?: pulumi.Input<string | undefined>;
142
+ /**
143
+ * (string) - The stable workspace ID for this stable URL. Generated on creation and
144
+ * immutable thereafter; identifies the URL across failovers and is the same
145
+ * value embedded in the `url` (as the `w=` query parameter for SPOG URLs,
146
+ * or in the `conn-<id>` hostname for Private-Link URLs)
147
+ */
148
+ stableWorkspaceId?: pulumi.Input<string | undefined>;
117
149
  /**
118
150
  * (string) - The stable URL endpoint. Generated on creation and
119
151
  * immutable thereafter. For non-Private-Link workspaces this is
@@ -1 +1 @@
1
- {"version":3,"file":"disasterRecoveryStableUrl.d.ts","sourceRoot":"","sources":["../disasterRecoveryStableUrl.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,qBAAa,yBAA0B,SAAQ,MAAM,CAAC,cAAc;IAChE;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,8BAA8B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,yBAAyB;IAOpK;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,yBAAyB;IAOpE;;;;;OAKG;IACH,SAAgC,iBAAiB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACzE;;;;OAIG;IACH,SAAwB,kBAAkB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAClE;;;OAGG;IACH,SAAgC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC5D;;OAEG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACtD;;;OAGG;IACH,SAAwB,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC3D;;;;;OAKG;IACH,SAAgC,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAE3D;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,6BAA6B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAiCrG;AAED;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;;;;OAKG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACrD;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACtD;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1C;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/C;;;;;OAKG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC1C;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACzC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC7B;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACrC"}
1
+ {"version":3,"file":"disasterRecoveryStableUrl.d.ts","sourceRoot":"","sources":["../disasterRecoveryStableUrl.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,qBAAa,yBAA0B,SAAQ,MAAM,CAAC,cAAc;IAChE;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,8BAA8B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,yBAAyB;IAOpK;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,yBAAyB;IAOpE;;;;;;;OAOG;IACH,SAAgC,oBAAoB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC5E;;;;;OAKG;IACH,SAAgC,iBAAiB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACzE;;;;OAIG;IACH,SAAwB,kBAAkB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAClE;;;OAGG;IACH,SAAgC,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC5D;;OAEG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACtD;;;OAGG;IACH,SAAwB,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC3D;;;;;OAKG;IACH,SAAgC,iBAAiB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACzE;;;;;OAKG;IACH,SAAgC,GAAG,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAE3D;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,6BAA6B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAqCrG;AAED;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC3C;;;;;;;OAOG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxD;;;;;OAKG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACrD;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACtD;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1C;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/C;;;;;OAKG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACrD;;;;;OAKG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC1C;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;;;OAIG;IACH,kBAAkB,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACzC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC7B;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACrC"}
@@ -29,7 +29,7 @@ exports.DisasterRecoveryStableUrl = void 0;
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
35
35
  *
@@ -83,11 +83,13 @@ class DisasterRecoveryStableUrl extends pulumi.CustomResource {
83
83
  opts = opts || {};
84
84
  if (opts.id) {
85
85
  const state = argsOrState;
86
+ resourceInputs["effectiveWorkspaceId"] = state?.effectiveWorkspaceId;
86
87
  resourceInputs["failoverGroupName"] = state?.failoverGroupName;
87
88
  resourceInputs["initialWorkspaceId"] = state?.initialWorkspaceId;
88
89
  resourceInputs["name"] = state?.name;
89
90
  resourceInputs["parent"] = state?.parent;
90
91
  resourceInputs["stableUrlId"] = state?.stableUrlId;
92
+ resourceInputs["stableWorkspaceId"] = state?.stableWorkspaceId;
91
93
  resourceInputs["url"] = state?.url;
92
94
  }
93
95
  else {
@@ -104,8 +106,10 @@ class DisasterRecoveryStableUrl extends pulumi.CustomResource {
104
106
  resourceInputs["initialWorkspaceId"] = args?.initialWorkspaceId;
105
107
  resourceInputs["parent"] = args?.parent;
106
108
  resourceInputs["stableUrlId"] = args?.stableUrlId;
109
+ resourceInputs["effectiveWorkspaceId"] = undefined /*out*/;
107
110
  resourceInputs["failoverGroupName"] = undefined /*out*/;
108
111
  resourceInputs["name"] = undefined /*out*/;
112
+ resourceInputs["stableWorkspaceId"] = undefined /*out*/;
109
113
  resourceInputs["url"] = undefined /*out*/;
110
114
  }
111
115
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
@@ -1 +1 @@
1
- {"version":3,"file":"disasterRecoveryStableUrl.js","sourceRoot":"","sources":["../disasterRecoveryStableUrl.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;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;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,sEAAsE,CAAC;IAE7G;;;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;IA6CD,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,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;YAC/D,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;SACtC;aAAM;YACH,MAAM,IAAI,GAAG,WAAwD,CAAC;YACtE,IAAI,IAAI,EAAE,kBAAkB,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,gDAAgD,CAAC,CAAC;aACrE;YACD,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;YAChE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,mBAAmB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,yBAAyB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9E,CAAC;;AAtGL,8DAuGC"}
1
+ {"version":3,"file":"disasterRecoveryStableUrl.js","sourceRoot":"","sources":["../disasterRecoveryStableUrl.ts"],"names":[],"mappings":"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"}
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
6
  *
7
7
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
8
8
  *
@@ -118,7 +118,7 @@ export interface GetAiSearchEndpointResult {
118
118
  readonly usagePolicyId: string;
119
119
  }
120
120
  /**
121
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
121
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
122
122
  *
123
123
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
124
124
  *
@@ -29,7 +29,7 @@ exports.getAiSearchEndpointOutput = exports.getAiSearchEndpoint = void 0;
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
35
35
  *
@@ -57,7 +57,7 @@ function getAiSearchEndpoint(args, opts) {
57
57
  }
58
58
  exports.getAiSearchEndpoint = getAiSearchEndpoint;
59
59
  /**
60
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
60
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
61
61
  *
62
62
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
63
63
  *
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
6
  *
7
7
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
8
8
  *
@@ -54,7 +54,7 @@ export interface GetAiSearchEndpointsResult {
54
54
  readonly providerConfig?: outputs.GetAiSearchEndpointsProviderConfig;
55
55
  }
56
56
  /**
57
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
57
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
58
58
  *
59
59
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
60
60
  *
@@ -29,7 +29,7 @@ exports.getAiSearchEndpointsOutput = exports.getAiSearchEndpoints = void 0;
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
35
35
  *
@@ -56,7 +56,7 @@ function getAiSearchEndpoints(args, opts) {
56
56
  }
57
57
  exports.getAiSearchEndpoints = getAiSearchEndpoints;
58
58
  /**
59
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
59
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
60
60
  *
61
61
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
62
62
  *
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
6
  *
7
7
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
8
8
  *
@@ -78,7 +78,7 @@ export interface GetAiSearchIndexResult {
78
78
  readonly status: outputs.GetAiSearchIndexStatus;
79
79
  }
80
80
  /**
81
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
81
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
82
82
  *
83
83
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
84
84
  *
@@ -29,7 +29,7 @@ exports.getAiSearchIndexOutput = exports.getAiSearchIndex = void 0;
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
35
35
  *
@@ -48,7 +48,7 @@ function getAiSearchIndex(args, opts) {
48
48
  }
49
49
  exports.getAiSearchIndex = getAiSearchIndex;
50
50
  /**
51
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
51
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
52
52
  *
53
53
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
54
54
  *
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
6
  *
7
7
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
8
8
  *
@@ -47,7 +47,7 @@ export interface GetAiSearchIndexesResult {
47
47
  readonly providerConfig?: outputs.GetAiSearchIndexesProviderConfig;
48
48
  }
49
49
  /**
50
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
50
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
51
51
  *
52
52
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
53
53
  *
@@ -29,7 +29,7 @@ exports.getAiSearchIndexesOutput = exports.getAiSearchIndexes = void 0;
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
35
35
  *
@@ -49,7 +49,7 @@ function getAiSearchIndexes(args, opts) {
49
49
  }
50
50
  exports.getAiSearchIndexes = getAiSearchIndexes;
51
51
  /**
52
- * [![Public Beta](https://img.shields.io/badge/Release_Stage-Public_Beta-orange)](https://docs.databricks.com/aws/en/release-notes/release-types)
52
+ * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
53
53
  *
54
54
  * [API Documentation](https://docs.databricks.com/api/workspace/aisearch)
55
55
  *
package/getAlertV2.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
6
  *
7
7
  * [API Documentation](https://docs.databricks.com/api/workspace/alertsv2)
8
8
  *
@@ -121,7 +121,7 @@ export interface GetAlertV2Result {
121
121
  readonly warehouseId: string;
122
122
  }
123
123
  /**
124
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
124
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
125
125
  *
126
126
  * [API Documentation](https://docs.databricks.com/api/workspace/alertsv2)
127
127
  *
package/getAlertV2.js CHANGED
@@ -29,7 +29,7 @@ exports.getAlertV2Output = exports.getAlertV2 = void 0;
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/workspace/alertsv2)
35
35
  *
@@ -64,7 +64,7 @@ function getAlertV2(args, opts) {
64
64
  }
65
65
  exports.getAlertV2 = getAlertV2;
66
66
  /**
67
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
67
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
68
68
  *
69
69
  * [API Documentation](https://docs.databricks.com/api/workspace/alertsv2)
70
70
  *
package/getAlertsV2.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
6
6
  *
7
7
  * [API Documentation](https://docs.databricks.com/api/workspace/alertsv2)
8
8
  *
@@ -48,7 +48,7 @@ export interface GetAlertsV2Result {
48
48
  readonly providerConfig?: outputs.GetAlertsV2ProviderConfig;
49
49
  }
50
50
  /**
51
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
51
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
52
52
  *
53
53
  * [API Documentation](https://docs.databricks.com/api/workspace/alertsv2)
54
54
  *
package/getAlertsV2.js CHANGED
@@ -29,7 +29,7 @@ exports.getAlertsV2Output = exports.getAlertsV2 = void 0;
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/workspace/alertsv2)
35
35
  *
@@ -61,7 +61,7 @@ function getAlertsV2(args, opts) {
61
61
  }
62
62
  exports.getAlertsV2 = getAlertsV2;
63
63
  /**
64
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
64
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
65
65
  *
66
66
  * [API Documentation](https://docs.databricks.com/api/workspace/alertsv2)
67
67
  *
@@ -1,7 +1,7 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  import * as outputs from "./types/output";
3
3
  /**
4
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
4
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
5
  *
6
6
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
7
7
  *
@@ -89,7 +89,7 @@ export interface GetDisasterRecoveryFailoverGroupResult {
89
89
  readonly workspaceSets: outputs.GetDisasterRecoveryFailoverGroupWorkspaceSet[];
90
90
  }
91
91
  /**
92
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
92
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
93
93
  *
94
94
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
95
95
  *
@@ -29,7 +29,7 @@ exports.getDisasterRecoveryFailoverGroupOutput = exports.getDisasterRecoveryFail
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
35
35
  *
@@ -58,7 +58,7 @@ function getDisasterRecoveryFailoverGroup(args, opts) {
58
58
  }
59
59
  exports.getDisasterRecoveryFailoverGroup = getDisasterRecoveryFailoverGroup;
60
60
  /**
61
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
61
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
62
62
  *
63
63
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
64
64
  *
@@ -1,7 +1,7 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  import * as outputs from "./types/output";
3
3
  /**
4
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
4
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
5
5
  *
6
6
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
7
7
  *
@@ -52,7 +52,7 @@ export interface GetDisasterRecoveryFailoverGroupsResult {
52
52
  readonly parent: string;
53
53
  }
54
54
  /**
55
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
55
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
56
56
  *
57
57
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
58
58
  *
@@ -29,7 +29,7 @@ exports.getDisasterRecoveryFailoverGroupsOutput = exports.getDisasterRecoveryFai
29
29
  const pulumi = __importStar(require("@pulumi/pulumi"));
30
30
  const utilities = __importStar(require("./utilities"));
31
31
  /**
32
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
32
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
33
33
  *
34
34
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
35
35
  *
@@ -57,7 +57,7 @@ function getDisasterRecoveryFailoverGroups(args, opts) {
57
57
  }
58
58
  exports.getDisasterRecoveryFailoverGroups = getDisasterRecoveryFailoverGroups;
59
59
  /**
60
- * [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
60
+ * [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
61
61
  *
62
62
  * [API Documentation](https://docs.databricks.com/api/account/disasterrecovery)
63
63
  *