@pulumi/harness 0.11.3 → 0.11.4

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 (52) hide show
  1. package/package.json +2 -2
  2. package/platform/dbSchema.d.ts +32 -0
  3. package/platform/dbSchema.js +22 -0
  4. package/platform/dbSchema.js.map +1 -1
  5. package/platform/delegatetoken.js +3 -1
  6. package/platform/delegatetoken.js.map +1 -1
  7. package/platform/getDbSchema.d.ts +12 -0
  8. package/platform/getDbSchema.js +2 -0
  9. package/platform/getDbSchema.js.map +1 -1
  10. package/platform/getGitopsCluster.d.ts +0 -45
  11. package/platform/getGitopsCluster.js.map +1 -1
  12. package/platform/getInfraProvider.d.ts +87 -0
  13. package/platform/getInfraProvider.js +54 -0
  14. package/platform/getInfraProvider.js.map +1 -0
  15. package/platform/getInfraProviderSigningKey.d.ts +86 -0
  16. package/platform/getInfraProviderSigningKey.js +54 -0
  17. package/platform/getInfraProviderSigningKey.js.map +1 -0
  18. package/platform/getInfraProviderSigningKeys.d.ts +45 -0
  19. package/platform/getInfraProviderSigningKeys.js +46 -0
  20. package/platform/getInfraProviderSigningKeys.js.map +1 -0
  21. package/platform/getInfraProviderVersion.d.ts +88 -0
  22. package/platform/getInfraProviderVersion.js +58 -0
  23. package/platform/getInfraProviderVersion.js.map +1 -0
  24. package/platform/getInfraProviderVersions.d.ts +93 -0
  25. package/platform/getInfraProviderVersions.js +66 -0
  26. package/platform/getInfraProviderVersions.js.map +1 -0
  27. package/platform/getInfraProviders.d.ts +45 -0
  28. package/platform/getInfraProviders.js +46 -0
  29. package/platform/getInfraProviders.js.map +1 -0
  30. package/platform/index.d.ts +33 -0
  31. package/platform/index.js +48 -5
  32. package/platform/index.js.map +1 -1
  33. package/platform/infraProvider.d.ts +125 -0
  34. package/platform/infraProvider.js +93 -0
  35. package/platform/infraProvider.js.map +1 -0
  36. package/platform/infraProviderSigningKey.d.ts +144 -0
  37. package/platform/infraProviderSigningKey.js +117 -0
  38. package/platform/infraProviderSigningKey.js.map +1 -0
  39. package/platform/infraProviderVersion.d.ts +124 -0
  40. package/platform/infraProviderVersion.js +107 -0
  41. package/platform/infraProviderVersion.js.map +1 -0
  42. package/platform/infraProviderVersionFile.d.ts +171 -0
  43. package/platform/infraProviderVersionFile.js +145 -0
  44. package/platform/infraProviderVersionFile.js.map +1 -0
  45. package/platform/infraProviderVersionPublish.d.ts +79 -0
  46. package/platform/infraProviderVersionPublish.js +70 -0
  47. package/platform/infraProviderVersionPublish.js.map +1 -0
  48. package/platform/workspace.d.ts +39 -17
  49. package/platform/workspace.js +6 -14
  50. package/platform/workspace.js.map +1 -1
  51. package/types/input.d.ts +39 -3
  52. package/types/output.d.ts +154 -2
