@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/package.json +2 -2
- package/platform/getInfraVariableSet.d.ts +119 -68
- package/platform/getInfraVariableSet.d.ts.map +1 -1
- package/platform/getInfraVariableSet.js +102 -26
- package/platform/getInfraVariableSet.js.map +1 -1
- package/types/input.d.ts +0 -128
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +14 -14
- package/types/output.d.ts.map +1 -1
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.
|
|
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
|
|
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
|
|
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.
|
|
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
|
|
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
|
|
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
|
|
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
|
|
9630
|
+
* Repository branch is the name of the branch the variables are fetched from.
|
|
9631
9631
|
*/
|
|
9632
|
-
repositoryBranch
|
|
9632
|
+
repositoryBranch: string;
|
|
9633
9633
|
/**
|
|
9634
|
-
* Repository commit is tag
|
|
9634
|
+
* Repository commit is the tag the variables are fetched from.
|
|
9635
9635
|
*/
|
|
9636
|
-
repositoryCommit
|
|
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
|
|
9644
|
+
repositoryPath: string;
|
|
9645
9645
|
/**
|
|
9646
|
-
* Repository
|
|
9646
|
+
* Repository sha is the commit SHA the variables are fetched from.
|
|
9647
9647
|
*/
|
|
9648
|
-
repositorySha
|
|
9648
|
+
repositorySha: string;
|
|
9649
9649
|
}
|
|
9650
9650
|
interface GetInfrastructureGitDetails {
|
|
9651
9651
|
/**
|