@pulumi/dbtcloud 1.11.0-alpha.1781074814 → 1.11.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 (2) hide show
  1. package/job.d.ts +3 -3
  2. package/package.json +2 -2
package/job.d.ts CHANGED
@@ -120,7 +120,7 @@ export declare class Job extends pulumi.CustomResource {
120
120
  */
121
121
  readonly compareChangesFlags: pulumi.Output<string>;
122
122
  /**
123
- * List of cost optimization features enabled for this job. Replaces the deprecated `forceNodeSelection`. Valid values: `stateAwareOrchestration`. When `stateAwareOrchestration` is included, SAO is enabled (equivalent to `forceNodeSelection = false`); when empty or unset, SAO is disabled (equivalent to `forceNodeSelection = true`). Requires `dbtVersion` to be set to a Fusion release track (`latest-fusion`, `fusion-stable`, `fusion-extended`, `fusion-nightly`, or `fusion-fallback`) and an account with State-Aware Orchestration available.
123
+ * List of cost optimization features enabled for this job. Replaces the deprecated `forceNodeSelection`. Valid values: `stateAwareOrchestration` and `dbtState`. When `stateAwareOrchestration` is included, SAO is enabled (equivalent to `forceNodeSelection = false`); when empty or unset, SAO is disabled (equivalent to `forceNodeSelection = true`). `dbtState` enables dbt State (the migration path from Select All Optimizations) and, because the dbt platform API gives it precedence, it must be the only feature in the set. SAO requires `dbtVersion` to be set to a Fusion release track (`latest-fusion`, `fusion-stable`, `fusion-extended`, `fusion-nightly`, or `fusion-fallback`) and an account with State-Aware Orchestration available; `dbtState` is environment-independent but requires the account to have dbt State enabled. Neither feature is supported on CI or Merge jobs.
124
124
  */
125
125
  readonly costOptimizationFeatures: pulumi.Output<string[]>;
126
126
  /**
@@ -267,7 +267,7 @@ export interface JobState {
267
267
  */
268
268
  compareChangesFlags?: pulumi.Input<string | undefined>;
269
269
  /**
270
- * List of cost optimization features enabled for this job. Replaces the deprecated `forceNodeSelection`. Valid values: `stateAwareOrchestration`. When `stateAwareOrchestration` is included, SAO is enabled (equivalent to `forceNodeSelection = false`); when empty or unset, SAO is disabled (equivalent to `forceNodeSelection = true`). Requires `dbtVersion` to be set to a Fusion release track (`latest-fusion`, `fusion-stable`, `fusion-extended`, `fusion-nightly`, or `fusion-fallback`) and an account with State-Aware Orchestration available.
270
+ * List of cost optimization features enabled for this job. Replaces the deprecated `forceNodeSelection`. Valid values: `stateAwareOrchestration` and `dbtState`. When `stateAwareOrchestration` is included, SAO is enabled (equivalent to `forceNodeSelection = false`); when empty or unset, SAO is disabled (equivalent to `forceNodeSelection = true`). `dbtState` enables dbt State (the migration path from Select All Optimizations) and, because the dbt platform API gives it precedence, it must be the only feature in the set. SAO requires `dbtVersion` to be set to a Fusion release track (`latest-fusion`, `fusion-stable`, `fusion-extended`, `fusion-nightly`, or `fusion-fallback`) and an account with State-Aware Orchestration available; `dbtState` is environment-independent but requires the account to have dbt State enabled. Neither feature is supported on CI or Merge jobs.
271
271
  */
272
272
  costOptimizationFeatures?: pulumi.Input<pulumi.Input<string>[] | undefined>;
273
273
  /**
@@ -406,7 +406,7 @@ export interface JobArgs {
406
406
  */
407
407
  compareChangesFlags?: pulumi.Input<string | undefined>;
408
408
  /**
409
- * List of cost optimization features enabled for this job. Replaces the deprecated `forceNodeSelection`. Valid values: `stateAwareOrchestration`. When `stateAwareOrchestration` is included, SAO is enabled (equivalent to `forceNodeSelection = false`); when empty or unset, SAO is disabled (equivalent to `forceNodeSelection = true`). Requires `dbtVersion` to be set to a Fusion release track (`latest-fusion`, `fusion-stable`, `fusion-extended`, `fusion-nightly`, or `fusion-fallback`) and an account with State-Aware Orchestration available.
409
+ * List of cost optimization features enabled for this job. Replaces the deprecated `forceNodeSelection`. Valid values: `stateAwareOrchestration` and `dbtState`. When `stateAwareOrchestration` is included, SAO is enabled (equivalent to `forceNodeSelection = false`); when empty or unset, SAO is disabled (equivalent to `forceNodeSelection = true`). `dbtState` enables dbt State (the migration path from Select All Optimizations) and, because the dbt platform API gives it precedence, it must be the only feature in the set. SAO requires `dbtVersion` to be set to a Fusion release track (`latest-fusion`, `fusion-stable`, `fusion-extended`, `fusion-nightly`, or `fusion-fallback`) and an account with State-Aware Orchestration available; `dbtState` is environment-independent but requires the account to have dbt State enabled. Neither feature is supported on CI or Merge jobs.
410
410
  */
411
411
  costOptimizationFeatures?: pulumi.Input<pulumi.Input<string>[] | undefined>;
412
412
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/dbtcloud",
3
- "version": "1.11.0-alpha.1781074814",
3
+ "version": "1.11.0",
4
4
  "description": "A Pulumi package for creating and managing dbt Cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -26,7 +26,7 @@
26
26
  "pulumi": {
27
27
  "resource": true,
28
28
  "name": "dbtcloud",
29
- "version": "1.11.0-alpha.1781074814",
29
+ "version": "1.11.0",
30
30
  "server": "github://api.github.com/pulumi/pulumi-dbtcloud"
31
31
  }
32
32
  }