@pulumi/harness 0.9.1 → 0.9.2

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
@@ -6729,6 +6729,78 @@ export declare namespace platform {
6729
6729
  interface GetSecretTextAdditionalMetadataValue {
6730
6730
  version?: string;
6731
6731
  }
6732
+ interface GetSecretWinrmKerbero {
6733
+ /**
6734
+ * Kerberos principal.
6735
+ */
6736
+ principal: string;
6737
+ /**
6738
+ * Kerberos realm.
6739
+ */
6740
+ realm: string;
6741
+ /**
6742
+ * Skip certificate verification.
6743
+ */
6744
+ skipCertCheck: boolean;
6745
+ /**
6746
+ * Method to generate TGT (Ticket Granting Ticket).
6747
+ */
6748
+ tgtGenerationMethod: string;
6749
+ /**
6750
+ * TGT generation using key tab file.
6751
+ */
6752
+ tgtKeyTabFilePathSpecs: outputs.platform.GetSecretWinrmKerberoTgtKeyTabFilePathSpec[];
6753
+ /**
6754
+ * TGT generation using password.
6755
+ */
6756
+ tgtPasswordSpecs: outputs.platform.GetSecretWinrmKerberoTgtPasswordSpec[];
6757
+ /**
6758
+ * Use no profile.
6759
+ */
6760
+ useNoProfile: boolean;
6761
+ /**
6762
+ * Use SSL/TLS for WinRM communication.
6763
+ */
6764
+ useSsl: boolean;
6765
+ }
6766
+ interface GetSecretWinrmKerberoTgtKeyTabFilePathSpec {
6767
+ /**
6768
+ * Path to the key tab file.
6769
+ */
6770
+ keyPath: string;
6771
+ }
6772
+ interface GetSecretWinrmKerberoTgtPasswordSpec {
6773
+ /**
6774
+ * Reference to a secret containing the password.
6775
+ */
6776
+ passwordRef: string;
6777
+ }
6778
+ interface GetSecretWinrmNtlm {
6779
+ /**
6780
+ * Domain name for NTLM authentication.
6781
+ */
6782
+ domain: string;
6783
+ /**
6784
+ * Reference to a secret containing the password to use for authentication.
6785
+ */
6786
+ passwordRef: string;
6787
+ /**
6788
+ * Skip certificate verification.
6789
+ */
6790
+ skipCertCheck: boolean;
6791
+ /**
6792
+ * Use no profile.
6793
+ */
6794
+ useNoProfile: boolean;
6795
+ /**
6796
+ * Use SSL/TLS for WinRM communication.
6797
+ */
6798
+ useSsl: boolean;
6799
+ /**
6800
+ * Username to use for authentication.
6801
+ */
6802
+ username: string;
6803
+ }
6732
6804
  interface GetServiceGitDetails {
6733
6805
  /**
6734
6806
  * Name of the branch.
@@ -35324,6 +35396,78 @@ export declare namespace platform {
35324
35396
  interface SecretTextAdditionalMetadataValue {
35325
35397
  version?: string;
35326
35398
  }
35399
+ interface SecretWinrmKerberos {
35400
+ /**
35401
+ * Kerberos principal.
35402
+ */
35403
+ principal: string;
35404
+ /**
35405
+ * Kerberos realm.
35406
+ */
35407
+ realm: string;
35408
+ /**
35409
+ * Skip certificate verification.
35410
+ */
35411
+ skipCertCheck?: boolean;
35412
+ /**
35413
+ * Method to generate TGT (Ticket Granting Ticket).
35414
+ */
35415
+ tgtGenerationMethod?: string;
35416
+ /**
35417
+ * TGT generation using key tab file.
35418
+ */
35419
+ tgtKeyTabFilePathSpec?: outputs.platform.SecretWinrmKerberosTgtKeyTabFilePathSpec;
35420
+ /**
35421
+ * TGT generation using password.
35422
+ */
35423
+ tgtPasswordSpec?: outputs.platform.SecretWinrmKerberosTgtPasswordSpec;
35424
+ /**
35425
+ * Use no profile.
35426
+ */
35427
+ useNoProfile?: boolean;
35428
+ /**
35429
+ * Use SSL/TLS for WinRM communication.
35430
+ */
35431
+ useSsl?: boolean;
35432
+ }
35433
+ interface SecretWinrmKerberosTgtKeyTabFilePathSpec {
35434
+ /**
35435
+ * Path to the key tab file.
35436
+ */
35437
+ keyPath: string;
35438
+ }
35439
+ interface SecretWinrmKerberosTgtPasswordSpec {
35440
+ /**
35441
+ * Reference to a secret containing the password. 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}.
35442
+ */
35443
+ passwordRef: string;
35444
+ }
35445
+ interface SecretWinrmNtlm {
35446
+ /**
35447
+ * Domain name for NTLM authentication.
35448
+ */
35449
+ domain?: string;
35450
+ /**
35451
+ * Reference to a secret containing the password 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}.
35452
+ */
35453
+ passwordRef: string;
35454
+ /**
35455
+ * Skip certificate verification.
35456
+ */
35457
+ skipCertCheck?: boolean;
35458
+ /**
35459
+ * Use no profile.
35460
+ */
35461
+ useNoProfile?: boolean;
35462
+ /**
35463
+ * Use SSL/TLS for WinRM communication.
35464
+ */
35465
+ useSsl?: boolean;
35466
+ /**
35467
+ * Username to use for authentication.
35468
+ */
35469
+ username: string;
35470
+ }
35327
35471
  interface ServiceGitDetails {
35328
35472
  /**
35329
35473
  * Name of the default branch (this checks out a new branch titled by branch_name).