@pulumi/harness 0.2.6 → 0.2.7
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/types/input.d.ts +6 -2
- package/types/output.d.ts +10 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/harness",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Harness resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "harness",
|
|
26
|
-
"version": "0.2.
|
|
26
|
+
"version": "0.2.7",
|
|
27
27
|
"server": "github://api.github.com/pulumi"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -3673,6 +3673,10 @@ export declare namespace platform {
|
|
|
3673
3673
|
* Information about the GitOps application's destination.
|
|
3674
3674
|
*/
|
|
3675
3675
|
destinations?: pulumi.Input<pulumi.Input<inputs.platform.GitOpsApplicationsApplicationSpecDestination>[]>;
|
|
3676
|
+
/**
|
|
3677
|
+
* The ArgoCD project name corresponding to this GitOps application. An empty string means that the GitOps application belongs to the default project created by Harness.
|
|
3678
|
+
*/
|
|
3679
|
+
project?: pulumi.Input<string>;
|
|
3676
3680
|
/**
|
|
3677
3681
|
* Contains all information about the source of the GitOps application.
|
|
3678
3682
|
*/
|
|
@@ -5899,11 +5903,11 @@ export declare namespace platform {
|
|
|
5899
5903
|
}
|
|
5900
5904
|
interface ResourceGroupResourceFilterResourceAttributeFilter {
|
|
5901
5905
|
/**
|
|
5902
|
-
* Name of the attribute. Valid values are `category` or `
|
|
5906
|
+
* Name of the attribute. Valid values are `category`, `type` or `labels`.
|
|
5903
5907
|
*/
|
|
5904
5908
|
attributeName?: pulumi.Input<string>;
|
|
5905
5909
|
/**
|
|
5906
|
-
* Value of the attributes.Valid values for `category` are [ARTIFACTORY,CLOUD*COST,CLOUD*PROVIDER,CODE*REPO,MONITORING,SECRET*MANAGER,TICKETING]
|
|
5910
|
+
* Value of the attributes.Valid values for `category` are [ARTIFACTORY,CLOUD*COST,CLOUD*PROVIDER,CODE*REPO,MONITORING,SECRET*MANAGER,TICKETING], for `type` are [Production,PreProduction] and for `labels`, it can be using the syntax 'label:value'
|
|
5907
5911
|
*/
|
|
5908
5912
|
attributeValues?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5909
5913
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -3201,6 +3201,10 @@ export declare namespace platform {
|
|
|
3201
3201
|
* Information about the GitOps application's destination.
|
|
3202
3202
|
*/
|
|
3203
3203
|
destinations: outputs.platform.GetGitopsApplicationsApplicationSpecDestination[];
|
|
3204
|
+
/**
|
|
3205
|
+
* The ArgoCD project name corresponding to this GitOps application. An empty string means that the GitOps application belongs to the default project created by Harness.
|
|
3206
|
+
*/
|
|
3207
|
+
project?: string;
|
|
3204
3208
|
/**
|
|
3205
3209
|
* Contains all information about the source of a GitOps application.
|
|
3206
3210
|
*/
|
|
@@ -5145,6 +5149,10 @@ export declare namespace platform {
|
|
|
5145
5149
|
* Information about the GitOps application's destination.
|
|
5146
5150
|
*/
|
|
5147
5151
|
destinations?: outputs.platform.GitOpsApplicationsApplicationSpecDestination[];
|
|
5152
|
+
/**
|
|
5153
|
+
* The ArgoCD project name corresponding to this GitOps application. An empty string means that the GitOps application belongs to the default project created by Harness.
|
|
5154
|
+
*/
|
|
5155
|
+
project?: string;
|
|
5148
5156
|
/**
|
|
5149
5157
|
* Contains all information about the source of the GitOps application.
|
|
5150
5158
|
*/
|
|
@@ -7371,11 +7379,11 @@ export declare namespace platform {
|
|
|
7371
7379
|
}
|
|
7372
7380
|
interface ResourceGroupResourceFilterResourceAttributeFilter {
|
|
7373
7381
|
/**
|
|
7374
|
-
* Name of the attribute. Valid values are `category` or `
|
|
7382
|
+
* Name of the attribute. Valid values are `category`, `type` or `labels`.
|
|
7375
7383
|
*/
|
|
7376
7384
|
attributeName?: string;
|
|
7377
7385
|
/**
|
|
7378
|
-
* Value of the attributes.Valid values for `category` are [ARTIFACTORY,CLOUD*COST,CLOUD*PROVIDER,CODE*REPO,MONITORING,SECRET*MANAGER,TICKETING]
|
|
7386
|
+
* Value of the attributes.Valid values for `category` are [ARTIFACTORY,CLOUD*COST,CLOUD*PROVIDER,CODE*REPO,MONITORING,SECRET*MANAGER,TICKETING], for `type` are [Production,PreProduction] and for `labels`, it can be using the syntax 'label:value'
|
|
7379
7387
|
*/
|
|
7380
7388
|
attributeValues?: string[];
|
|
7381
7389
|
}
|