package/types/output.d.ts CHANGED
@@ -1094,7 +1094,7 @@ export declare namespace autostopping {
1094
1094
  /**
1095
1095
  * Ids of instances that needs to be managed using the AutoStopping rules
1096
1096
  */
1097
- vmIds: string[];
1097
+ vmIds?: string[];
1098
1098
  /**
1099
1099
  * Zones of instances that needs to be managed using the AutoStopping rules
1100
1100
  */
@@ -1430,7 +1430,7 @@ export declare namespace autostopping {
1430
1430
  /**
1431
1431
  * Ids of instances that needs to be managed using the AutoStopping rules
1432
1432
  */
1433
- vmIds: string[];
1433
+ vmIds?: string[];
1434
1434
  /**
1435
1435
  * Zones of instances that needs to be managed using the AutoStopping rules
1436
1436
  */
@@ -3198,6 +3198,10 @@ export declare namespace platform {
3198
3198
  * Authentication types for JDBC connector
3199
3199
  */
3200
3200
  authType?: string;
3201
+ /**
3202
+ * Authenticate using key pair.
3203
+ */
3204
+ keyPair?: outputs.platform.ConnectorJdbcCredentialsKeyPair;
3201
3205
  /**
3202
3206
  * 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}.
3203
3207
  */
@@ -3219,6 +3223,24 @@ export declare namespace platform {
3219
3223
  */
3220
3224
  usernameRef?: string;
3221
3225
  }
3226
+ interface ConnectorJdbcCredentialsKeyPair {
3227
+ /**
3228
+ * Reference to a secret containing the private key file 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}.
3229
+ */
3230
+ privateKeyFileRef: string;
3231
+ /**
3232
+ * Reference to a secret containing the passphrase for the private key file. 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}.
3233
+ */
3234
+ privateKeyPassphraseRef?: string;
3235
+ /**
3236
+ * Username to use for authentication.
3237
+ */
3238
+ username?: string;
3239
+ /**
3240
+ * Reference to a secret containing the username 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}.
3241
+ */
3242
+ usernameRef?: string;
3243
+ }
3222
3244
  interface ConnectorJdbcCredentialsServiceAccount {
3223
3245
  /**
3224
3246
  * 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}.
@@ -4296,6 +4318,10 @@ export declare namespace platform {
4296
4318
  * Authentication types for JDBC connector
4297
4319
  */
4298
4320
  authType: string;
4321
+ /**
4322
+ * Authenticate using key pair.
4323
+ */
4324
+ keyPairs: outputs.platform.GetConnectorJdbcCredentialKeyPair[];
4299
4325
  /**
4300
4326
  * 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}.
4301
4327
  */
@@ -4317,6 +4343,24 @@ export declare namespace platform {
4317
4343
  */
4318
4344
  usernameRef: string;
4319
4345
  }
4346
+ interface GetConnectorJdbcCredentialKeyPair {
4347
+ /**
4348
+ * Reference to a secret containing the private key file 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}.
4349
+ */
4350
+ privateKeyFileRef: string;
4351
+ /**
4352
+ * Reference to a secret containing the passphrase for the private key file. 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}.
4353
+ */
4354
+ privateKeyPassphraseRef: string;
4355
+ /**
4356
+ * Username to use for authentication.
4357
+ */
4358
+ username: string;
4359
+ /**
4360
+ * Reference to a secret containing the username 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}.
4361
+ */
4362
+ usernameRef: string;
4363
+ }
4320
4364
  interface GetConnectorJdbcCredentialServiceAccount {
4321
4365
  /**
4322
4366
  * 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}.
@@ -5963,6 +6007,100 @@ export declare namespace platform {
5963
6007
  */
5964
6008
  updated: number;
5965
6009
  }
6010
+ interface GetInfraProviderSigningKeysSigningKey {
6011
+ /**
6012
+ * ASCII-armored GPG public key.
6013
+ */
6014
+ asciiArmor: string;
6015
+ /**
6016
+ * Creation timestamp.
6017
+ */
6018
+ createdAt: string;
6019
+ /**
6020
+ * Unique identifier of the signing key.
6021
+ */
6022
+ id: string;
6023
+ /**
6024
+ * GPG key ID.
6025
+ */
6026
+ keyId: string;
6027
+ /**
6028
+ * GPG key name.
6029
+ */
6030
+ keyName: string;
6031
+ /**
6032
+ * Last updated timestamp.
6033
+ */
6034
+ updatedAt: string;
6035
+ /**
6036
+ * User who uploaded the key.
6037
+ */
6038
+ user: string;
6039
+ }
6040
+ interface GetInfraProviderVersion {
6041
+ /**
6042
+ * List of uploaded files for this version.
6043
+ */
6044
+ files: string[];
6045
+ /**
6046
+ * Whether the version is synced.
6047
+ */
6048
+ synced: boolean;
6049
+ /**
6050
+ * Version number.
6051
+ */
6052
+ version: string;
6053
+ }
6054
+ interface GetInfraProviderVersionsVersion {
6055
+ /**
6056
+ * Supported platforms.
6057
+ */
6058
+ platforms: outputs.platform.GetInfraProviderVersionsVersionPlatform[];
6059
+ /**
6060
+ * Supported Terraform protocol versions.
6061
+ */
6062
+ protocols: string[];
6063
+ /**
6064
+ * Version number.
6065
+ */
6066
+ version: string;
6067
+ }
6068
+ interface GetInfraProviderVersionsVersionPlatform {
6069
+ /**
6070
+ * Architecture.
6071
+ */
6072
+ arch: string;
6073
+ /**
6074
+ * Operating system.
6075
+ */
6076
+ os: string;
6077
+ }
6078
+ interface GetInfraProvidersProvider {
6079
+ /**
6080
+ * Account that owns the provider.
6081
+ */
6082
+ account: string;
6083
+ /**
6084
+ * Timestamp when the provider was created.
6085
+ */
6086
+ created: number;
6087
+ /**
6088
+ * Description of the provider.
6089
+ */
6090
+ description: string;
6091
+ /**
6092
+ * Unique identifier of the provider.
6093
+ */
6094
+ id: string;
6095
+ /**
6096
+ * Provider type.
6097
+ */
6098
+ type: string;
6099
+ /**
6100
+ * Timestamp when the provider was last updated.
6101
+ */
6102
+ updated: number;
6103
+ }
5966
6104
  interface GetInfraVariableSetConnector {
5967
6105
  /**
5968
6106
  * Connector Ref is the reference to the connector
@@ -34381,6 +34519,20 @@ export declare namespace platform {
34381
34519
  */
34382
34520
  releasePipeline: string;
34383
34521
  }
34522
+ interface InfraProviderVersion {
34523
+ /**
34524
+ * List of uploaded files for this version.
34525
+ */
34526
+ files: string[];
34527
+ /**
34528
+ * Whether the version is synced.
34529
+ */
34530
+ synced: boolean;
34531
+ /**
34532
+ * Version number.
34533
+ */
34534
+ version: string;
34535
+ }
34384
34536
  interface InfraVariableSetConnector {
34385
34537
  /**
34386
34538
  * Connector Ref is the reference to the connector