@pulumi/harness 0.13.0 → 0.13.1
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/dbSchema.d.ts +19 -3
- package/platform/dbSchema.d.ts.map +1 -1
- package/platform/dbSchema.js +16 -0
- package/platform/dbSchema.js.map +1 -1
- package/platform/getDbSchema.d.ts +1 -1
- package/platform/workspace.d.ts +12 -0
- package/platform/workspace.d.ts.map +1 -1
- package/platform/workspace.js +2 -0
- package/platform/workspace.js.map +1 -1
- package/types/input.d.ts +54 -4
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +87 -5
- package/types/output.d.ts.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -5536,6 +5536,10 @@ export declare namespace platform {
|
|
|
5536
5536
|
* Authenticate using key pair.
|
|
5537
5537
|
*/
|
|
5538
5538
|
keyPair?: outputs.platform.ConnectorJdbcCredentialsKeyPair;
|
|
5539
|
+
/**
|
|
5540
|
+
* Authenticate using OIDC.
|
|
5541
|
+
*/
|
|
5542
|
+
oidc?: outputs.platform.ConnectorJdbcCredentialsOidc;
|
|
5539
5543
|
/**
|
|
5540
5544
|
* The reference to the Harness secret containing the password to use for the database server. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
5541
5545
|
*/
|
|
@@ -5575,6 +5579,34 @@ export declare namespace platform {
|
|
|
5575
5579
|
*/
|
|
5576
5580
|
usernameRef?: string;
|
|
5577
5581
|
}
|
|
5582
|
+
interface ConnectorJdbcCredentialsOidc {
|
|
5583
|
+
/**
|
|
5584
|
+
* GCP OIDC configuration.
|
|
5585
|
+
*/
|
|
5586
|
+
gcpOidc: outputs.platform.ConnectorJdbcCredentialsOidcGcpOidc;
|
|
5587
|
+
/**
|
|
5588
|
+
* The OIDC provider type. Currently supported: Gcp.
|
|
5589
|
+
*/
|
|
5590
|
+
providerType: string;
|
|
5591
|
+
}
|
|
5592
|
+
interface ConnectorJdbcCredentialsOidcGcpOidc {
|
|
5593
|
+
/**
|
|
5594
|
+
* The GCP project number (numeric).
|
|
5595
|
+
*/
|
|
5596
|
+
projectNumber: string;
|
|
5597
|
+
/**
|
|
5598
|
+
* The OIDC Provider ID within the pool.
|
|
5599
|
+
*/
|
|
5600
|
+
providerId: string;
|
|
5601
|
+
/**
|
|
5602
|
+
* The GCP Service Account email for impersonation.
|
|
5603
|
+
*/
|
|
5604
|
+
serviceAccountEmail: string;
|
|
5605
|
+
/**
|
|
5606
|
+
* The Workload Identity Pool ID.
|
|
5607
|
+
*/
|
|
5608
|
+
workloadPoolId: string;
|
|
5609
|
+
}
|
|
5578
5610
|
interface ConnectorJdbcCredentialsServiceAccount {
|
|
5579
5611
|
/**
|
|
5580
5612
|
* Reference to a secret containing the token to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
@@ -5637,19 +5669,19 @@ export declare namespace platform {
|
|
|
5637
5669
|
}
|
|
5638
5670
|
interface DbSchemaSchemaSource {
|
|
5639
5671
|
/**
|
|
5640
|
-
* If connector type is artifactory, path to the archive file which contains the changeLog
|
|
5672
|
+
* If connector type is artifactory, path to the archive file which contains the changeLog. Not supported with Harness Code Repository.
|
|
5641
5673
|
*/
|
|
5642
5674
|
archivePath?: string;
|
|
5643
5675
|
/**
|
|
5644
|
-
* Connector to repository at which to find details about the database schema
|
|
5676
|
+
* Connector to repository at which to find details about the database schema. Leave empty when using Harness Code Repository.
|
|
5645
5677
|
*/
|
|
5646
|
-
connector
|
|
5678
|
+
connector?: string;
|
|
5647
5679
|
/**
|
|
5648
5680
|
* The path within the specified repository at which to find details about the database schema
|
|
5649
5681
|
*/
|
|
5650
5682
|
location: string;
|
|
5651
5683
|
/**
|
|
5652
|
-
*
|
|
5684
|
+
* Repository name. Required for Harness Code Repository or when connector connection type is Account.
|
|
5653
5685
|
*/
|
|
5654
5686
|
repo?: string;
|
|
5655
5687
|
/**
|
|
@@ -6668,6 +6700,10 @@ export declare namespace platform {
|
|
|
6668
6700
|
* Authenticate using key pair.
|
|
6669
6701
|
*/
|
|
6670
6702
|
keyPairs: outputs.platform.GetConnectorJdbcCredentialKeyPair[];
|
|
6703
|
+
/**
|
|
6704
|
+
* Authenticate using OIDC.
|
|
6705
|
+
*/
|
|
6706
|
+
oidcs: outputs.platform.GetConnectorJdbcCredentialOidc[];
|
|
6671
6707
|
/**
|
|
6672
6708
|
* The reference to the Harness secret containing the password to use for the database server. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
6673
6709
|
*/
|
|
@@ -6707,6 +6743,34 @@ export declare namespace platform {
|
|
|
6707
6743
|
*/
|
|
6708
6744
|
usernameRef: string;
|
|
6709
6745
|
}
|
|
6746
|
+
interface GetConnectorJdbcCredentialOidc {
|
|
6747
|
+
/**
|
|
6748
|
+
* GCP OIDC configuration.
|
|
6749
|
+
*/
|
|
6750
|
+
gcpOidcs: outputs.platform.GetConnectorJdbcCredentialOidcGcpOidc[];
|
|
6751
|
+
/**
|
|
6752
|
+
* The OIDC provider type.
|
|
6753
|
+
*/
|
|
6754
|
+
providerType: string;
|
|
6755
|
+
}
|
|
6756
|
+
interface GetConnectorJdbcCredentialOidcGcpOidc {
|
|
6757
|
+
/**
|
|
6758
|
+
* The GCP project number (numeric).
|
|
6759
|
+
*/
|
|
6760
|
+
projectNumber: string;
|
|
6761
|
+
/**
|
|
6762
|
+
* The OIDC Provider ID within the pool.
|
|
6763
|
+
*/
|
|
6764
|
+
providerId: string;
|
|
6765
|
+
/**
|
|
6766
|
+
* The GCP Service Account email for impersonation.
|
|
6767
|
+
*/
|
|
6768
|
+
serviceAccountEmail: string;
|
|
6769
|
+
/**
|
|
6770
|
+
* The Workload Identity Pool ID.
|
|
6771
|
+
*/
|
|
6772
|
+
workloadPoolId: string;
|
|
6773
|
+
}
|
|
6710
6774
|
interface GetConnectorJdbcCredentialServiceAccount {
|
|
6711
6775
|
/**
|
|
6712
6776
|
* Reference to a secret containing the token to use for authentication. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
|
|
@@ -6777,7 +6841,7 @@ export declare namespace platform {
|
|
|
6777
6841
|
*/
|
|
6778
6842
|
archivePath: string;
|
|
6779
6843
|
/**
|
|
6780
|
-
* Connector to repository at which to find details about the database schema
|
|
6844
|
+
* Connector to repository at which to find details about the database schema. Empty when using Harness Code Repository.
|
|
6781
6845
|
*/
|
|
6782
6846
|
connector: string;
|
|
6783
6847
|
/**
|
|
@@ -39189,6 +39253,24 @@ export declare namespace platform {
|
|
|
39189
39253
|
*/
|
|
39190
39254
|
valueType: string;
|
|
39191
39255
|
}
|
|
39256
|
+
interface WorkspaceProvisionerConfig {
|
|
39257
|
+
/**
|
|
39258
|
+
* Programming language for AWS CDK (e.g., python, typescript)
|
|
39259
|
+
*/
|
|
39260
|
+
language: string;
|
|
39261
|
+
/**
|
|
39262
|
+
* Version of the programming language (e.g., 3.12 for Python)
|
|
39263
|
+
*/
|
|
39264
|
+
languageVersion: string;
|
|
39265
|
+
/**
|
|
39266
|
+
* Package manager to use (e.g., pip, npm)
|
|
39267
|
+
*/
|
|
39268
|
+
packageManager: string;
|
|
39269
|
+
/**
|
|
39270
|
+
* Version of the package manager (e.g., 25.3 for pip)
|
|
39271
|
+
*/
|
|
39272
|
+
packageManagerVersion: string;
|
|
39273
|
+
}
|
|
39192
39274
|
interface WorkspaceTerraformVariable {
|
|
39193
39275
|
/**
|
|
39194
39276
|
* Key is the identifier for the variable. Must be unique within the workspace.
|