@pulumi/harness 0.15.4 → 0.15.5

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/types/output.d.ts CHANGED
@@ -9595,45 +9595,45 @@ export declare namespace platform {
9595
9595
  }
9596
9596
  interface GetInfraVariableSetEnvironmentVariable {
9597
9597
  /**
9598
- * Key is the identifier for the variable. Must be unique within the Variable Set.
9598
+ * Key is the identifier for the variable.
9599
9599
  */
9600
9600
  key: string;
9601
9601
  /**
9602
- * Value is the value of the variable. For string value types this field should contain the value of the variable. For secret value types this should contain a reference to a valid harness secret.
9602
+ * Value is the value of the variable. For string value types this field contains the value of the variable. For secret value types this contains a reference to a Harness secret.
9603
9603
  */
9604
9604
  value: string;
9605
9605
  /**
9606
- * Value type indicates the value type of the variable. Currently we support string and secret.
9606
+ * Value type indicates the value type of the variable, either string or secret.
9607
9607
  */
9608
9608
  valueType: string;
9609
9609
  }
9610
9610
  interface GetInfraVariableSetTerraformVariable {
9611
9611
  /**
9612
- * Key is the identifier for the variable. Must be unique within the Variable Set.
9612
+ * Key is the identifier for the variable.
9613
9613
  */
9614
9614
  key: string;
9615
9615
  /**
9616
- * Value is the value of the variable. For string value types this field should contain the value of the variable. For secret value types this should contain a reference to a valid harness secret.
9616
+ * Value is the value of the variable. For string value types this field contains the value of the variable. For secret value types this contains a reference to a Harness secret.
9617
9617
  */
9618
9618
  value: string;
9619
9619
  /**
9620
- * Value type indicates the value type of the variable. Currently we support string and secret.
9620
+ * Value type indicates the value type of the variable, either string or secret.
9621
9621
  */
9622
9622
  valueType: string;
9623
9623
  }
9624
9624
  interface GetInfraVariableSetTerraformVariableFile {
9625
9625
  /**
9626
- * Repository is the name of the repository to fetch the code from.
9626
+ * Repository is the name of the repository the variables are fetched from.
9627
9627
  */
9628
9628
  repository: string;
9629
9629
  /**
9630
- * Repository branch is the name of the branch to fetch the variables from. This cannot be set if repository commit or sha is set
9630
+ * Repository branch is the name of the branch the variables are fetched from.
9631
9631
  */
9632
- repositoryBranch?: string;
9632
+ repositoryBranch: string;
9633
9633
  /**
9634
- * Repository commit is tag to fetch the variables from. This cannot be set if repository branch or sha is set.
9634
+ * Repository commit is the tag the variables are fetched from.
9635
9635
  */
9636
- repositoryCommit?: string;
9636
+ repositoryCommit: string;
9637
9637
  /**
9638
9638
  * Repository connector is the reference to the connector used to fetch the variables.
9639
9639
  */
@@ -9641,11 +9641,11 @@ export declare namespace platform {
9641
9641
  /**
9642
9642
  * Repository path is the path in which the variables reside.
9643
9643
  */
9644
- repositoryPath?: string;
9644
+ repositoryPath: string;
9645
9645
  /**
9646
- * Repository commit is SHA to fetch the variables from. This cannot be set if repository branch or commit is set.
9646
+ * Repository sha is the commit SHA the variables are fetched from.
9647
9647
  */
9648
- repositorySha?: string;
9648
+ repositorySha: string;
9649
9649
  }
9650
9650
  interface GetInfrastructureGitDetails {
9651
9651
  /**