freestyle 0.1.51 → 0.1.52
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/README.md +1 -1
- package/index.cjs +1220 -611
- package/index.d.cts +607 -304
- package/index.d.mts +607 -304
- package/index.mjs +1220 -611
- package/package.json +1 -1
package/index.d.cts
CHANGED
|
@@ -8598,48 +8598,54 @@ interface FreestyleError {
|
|
|
8598
8598
|
code: keyof typeof FREESTYLE_ERROR_CODE_MAP;
|
|
8599
8599
|
message: string;
|
|
8600
8600
|
}
|
|
8601
|
-
declare function errorFromJSON(body: object & FreestyleError): Error;
|
|
8601
|
+
declare function errorFromJSON(body: object & FreestyleError, traceId?: string): Error;
|
|
8602
8602
|
declare class GitErrorError extends Error {
|
|
8603
8603
|
body: unknown & FreestyleError;
|
|
8604
|
+
traceId?: string | undefined;
|
|
8604
8605
|
static readonly code: string;
|
|
8605
8606
|
static readonly statusCode: number;
|
|
8606
8607
|
static readonly description: string;
|
|
8607
|
-
constructor(body: unknown & FreestyleError);
|
|
8608
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8608
8609
|
}
|
|
8609
8610
|
declare class BadParseError extends Error {
|
|
8610
8611
|
body: unknown & FreestyleError;
|
|
8612
|
+
traceId?: string | undefined;
|
|
8611
8613
|
static readonly code: string;
|
|
8612
8614
|
static readonly statusCode: number;
|
|
8613
8615
|
static readonly description: string;
|
|
8614
|
-
constructor(body: unknown & FreestyleError);
|
|
8616
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8615
8617
|
}
|
|
8616
8618
|
declare class BadTimestampError extends Error {
|
|
8617
8619
|
body: unknown & FreestyleError;
|
|
8620
|
+
traceId?: string | undefined;
|
|
8618
8621
|
static readonly code: string;
|
|
8619
8622
|
static readonly statusCode: number;
|
|
8620
8623
|
static readonly description: string;
|
|
8621
|
-
constructor(body: unknown & FreestyleError);
|
|
8624
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8622
8625
|
}
|
|
8623
8626
|
declare class BadSignatureError extends Error {
|
|
8624
8627
|
body: unknown & FreestyleError;
|
|
8628
|
+
traceId?: string | undefined;
|
|
8625
8629
|
static readonly code: string;
|
|
8626
8630
|
static readonly statusCode: number;
|
|
8627
8631
|
static readonly description: string;
|
|
8628
|
-
constructor(body: unknown & FreestyleError);
|
|
8632
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8629
8633
|
}
|
|
8630
8634
|
declare class BadHeaderError extends Error {
|
|
8631
8635
|
body: unknown & FreestyleError;
|
|
8636
|
+
traceId?: string | undefined;
|
|
8632
8637
|
static readonly code: string;
|
|
8633
8638
|
static readonly statusCode: number;
|
|
8634
8639
|
static readonly description: string;
|
|
8635
|
-
constructor(body: unknown & FreestyleError);
|
|
8640
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8636
8641
|
}
|
|
8637
8642
|
declare class BadKeyError extends Error {
|
|
8638
8643
|
body: unknown & FreestyleError;
|
|
8644
|
+
traceId?: string | undefined;
|
|
8639
8645
|
static readonly code: string;
|
|
8640
8646
|
static readonly statusCode: number;
|
|
8641
8647
|
static readonly description: string;
|
|
8642
|
-
constructor(body: unknown & FreestyleError);
|
|
8648
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8643
8649
|
}
|
|
8644
8650
|
interface VmOperationDeniedDuringTransactionPublic {
|
|
8645
8651
|
vmId: VmId;
|
|
@@ -8648,10 +8654,11 @@ interface VmOperationDeniedDuringTransactionPublic {
|
|
|
8648
8654
|
}
|
|
8649
8655
|
declare class VmOperationDeniedDuringTransactionError extends Error {
|
|
8650
8656
|
body: VmOperationDeniedDuringTransactionPublic & FreestyleError;
|
|
8657
|
+
traceId?: string | undefined;
|
|
8651
8658
|
static readonly code: string;
|
|
8652
8659
|
static readonly statusCode: number;
|
|
8653
8660
|
static readonly description: string;
|
|
8654
|
-
constructor(body: VmOperationDeniedDuringTransactionPublic & FreestyleError);
|
|
8661
|
+
constructor(body: VmOperationDeniedDuringTransactionPublic & FreestyleError, traceId?: string | undefined);
|
|
8655
8662
|
}
|
|
8656
8663
|
interface VmTransactionIdMismatchPublic {
|
|
8657
8664
|
vmId: VmId;
|
|
@@ -8661,31 +8668,35 @@ interface VmTransactionIdMismatchPublic {
|
|
|
8661
8668
|
}
|
|
8662
8669
|
declare class VmTransactionIdMismatchError extends Error {
|
|
8663
8670
|
body: VmTransactionIdMismatchPublic & FreestyleError;
|
|
8671
|
+
traceId?: string | undefined;
|
|
8664
8672
|
static readonly code: string;
|
|
8665
8673
|
static readonly statusCode: number;
|
|
8666
8674
|
static readonly description: string;
|
|
8667
|
-
constructor(body: VmTransactionIdMismatchPublic & FreestyleError);
|
|
8675
|
+
constructor(body: VmTransactionIdMismatchPublic & FreestyleError, traceId?: string | undefined);
|
|
8668
8676
|
}
|
|
8669
8677
|
declare class VmNotInTransactionError extends Error {
|
|
8670
8678
|
body: unknown & FreestyleError;
|
|
8679
|
+
traceId?: string | undefined;
|
|
8671
8680
|
static readonly code: string;
|
|
8672
8681
|
static readonly statusCode: number;
|
|
8673
8682
|
static readonly description: string;
|
|
8674
|
-
constructor(body: unknown & FreestyleError);
|
|
8683
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8675
8684
|
}
|
|
8676
8685
|
declare class PartitionNotFoundError extends Error {
|
|
8677
8686
|
body: unknown & FreestyleError;
|
|
8687
|
+
traceId?: string | undefined;
|
|
8678
8688
|
static readonly code: string;
|
|
8679
8689
|
static readonly statusCode: number;
|
|
8680
8690
|
static readonly description: string;
|
|
8681
|
-
constructor(body: unknown & FreestyleError);
|
|
8691
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8682
8692
|
}
|
|
8683
8693
|
declare class UserNotFoundError extends Error {
|
|
8684
8694
|
body: unknown & FreestyleError;
|
|
8695
|
+
traceId?: string | undefined;
|
|
8685
8696
|
static readonly code: string;
|
|
8686
8697
|
static readonly statusCode: number;
|
|
8687
8698
|
static readonly description: string;
|
|
8688
|
-
constructor(body: unknown & FreestyleError);
|
|
8699
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8689
8700
|
}
|
|
8690
8701
|
interface PublicUserAlreadyExists {
|
|
8691
8702
|
userName: string;
|
|
@@ -8693,24 +8704,27 @@ interface PublicUserAlreadyExists {
|
|
|
8693
8704
|
}
|
|
8694
8705
|
declare class UserAlreadyExistsError extends Error {
|
|
8695
8706
|
body: PublicUserAlreadyExists & FreestyleError;
|
|
8707
|
+
traceId?: string | undefined;
|
|
8696
8708
|
static readonly code: string;
|
|
8697
8709
|
static readonly statusCode: number;
|
|
8698
8710
|
static readonly description: string;
|
|
8699
|
-
constructor(body: PublicUserAlreadyExists & FreestyleError);
|
|
8711
|
+
constructor(body: PublicUserAlreadyExists & FreestyleError, traceId?: string | undefined);
|
|
8700
8712
|
}
|
|
8701
8713
|
declare class ValidationErrorError extends Error {
|
|
8702
8714
|
body: unknown & FreestyleError;
|
|
8715
|
+
traceId?: string | undefined;
|
|
8703
8716
|
static readonly code: string;
|
|
8704
8717
|
static readonly statusCode: number;
|
|
8705
8718
|
static readonly description: string;
|
|
8706
|
-
constructor(body: unknown & FreestyleError);
|
|
8719
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8707
8720
|
}
|
|
8708
8721
|
declare class GroupNotFoundError extends Error {
|
|
8709
8722
|
body: unknown & FreestyleError;
|
|
8723
|
+
traceId?: string | undefined;
|
|
8710
8724
|
static readonly code: string;
|
|
8711
8725
|
static readonly statusCode: number;
|
|
8712
8726
|
static readonly description: string;
|
|
8713
|
-
constructor(body: unknown & FreestyleError);
|
|
8727
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8714
8728
|
}
|
|
8715
8729
|
interface PublicGroupAlreadyExists {
|
|
8716
8730
|
groupName: string;
|
|
@@ -8718,150 +8732,171 @@ interface PublicGroupAlreadyExists {
|
|
|
8718
8732
|
}
|
|
8719
8733
|
declare class GroupAlreadyExistsError extends Error {
|
|
8720
8734
|
body: PublicGroupAlreadyExists & FreestyleError;
|
|
8735
|
+
traceId?: string | undefined;
|
|
8721
8736
|
static readonly code: string;
|
|
8722
8737
|
static readonly statusCode: number;
|
|
8723
8738
|
static readonly description: string;
|
|
8724
|
-
constructor(body: PublicGroupAlreadyExists & FreestyleError);
|
|
8739
|
+
constructor(body: PublicGroupAlreadyExists & FreestyleError, traceId?: string | undefined);
|
|
8725
8740
|
}
|
|
8726
8741
|
declare class DuplicateUserNameError extends Error {
|
|
8727
8742
|
body: unknown & FreestyleError;
|
|
8743
|
+
traceId?: string | undefined;
|
|
8728
8744
|
static readonly code: string;
|
|
8729
8745
|
static readonly statusCode: number;
|
|
8730
8746
|
static readonly description: string;
|
|
8731
|
-
constructor(body: unknown & FreestyleError);
|
|
8747
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8732
8748
|
}
|
|
8733
8749
|
declare class UserGroupEmptyError extends Error {
|
|
8734
8750
|
body: unknown & FreestyleError;
|
|
8751
|
+
traceId?: string | undefined;
|
|
8735
8752
|
static readonly code: string;
|
|
8736
8753
|
static readonly statusCode: number;
|
|
8737
8754
|
static readonly description: string;
|
|
8738
|
-
constructor(body: unknown & FreestyleError);
|
|
8755
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8739
8756
|
}
|
|
8740
8757
|
declare class UserSystemFlagMismatchError extends Error {
|
|
8741
8758
|
body: unknown & FreestyleError;
|
|
8759
|
+
traceId?: string | undefined;
|
|
8742
8760
|
static readonly code: string;
|
|
8743
8761
|
static readonly statusCode: number;
|
|
8744
8762
|
static readonly description: string;
|
|
8745
|
-
constructor(body: unknown & FreestyleError);
|
|
8763
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8746
8764
|
}
|
|
8747
8765
|
declare class UserUidOutOfRangeError extends Error {
|
|
8748
8766
|
body: unknown & FreestyleError;
|
|
8767
|
+
traceId?: string | undefined;
|
|
8749
8768
|
static readonly code: string;
|
|
8750
8769
|
static readonly statusCode: number;
|
|
8751
8770
|
static readonly description: string;
|
|
8752
|
-
constructor(body: unknown & FreestyleError);
|
|
8771
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8753
8772
|
}
|
|
8754
8773
|
declare class UserHomeInvalidError extends Error {
|
|
8755
8774
|
body: unknown & FreestyleError;
|
|
8775
|
+
traceId?: string | undefined;
|
|
8756
8776
|
static readonly code: string;
|
|
8757
8777
|
static readonly statusCode: number;
|
|
8758
8778
|
static readonly description: string;
|
|
8759
|
-
constructor(body: unknown & FreestyleError);
|
|
8779
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8760
8780
|
}
|
|
8761
8781
|
declare class UserShellInvalidError extends Error {
|
|
8762
8782
|
body: unknown & FreestyleError;
|
|
8783
|
+
traceId?: string | undefined;
|
|
8763
8784
|
static readonly code: string;
|
|
8764
8785
|
static readonly statusCode: number;
|
|
8765
8786
|
static readonly description: string;
|
|
8766
|
-
constructor(body: unknown & FreestyleError);
|
|
8787
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8767
8788
|
}
|
|
8768
8789
|
declare class DuplicateGroupNameError extends Error {
|
|
8769
8790
|
body: unknown & FreestyleError;
|
|
8791
|
+
traceId?: string | undefined;
|
|
8770
8792
|
static readonly code: string;
|
|
8771
8793
|
static readonly statusCode: number;
|
|
8772
8794
|
static readonly description: string;
|
|
8773
|
-
constructor(body: unknown & FreestyleError);
|
|
8795
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8774
8796
|
}
|
|
8775
8797
|
declare class GroupNameReservedError extends Error {
|
|
8776
8798
|
body: unknown & FreestyleError;
|
|
8799
|
+
traceId?: string | undefined;
|
|
8777
8800
|
static readonly code: string;
|
|
8778
8801
|
static readonly statusCode: number;
|
|
8779
8802
|
static readonly description: string;
|
|
8780
|
-
constructor(body: unknown & FreestyleError);
|
|
8803
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8781
8804
|
}
|
|
8782
8805
|
declare class GroupNameInvalidCharsError extends Error {
|
|
8783
8806
|
body: unknown & FreestyleError;
|
|
8807
|
+
traceId?: string | undefined;
|
|
8784
8808
|
static readonly code: string;
|
|
8785
8809
|
static readonly statusCode: number;
|
|
8786
8810
|
static readonly description: string;
|
|
8787
|
-
constructor(body: unknown & FreestyleError);
|
|
8811
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8788
8812
|
}
|
|
8789
8813
|
declare class GroupNameTooLongError extends Error {
|
|
8790
8814
|
body: unknown & FreestyleError;
|
|
8815
|
+
traceId?: string | undefined;
|
|
8791
8816
|
static readonly code: string;
|
|
8792
8817
|
static readonly statusCode: number;
|
|
8793
8818
|
static readonly description: string;
|
|
8794
|
-
constructor(body: unknown & FreestyleError);
|
|
8819
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8795
8820
|
}
|
|
8796
8821
|
declare class GroupNameEmptyError extends Error {
|
|
8797
8822
|
body: unknown & FreestyleError;
|
|
8823
|
+
traceId?: string | undefined;
|
|
8798
8824
|
static readonly code: string;
|
|
8799
8825
|
static readonly statusCode: number;
|
|
8800
8826
|
static readonly description: string;
|
|
8801
|
-
constructor(body: unknown & FreestyleError);
|
|
8827
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8802
8828
|
}
|
|
8803
8829
|
declare class NoDefaultSnapshotAvailableError extends Error {
|
|
8804
8830
|
body: unknown & FreestyleError;
|
|
8831
|
+
traceId?: string | undefined;
|
|
8805
8832
|
static readonly code: string;
|
|
8806
8833
|
static readonly statusCode: number;
|
|
8807
8834
|
static readonly description: string;
|
|
8808
|
-
constructor(body: unknown & FreestyleError);
|
|
8835
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8809
8836
|
}
|
|
8810
8837
|
declare class DockerSnapshotFailedError extends Error {
|
|
8811
8838
|
body: unknown & FreestyleError;
|
|
8839
|
+
traceId?: string | undefined;
|
|
8812
8840
|
static readonly code: string;
|
|
8813
8841
|
static readonly statusCode: number;
|
|
8814
8842
|
static readonly description: string;
|
|
8815
|
-
constructor(body: unknown & FreestyleError);
|
|
8843
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8816
8844
|
}
|
|
8817
8845
|
declare class SetDefaultSnapshotFailedError extends Error {
|
|
8818
8846
|
body: unknown & FreestyleError;
|
|
8847
|
+
traceId?: string | undefined;
|
|
8819
8848
|
static readonly code: string;
|
|
8820
8849
|
static readonly statusCode: number;
|
|
8821
8850
|
static readonly description: string;
|
|
8822
|
-
constructor(body: unknown & FreestyleError);
|
|
8851
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8823
8852
|
}
|
|
8824
8853
|
declare class SnapshotLayerCreationFailedError extends Error {
|
|
8825
8854
|
body: unknown & FreestyleError;
|
|
8855
|
+
traceId?: string | undefined;
|
|
8826
8856
|
static readonly code: string;
|
|
8827
8857
|
static readonly statusCode: number;
|
|
8828
8858
|
static readonly description: string;
|
|
8829
|
-
constructor(body: unknown & FreestyleError);
|
|
8859
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8830
8860
|
}
|
|
8831
8861
|
declare class SnapshotDirNotFoundError extends Error {
|
|
8832
8862
|
body: unknown & FreestyleError;
|
|
8863
|
+
traceId?: string | undefined;
|
|
8833
8864
|
static readonly code: string;
|
|
8834
8865
|
static readonly statusCode: number;
|
|
8835
8866
|
static readonly description: string;
|
|
8836
|
-
constructor(body: unknown & FreestyleError);
|
|
8867
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8837
8868
|
}
|
|
8838
8869
|
declare class SubvolumeCreationFailedError extends Error {
|
|
8839
8870
|
body: unknown & FreestyleError;
|
|
8871
|
+
traceId?: string | undefined;
|
|
8840
8872
|
static readonly code: string;
|
|
8841
8873
|
static readonly statusCode: number;
|
|
8842
8874
|
static readonly description: string;
|
|
8843
|
-
constructor(body: unknown & FreestyleError);
|
|
8875
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8844
8876
|
}
|
|
8845
8877
|
declare class GetDefaultSnapshotFailedError extends Error {
|
|
8846
8878
|
body: unknown & FreestyleError;
|
|
8879
|
+
traceId?: string | undefined;
|
|
8847
8880
|
static readonly code: string;
|
|
8848
8881
|
static readonly statusCode: number;
|
|
8849
8882
|
static readonly description: string;
|
|
8850
|
-
constructor(body: unknown & FreestyleError);
|
|
8883
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8851
8884
|
}
|
|
8852
8885
|
declare class VmNotFoundInFsError extends Error {
|
|
8853
8886
|
body: unknown & FreestyleError;
|
|
8887
|
+
traceId?: string | undefined;
|
|
8854
8888
|
static readonly code: string;
|
|
8855
8889
|
static readonly statusCode: number;
|
|
8856
8890
|
static readonly description: string;
|
|
8857
|
-
constructor(body: unknown & FreestyleError);
|
|
8891
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8858
8892
|
}
|
|
8859
8893
|
declare class DatabaseErrorError extends Error {
|
|
8860
8894
|
body: unknown & FreestyleError;
|
|
8895
|
+
traceId?: string | undefined;
|
|
8861
8896
|
static readonly code: string;
|
|
8862
8897
|
static readonly statusCode: number;
|
|
8863
8898
|
static readonly description: string;
|
|
8864
|
-
constructor(body: unknown & FreestyleError);
|
|
8899
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8865
8900
|
}
|
|
8866
8901
|
interface PublicInvalidVmId {
|
|
8867
8902
|
vmId: string;
|
|
@@ -8870,10 +8905,11 @@ interface PublicInvalidVmId {
|
|
|
8870
8905
|
}
|
|
8871
8906
|
declare class InvalidVmIdError extends Error {
|
|
8872
8907
|
body: PublicInvalidVmId & FreestyleError;
|
|
8908
|
+
traceId?: string | undefined;
|
|
8873
8909
|
static readonly code: string;
|
|
8874
8910
|
static readonly statusCode: number;
|
|
8875
8911
|
static readonly description: string;
|
|
8876
|
-
constructor(body: PublicInvalidVmId & FreestyleError);
|
|
8912
|
+
constructor(body: PublicInvalidVmId & FreestyleError, traceId?: string | undefined);
|
|
8877
8913
|
}
|
|
8878
8914
|
interface PublicVmDeleted {
|
|
8879
8915
|
vmId: VmId;
|
|
@@ -8881,52 +8917,59 @@ interface PublicVmDeleted {
|
|
|
8881
8917
|
}
|
|
8882
8918
|
declare class VmDeletedError extends Error {
|
|
8883
8919
|
body: PublicVmDeleted & FreestyleError;
|
|
8920
|
+
traceId?: string | undefined;
|
|
8884
8921
|
static readonly code: string;
|
|
8885
8922
|
static readonly statusCode: number;
|
|
8886
8923
|
static readonly description: string;
|
|
8887
|
-
constructor(body: PublicVmDeleted & FreestyleError);
|
|
8924
|
+
constructor(body: PublicVmDeleted & FreestyleError, traceId?: string | undefined);
|
|
8888
8925
|
}
|
|
8889
8926
|
declare class VmNotRunningError extends Error {
|
|
8890
8927
|
body: unknown & FreestyleError;
|
|
8928
|
+
traceId?: string | undefined;
|
|
8891
8929
|
static readonly code: string;
|
|
8892
8930
|
static readonly statusCode: number;
|
|
8893
8931
|
static readonly description: string;
|
|
8894
|
-
constructor(body: unknown & FreestyleError);
|
|
8932
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8895
8933
|
}
|
|
8896
8934
|
declare class ActiveTransactionErrorError extends Error {
|
|
8897
8935
|
body: unknown & FreestyleError;
|
|
8936
|
+
traceId?: string | undefined;
|
|
8898
8937
|
static readonly code: string;
|
|
8899
8938
|
static readonly statusCode: number;
|
|
8900
8939
|
static readonly description: string;
|
|
8901
|
-
constructor(body: unknown & FreestyleError);
|
|
8940
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8902
8941
|
}
|
|
8903
8942
|
declare class SwapVmTapError extends Error {
|
|
8904
8943
|
body: unknown & FreestyleError;
|
|
8944
|
+
traceId?: string | undefined;
|
|
8905
8945
|
static readonly code: string;
|
|
8906
8946
|
static readonly statusCode: number;
|
|
8907
8947
|
static readonly description: string;
|
|
8908
|
-
constructor(body: unknown & FreestyleError);
|
|
8948
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8909
8949
|
}
|
|
8910
8950
|
declare class PreassignedVmIdCountMismatchError extends Error {
|
|
8911
8951
|
body: unknown & FreestyleError;
|
|
8952
|
+
traceId?: string | undefined;
|
|
8912
8953
|
static readonly code: string;
|
|
8913
8954
|
static readonly statusCode: number;
|
|
8914
8955
|
static readonly description: string;
|
|
8915
|
-
constructor(body: unknown & FreestyleError);
|
|
8956
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8916
8957
|
}
|
|
8917
8958
|
declare class InternalErrorError extends Error {
|
|
8918
8959
|
body: unknown & FreestyleError;
|
|
8960
|
+
traceId?: string | undefined;
|
|
8919
8961
|
static readonly code: string;
|
|
8920
8962
|
static readonly statusCode: number;
|
|
8921
8963
|
static readonly description: string;
|
|
8922
|
-
constructor(body: unknown & FreestyleError);
|
|
8964
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8923
8965
|
}
|
|
8924
8966
|
declare class RootfsCopyErrorError extends Error {
|
|
8925
8967
|
body: unknown & FreestyleError;
|
|
8968
|
+
traceId?: string | undefined;
|
|
8926
8969
|
static readonly code: string;
|
|
8927
8970
|
static readonly statusCode: number;
|
|
8928
8971
|
static readonly description: string;
|
|
8929
|
-
constructor(body: unknown & FreestyleError);
|
|
8972
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
8930
8973
|
}
|
|
8931
8974
|
interface PublicFileNotFound {
|
|
8932
8975
|
path: string;
|
|
@@ -8934,10 +8977,11 @@ interface PublicFileNotFound {
|
|
|
8934
8977
|
}
|
|
8935
8978
|
declare class FileNotFoundError extends Error {
|
|
8936
8979
|
body: PublicFileNotFound & FreestyleError;
|
|
8980
|
+
traceId?: string | undefined;
|
|
8937
8981
|
static readonly code: string;
|
|
8938
8982
|
static readonly statusCode: number;
|
|
8939
8983
|
static readonly description: string;
|
|
8940
|
-
constructor(body: PublicFileNotFound & FreestyleError);
|
|
8984
|
+
constructor(body: PublicFileNotFound & FreestyleError, traceId?: string | undefined);
|
|
8941
8985
|
}
|
|
8942
8986
|
interface PublicFilesBadRequest {
|
|
8943
8987
|
message: string;
|
|
@@ -8945,10 +8989,11 @@ interface PublicFilesBadRequest {
|
|
|
8945
8989
|
}
|
|
8946
8990
|
declare class FilesBadRequestError extends Error {
|
|
8947
8991
|
body: PublicFilesBadRequest & FreestyleError;
|
|
8992
|
+
traceId?: string | undefined;
|
|
8948
8993
|
static readonly code: string;
|
|
8949
8994
|
static readonly statusCode: number;
|
|
8950
8995
|
static readonly description: string;
|
|
8951
|
-
constructor(body: PublicFilesBadRequest & FreestyleError);
|
|
8996
|
+
constructor(body: PublicFilesBadRequest & FreestyleError, traceId?: string | undefined);
|
|
8952
8997
|
}
|
|
8953
8998
|
interface VmNotFoundPublic {
|
|
8954
8999
|
vmId: VmId;
|
|
@@ -8956,10 +9001,11 @@ interface VmNotFoundPublic {
|
|
|
8956
9001
|
}
|
|
8957
9002
|
declare class VmNotFoundError extends Error {
|
|
8958
9003
|
body: VmNotFoundPublic & FreestyleError;
|
|
9004
|
+
traceId?: string | undefined;
|
|
8959
9005
|
static readonly code: string;
|
|
8960
9006
|
static readonly statusCode: number;
|
|
8961
9007
|
static readonly description: string;
|
|
8962
|
-
constructor(body: VmNotFoundPublic & FreestyleError);
|
|
9008
|
+
constructor(body: VmNotFoundPublic & FreestyleError, traceId?: string | undefined);
|
|
8963
9009
|
}
|
|
8964
9010
|
interface PublicInternalForkVmNotFound {
|
|
8965
9011
|
forkVmId: VmId;
|
|
@@ -8967,10 +9013,11 @@ interface PublicInternalForkVmNotFound {
|
|
|
8967
9013
|
}
|
|
8968
9014
|
declare class InternalForkVmNotFoundError extends Error {
|
|
8969
9015
|
body: PublicInternalForkVmNotFound & FreestyleError;
|
|
9016
|
+
traceId?: string | undefined;
|
|
8970
9017
|
static readonly code: string;
|
|
8971
9018
|
static readonly statusCode: number;
|
|
8972
9019
|
static readonly description: string;
|
|
8973
|
-
constructor(body: PublicInternalForkVmNotFound & FreestyleError);
|
|
9020
|
+
constructor(body: PublicInternalForkVmNotFound & FreestyleError, traceId?: string | undefined);
|
|
8974
9021
|
}
|
|
8975
9022
|
interface PublicBadRequest {
|
|
8976
9023
|
message: string;
|
|
@@ -8978,10 +9025,11 @@ interface PublicBadRequest {
|
|
|
8978
9025
|
}
|
|
8979
9026
|
declare class BadRequestError extends Error {
|
|
8980
9027
|
body: PublicBadRequest & FreestyleError;
|
|
9028
|
+
traceId?: string | undefined;
|
|
8981
9029
|
static readonly code: string;
|
|
8982
9030
|
static readonly statusCode: number;
|
|
8983
9031
|
static readonly description: string;
|
|
8984
|
-
constructor(body: PublicBadRequest & FreestyleError);
|
|
9032
|
+
constructor(body: PublicBadRequest & FreestyleError, traceId?: string | undefined);
|
|
8985
9033
|
}
|
|
8986
9034
|
type VmId = string;
|
|
8987
9035
|
type VmId = string;
|
|
@@ -8995,10 +9043,11 @@ interface PublicInternalVmNotFound {
|
|
|
8995
9043
|
}
|
|
8996
9044
|
declare class InternalVmNotFoundError extends Error {
|
|
8997
9045
|
body: PublicInternalVmNotFound & FreestyleError;
|
|
9046
|
+
traceId?: string | undefined;
|
|
8998
9047
|
static readonly code: string;
|
|
8999
9048
|
static readonly statusCode: number;
|
|
9000
9049
|
static readonly description: string;
|
|
9001
|
-
constructor(body: PublicInternalVmNotFound & FreestyleError);
|
|
9050
|
+
constructor(body: PublicInternalVmNotFound & FreestyleError, traceId?: string | undefined);
|
|
9002
9051
|
}
|
|
9003
9052
|
interface PublicSnapshotIsAccountDefault {
|
|
9004
9053
|
snapshotId: SnapshotId;
|
|
@@ -9006,10 +9055,11 @@ interface PublicSnapshotIsAccountDefault {
|
|
|
9006
9055
|
}
|
|
9007
9056
|
declare class SnapshotIsAccountDefaultError extends Error {
|
|
9008
9057
|
body: PublicSnapshotIsAccountDefault & FreestyleError;
|
|
9058
|
+
traceId?: string | undefined;
|
|
9009
9059
|
static readonly code: string;
|
|
9010
9060
|
static readonly statusCode: number;
|
|
9011
9061
|
static readonly description: string;
|
|
9012
|
-
constructor(body: PublicSnapshotIsAccountDefault & FreestyleError);
|
|
9062
|
+
constructor(body: PublicSnapshotIsAccountDefault & FreestyleError, traceId?: string | undefined);
|
|
9013
9063
|
}
|
|
9014
9064
|
interface PublicSnapshotAlreadyDeleted {
|
|
9015
9065
|
snapshotId: SnapshotId;
|
|
@@ -9017,10 +9067,11 @@ interface PublicSnapshotAlreadyDeleted {
|
|
|
9017
9067
|
}
|
|
9018
9068
|
declare class SnapshotAlreadyDeletedError extends Error {
|
|
9019
9069
|
body: PublicSnapshotAlreadyDeleted & FreestyleError;
|
|
9070
|
+
traceId?: string | undefined;
|
|
9020
9071
|
static readonly code: string;
|
|
9021
9072
|
static readonly statusCode: number;
|
|
9022
9073
|
static readonly description: string;
|
|
9023
|
-
constructor(body: PublicSnapshotAlreadyDeleted & FreestyleError);
|
|
9074
|
+
constructor(body: PublicSnapshotAlreadyDeleted & FreestyleError, traceId?: string | undefined);
|
|
9024
9075
|
}
|
|
9025
9076
|
interface PublicSnapshotNotFound {
|
|
9026
9077
|
snapshotId: SnapshotId;
|
|
@@ -9028,10 +9079,11 @@ interface PublicSnapshotNotFound {
|
|
|
9028
9079
|
}
|
|
9029
9080
|
declare class SnapshotNotFoundError extends Error {
|
|
9030
9081
|
body: PublicSnapshotNotFound & FreestyleError;
|
|
9082
|
+
traceId?: string | undefined;
|
|
9031
9083
|
static readonly code: string;
|
|
9032
9084
|
static readonly statusCode: number;
|
|
9033
9085
|
static readonly description: string;
|
|
9034
|
-
constructor(body: PublicSnapshotNotFound & FreestyleError);
|
|
9086
|
+
constructor(body: PublicSnapshotNotFound & FreestyleError, traceId?: string | undefined);
|
|
9035
9087
|
}
|
|
9036
9088
|
/**
|
|
9037
9089
|
* Branded snapshot ID in the format `sc-<20 lowercase alphanumeric chars>`.
|
|
@@ -9060,10 +9112,11 @@ interface PublicSnapshotSetupFailed {
|
|
|
9060
9112
|
}
|
|
9061
9113
|
declare class SnapshotSetupFailedError extends Error {
|
|
9062
9114
|
body: PublicSnapshotSetupFailed & FreestyleError;
|
|
9115
|
+
traceId?: string | undefined;
|
|
9063
9116
|
static readonly code: string;
|
|
9064
9117
|
static readonly statusCode: number;
|
|
9065
9118
|
static readonly description: string;
|
|
9066
|
-
constructor(body: PublicSnapshotSetupFailed & FreestyleError);
|
|
9119
|
+
constructor(body: PublicSnapshotSetupFailed & FreestyleError, traceId?: string | undefined);
|
|
9067
9120
|
}
|
|
9068
9121
|
interface PublicSnapshotVmBadRequest {
|
|
9069
9122
|
message: string;
|
|
@@ -9071,31 +9124,35 @@ interface PublicSnapshotVmBadRequest {
|
|
|
9071
9124
|
}
|
|
9072
9125
|
declare class SnapshotVmBadRequestError extends Error {
|
|
9073
9126
|
body: PublicSnapshotVmBadRequest & FreestyleError;
|
|
9127
|
+
traceId?: string | undefined;
|
|
9074
9128
|
static readonly code: string;
|
|
9075
9129
|
static readonly statusCode: number;
|
|
9076
9130
|
static readonly description: string;
|
|
9077
|
-
constructor(body: PublicSnapshotVmBadRequest & FreestyleError);
|
|
9131
|
+
constructor(body: PublicSnapshotVmBadRequest & FreestyleError, traceId?: string | undefined);
|
|
9078
9132
|
}
|
|
9079
9133
|
declare class StartingHandleInstanceIdMismatchError extends Error {
|
|
9080
9134
|
body: unknown & FreestyleError;
|
|
9135
|
+
traceId?: string | undefined;
|
|
9081
9136
|
static readonly code: string;
|
|
9082
9137
|
static readonly statusCode: number;
|
|
9083
9138
|
static readonly description: string;
|
|
9084
|
-
constructor(body: unknown & FreestyleError);
|
|
9139
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9085
9140
|
}
|
|
9086
9141
|
declare class SuspendFailedAndStopFailedError extends Error {
|
|
9087
9142
|
body: unknown & FreestyleError;
|
|
9143
|
+
traceId?: string | undefined;
|
|
9088
9144
|
static readonly code: string;
|
|
9089
9145
|
static readonly statusCode: number;
|
|
9090
9146
|
static readonly description: string;
|
|
9091
|
-
constructor(body: unknown & FreestyleError);
|
|
9147
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9092
9148
|
}
|
|
9093
9149
|
declare class SuspendFailedAndStoppedError extends Error {
|
|
9094
9150
|
body: unknown & FreestyleError;
|
|
9151
|
+
traceId?: string | undefined;
|
|
9095
9152
|
static readonly code: string;
|
|
9096
9153
|
static readonly statusCode: number;
|
|
9097
9154
|
static readonly description: string;
|
|
9098
|
-
constructor(body: unknown & FreestyleError);
|
|
9155
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9099
9156
|
}
|
|
9100
9157
|
interface PublicResizeVmMemNotPowerOfTwo {
|
|
9101
9158
|
got: number;
|
|
@@ -9103,10 +9160,11 @@ interface PublicResizeVmMemNotPowerOfTwo {
|
|
|
9103
9160
|
}
|
|
9104
9161
|
declare class ResizeVmMemNotPowerOfTwoError extends Error {
|
|
9105
9162
|
body: PublicResizeVmMemNotPowerOfTwo & FreestyleError;
|
|
9163
|
+
traceId?: string | undefined;
|
|
9106
9164
|
static readonly code: string;
|
|
9107
9165
|
static readonly statusCode: number;
|
|
9108
9166
|
static readonly description: string;
|
|
9109
|
-
constructor(body: PublicResizeVmMemNotPowerOfTwo & FreestyleError);
|
|
9167
|
+
constructor(body: PublicResizeVmMemNotPowerOfTwo & FreestyleError, traceId?: string | undefined);
|
|
9110
9168
|
}
|
|
9111
9169
|
interface PublicResizeVmVcpuNotPowerOfTwo {
|
|
9112
9170
|
got: number;
|
|
@@ -9114,10 +9172,11 @@ interface PublicResizeVmVcpuNotPowerOfTwo {
|
|
|
9114
9172
|
}
|
|
9115
9173
|
declare class ResizeVmVcpuNotPowerOfTwoError extends Error {
|
|
9116
9174
|
body: PublicResizeVmVcpuNotPowerOfTwo & FreestyleError;
|
|
9175
|
+
traceId?: string | undefined;
|
|
9117
9176
|
static readonly code: string;
|
|
9118
9177
|
static readonly statusCode: number;
|
|
9119
9178
|
static readonly description: string;
|
|
9120
|
-
constructor(body: PublicResizeVmVcpuNotPowerOfTwo & FreestyleError);
|
|
9179
|
+
constructor(body: PublicResizeVmVcpuNotPowerOfTwo & FreestyleError, traceId?: string | undefined);
|
|
9121
9180
|
}
|
|
9122
9181
|
interface PublicResizeVmMemOutOfRange {
|
|
9123
9182
|
got: number;
|
|
@@ -9127,10 +9186,11 @@ interface PublicResizeVmMemOutOfRange {
|
|
|
9127
9186
|
}
|
|
9128
9187
|
declare class ResizeVmMemOutOfRangeError extends Error {
|
|
9129
9188
|
body: PublicResizeVmMemOutOfRange & FreestyleError;
|
|
9189
|
+
traceId?: string | undefined;
|
|
9130
9190
|
static readonly code: string;
|
|
9131
9191
|
static readonly statusCode: number;
|
|
9132
9192
|
static readonly description: string;
|
|
9133
|
-
constructor(body: PublicResizeVmMemOutOfRange & FreestyleError);
|
|
9193
|
+
constructor(body: PublicResizeVmMemOutOfRange & FreestyleError, traceId?: string | undefined);
|
|
9134
9194
|
}
|
|
9135
9195
|
interface PublicResizeVmVcpuOutOfRange {
|
|
9136
9196
|
got: number;
|
|
@@ -9139,10 +9199,11 @@ interface PublicResizeVmVcpuOutOfRange {
|
|
|
9139
9199
|
}
|
|
9140
9200
|
declare class ResizeVmVcpuOutOfRangeError extends Error {
|
|
9141
9201
|
body: PublicResizeVmVcpuOutOfRange & FreestyleError;
|
|
9202
|
+
traceId?: string | undefined;
|
|
9142
9203
|
static readonly code: string;
|
|
9143
9204
|
static readonly statusCode: number;
|
|
9144
9205
|
static readonly description: string;
|
|
9145
|
-
constructor(body: PublicResizeVmVcpuOutOfRange & FreestyleError);
|
|
9206
|
+
constructor(body: PublicResizeVmVcpuOutOfRange & FreestyleError, traceId?: string | undefined);
|
|
9146
9207
|
}
|
|
9147
9208
|
interface PublicResizeVmRootfsShrinkNotSupported {
|
|
9148
9209
|
currentMb: number;
|
|
@@ -9151,17 +9212,19 @@ interface PublicResizeVmRootfsShrinkNotSupported {
|
|
|
9151
9212
|
}
|
|
9152
9213
|
declare class ResizeVmRootfsShrinkNotSupportedError extends Error {
|
|
9153
9214
|
body: PublicResizeVmRootfsShrinkNotSupported & FreestyleError;
|
|
9215
|
+
traceId?: string | undefined;
|
|
9154
9216
|
static readonly code: string;
|
|
9155
9217
|
static readonly statusCode: number;
|
|
9156
9218
|
static readonly description: string;
|
|
9157
|
-
constructor(body: PublicResizeVmRootfsShrinkNotSupported & FreestyleError);
|
|
9219
|
+
constructor(body: PublicResizeVmRootfsShrinkNotSupported & FreestyleError, traceId?: string | undefined);
|
|
9158
9220
|
}
|
|
9159
9221
|
declare class ResizeVmEmptyRequestError extends Error {
|
|
9160
9222
|
body: unknown & FreestyleError;
|
|
9223
|
+
traceId?: string | undefined;
|
|
9161
9224
|
static readonly code: string;
|
|
9162
9225
|
static readonly statusCode: number;
|
|
9163
9226
|
static readonly description: string;
|
|
9164
|
-
constructor(body: unknown & FreestyleError);
|
|
9227
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9165
9228
|
}
|
|
9166
9229
|
interface PublicExecTimedOut {
|
|
9167
9230
|
timeoutMs: number;
|
|
@@ -9171,10 +9234,11 @@ interface PublicExecTimedOut {
|
|
|
9171
9234
|
}
|
|
9172
9235
|
declare class ExecTimedOutError extends Error {
|
|
9173
9236
|
body: PublicExecTimedOut & FreestyleError;
|
|
9237
|
+
traceId?: string | undefined;
|
|
9174
9238
|
static readonly code: string;
|
|
9175
9239
|
static readonly statusCode: number;
|
|
9176
9240
|
static readonly description: string;
|
|
9177
|
-
constructor(body: PublicExecTimedOut & FreestyleError);
|
|
9241
|
+
constructor(body: PublicExecTimedOut & FreestyleError, traceId?: string | undefined);
|
|
9178
9242
|
}
|
|
9179
9243
|
interface ConflictingSpecSourcesErrorPublic {
|
|
9180
9244
|
/**
|
|
@@ -9193,10 +9257,11 @@ interface ConflictingSpecSourcesErrorPublic {
|
|
|
9193
9257
|
}
|
|
9194
9258
|
declare class ConflictingSpecSourcesErrorError extends Error {
|
|
9195
9259
|
body: ConflictingSpecSourcesErrorPublic & FreestyleError;
|
|
9260
|
+
traceId?: string | undefined;
|
|
9196
9261
|
static readonly code: string;
|
|
9197
9262
|
static readonly statusCode: number;
|
|
9198
9263
|
static readonly description: string;
|
|
9199
|
-
constructor(body: ConflictingSpecSourcesErrorPublic & FreestyleError);
|
|
9264
|
+
constructor(body: ConflictingSpecSourcesErrorPublic & FreestyleError, traceId?: string | undefined);
|
|
9200
9265
|
}
|
|
9201
9266
|
interface NonLeafLayerFieldErrorPublic {
|
|
9202
9267
|
/**
|
|
@@ -9212,17 +9277,19 @@ interface NonLeafLayerFieldErrorPublic {
|
|
|
9212
9277
|
}
|
|
9213
9278
|
declare class NonLeafLayerFieldErrorError extends Error {
|
|
9214
9279
|
body: NonLeafLayerFieldErrorPublic & FreestyleError;
|
|
9280
|
+
traceId?: string | undefined;
|
|
9215
9281
|
static readonly code: string;
|
|
9216
9282
|
static readonly statusCode: number;
|
|
9217
9283
|
static readonly description: string;
|
|
9218
|
-
constructor(body: NonLeafLayerFieldErrorPublic & FreestyleError);
|
|
9284
|
+
constructor(body: NonLeafLayerFieldErrorPublic & FreestyleError, traceId?: string | undefined);
|
|
9219
9285
|
}
|
|
9220
9286
|
declare class InvalidGitRepoSpecErrorError extends Error {
|
|
9221
9287
|
body: unknown & FreestyleError;
|
|
9288
|
+
traceId?: string | undefined;
|
|
9222
9289
|
static readonly code: string;
|
|
9223
9290
|
static readonly statusCode: number;
|
|
9224
9291
|
static readonly description: string;
|
|
9225
|
-
constructor(body: unknown & FreestyleError);
|
|
9292
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9226
9293
|
}
|
|
9227
9294
|
interface PublicForkVmNotFound {
|
|
9228
9295
|
forkVmId: string;
|
|
@@ -9230,10 +9297,11 @@ interface PublicForkVmNotFound {
|
|
|
9230
9297
|
}
|
|
9231
9298
|
declare class ForkVmNotFoundError extends Error {
|
|
9232
9299
|
body: PublicForkVmNotFound & FreestyleError;
|
|
9300
|
+
traceId?: string | undefined;
|
|
9233
9301
|
static readonly code: string;
|
|
9234
9302
|
static readonly statusCode: number;
|
|
9235
9303
|
static readonly description: string;
|
|
9236
|
-
constructor(body: PublicForkVmNotFound & FreestyleError);
|
|
9304
|
+
constructor(body: PublicForkVmNotFound & FreestyleError, traceId?: string | undefined);
|
|
9237
9305
|
}
|
|
9238
9306
|
interface PublicCreateSnapshotBadRequest {
|
|
9239
9307
|
message: string;
|
|
@@ -9241,10 +9309,11 @@ interface PublicCreateSnapshotBadRequest {
|
|
|
9241
9309
|
}
|
|
9242
9310
|
declare class CreateSnapshotBadRequestError extends Error {
|
|
9243
9311
|
body: PublicCreateSnapshotBadRequest & FreestyleError;
|
|
9312
|
+
traceId?: string | undefined;
|
|
9244
9313
|
static readonly code: string;
|
|
9245
9314
|
static readonly statusCode: number;
|
|
9246
9315
|
static readonly description: string;
|
|
9247
|
-
constructor(body: PublicCreateSnapshotBadRequest & FreestyleError);
|
|
9316
|
+
constructor(body: PublicCreateSnapshotBadRequest & FreestyleError, traceId?: string | undefined);
|
|
9248
9317
|
}
|
|
9249
9318
|
interface PublicUnsupportedOs {
|
|
9250
9319
|
os: string;
|
|
@@ -9252,10 +9321,11 @@ interface PublicUnsupportedOs {
|
|
|
9252
9321
|
}
|
|
9253
9322
|
declare class UnsupportedOsError extends Error {
|
|
9254
9323
|
body: PublicUnsupportedOs & FreestyleError;
|
|
9324
|
+
traceId?: string | undefined;
|
|
9255
9325
|
static readonly code: string;
|
|
9256
9326
|
static readonly statusCode: number;
|
|
9257
9327
|
static readonly description: string;
|
|
9258
|
-
constructor(body: PublicUnsupportedOs & FreestyleError);
|
|
9328
|
+
constructor(body: PublicUnsupportedOs & FreestyleError, traceId?: string | undefined);
|
|
9259
9329
|
}
|
|
9260
9330
|
interface PublicBuildFailed {
|
|
9261
9331
|
exitCode: number;
|
|
@@ -9264,115 +9334,131 @@ interface PublicBuildFailed {
|
|
|
9264
9334
|
}
|
|
9265
9335
|
declare class BuildFailedError extends Error {
|
|
9266
9336
|
body: PublicBuildFailed & FreestyleError;
|
|
9337
|
+
traceId?: string | undefined;
|
|
9267
9338
|
static readonly code: string;
|
|
9268
9339
|
static readonly statusCode: number;
|
|
9269
9340
|
static readonly description: string;
|
|
9270
|
-
constructor(body: PublicBuildFailed & FreestyleError);
|
|
9341
|
+
constructor(body: PublicBuildFailed & FreestyleError, traceId?: string | undefined);
|
|
9271
9342
|
}
|
|
9272
9343
|
declare class ResumedVmNonResponsiveError extends Error {
|
|
9273
9344
|
body: unknown & FreestyleError;
|
|
9345
|
+
traceId?: string | undefined;
|
|
9274
9346
|
static readonly code: string;
|
|
9275
9347
|
static readonly statusCode: number;
|
|
9276
9348
|
static readonly description: string;
|
|
9277
|
-
constructor(body: unknown & FreestyleError);
|
|
9349
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9278
9350
|
}
|
|
9279
9351
|
declare class SnapshotLoadTimeoutError extends Error {
|
|
9280
9352
|
body: unknown & FreestyleError;
|
|
9353
|
+
traceId?: string | undefined;
|
|
9281
9354
|
static readonly code: string;
|
|
9282
9355
|
static readonly statusCode: number;
|
|
9283
9356
|
static readonly description: string;
|
|
9284
|
-
constructor(body: unknown & FreestyleError);
|
|
9357
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9285
9358
|
}
|
|
9286
9359
|
declare class UffdTimeoutErrorError extends Error {
|
|
9287
9360
|
body: unknown & FreestyleError;
|
|
9361
|
+
traceId?: string | undefined;
|
|
9288
9362
|
static readonly code: string;
|
|
9289
9363
|
static readonly statusCode: number;
|
|
9290
9364
|
static readonly description: string;
|
|
9291
|
-
constructor(body: unknown & FreestyleError);
|
|
9365
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9292
9366
|
}
|
|
9293
9367
|
declare class KernelPanicError extends Error {
|
|
9294
9368
|
body: unknown & FreestyleError;
|
|
9369
|
+
traceId?: string | undefined;
|
|
9295
9370
|
static readonly code: string;
|
|
9296
9371
|
static readonly statusCode: number;
|
|
9297
9372
|
static readonly description: string;
|
|
9298
|
-
constructor(body: unknown & FreestyleError);
|
|
9373
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9299
9374
|
}
|
|
9300
9375
|
declare class ReqwestError extends Error {
|
|
9301
9376
|
body: unknown & FreestyleError;
|
|
9377
|
+
traceId?: string | undefined;
|
|
9302
9378
|
static readonly code: string;
|
|
9303
9379
|
static readonly statusCode: number;
|
|
9304
9380
|
static readonly description: string;
|
|
9305
|
-
constructor(body: unknown & FreestyleError);
|
|
9381
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9306
9382
|
}
|
|
9307
9383
|
declare class FirecrackerPidNotFoundError extends Error {
|
|
9308
9384
|
body: unknown & FreestyleError;
|
|
9385
|
+
traceId?: string | undefined;
|
|
9309
9386
|
static readonly code: string;
|
|
9310
9387
|
static readonly statusCode: number;
|
|
9311
9388
|
static readonly description: string;
|
|
9312
|
-
constructor(body: unknown & FreestyleError);
|
|
9389
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9313
9390
|
}
|
|
9314
9391
|
declare class FirecrackerApiSocketNotFoundError extends Error {
|
|
9315
9392
|
body: unknown & FreestyleError;
|
|
9393
|
+
traceId?: string | undefined;
|
|
9316
9394
|
static readonly code: string;
|
|
9317
9395
|
static readonly statusCode: number;
|
|
9318
9396
|
static readonly description: string;
|
|
9319
|
-
constructor(body: unknown & FreestyleError);
|
|
9397
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9320
9398
|
}
|
|
9321
9399
|
declare class InvalidSnapshotIdError extends Error {
|
|
9322
9400
|
body: unknown & FreestyleError;
|
|
9401
|
+
traceId?: string | undefined;
|
|
9323
9402
|
static readonly code: string;
|
|
9324
9403
|
static readonly statusCode: number;
|
|
9325
9404
|
static readonly description: string;
|
|
9326
|
-
constructor(body: unknown & FreestyleError);
|
|
9405
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9327
9406
|
}
|
|
9328
9407
|
declare class VmStartTimeoutError extends Error {
|
|
9329
9408
|
body: unknown & FreestyleError;
|
|
9409
|
+
traceId?: string | undefined;
|
|
9330
9410
|
static readonly code: string;
|
|
9331
9411
|
static readonly statusCode: number;
|
|
9332
9412
|
static readonly description: string;
|
|
9333
|
-
constructor(body: unknown & FreestyleError);
|
|
9413
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9334
9414
|
}
|
|
9335
9415
|
declare class VmIsSuspendingError extends Error {
|
|
9336
9416
|
body: unknown & FreestyleError;
|
|
9417
|
+
traceId?: string | undefined;
|
|
9337
9418
|
static readonly code: string;
|
|
9338
9419
|
static readonly statusCode: number;
|
|
9339
9420
|
static readonly description: string;
|
|
9340
|
-
constructor(body: unknown & FreestyleError);
|
|
9421
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9341
9422
|
}
|
|
9342
9423
|
declare class VmExitDuringStartError extends Error {
|
|
9343
9424
|
body: unknown & FreestyleError;
|
|
9425
|
+
traceId?: string | undefined;
|
|
9344
9426
|
static readonly code: string;
|
|
9345
9427
|
static readonly statusCode: number;
|
|
9346
9428
|
static readonly description: string;
|
|
9347
|
-
constructor(body: unknown & FreestyleError);
|
|
9429
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9348
9430
|
}
|
|
9349
9431
|
declare class VmAccessDeniedError extends Error {
|
|
9350
9432
|
body: unknown & FreestyleError;
|
|
9433
|
+
traceId?: string | undefined;
|
|
9351
9434
|
static readonly code: string;
|
|
9352
9435
|
static readonly statusCode: number;
|
|
9353
9436
|
static readonly description: string;
|
|
9354
|
-
constructor(body: unknown & FreestyleError);
|
|
9437
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9355
9438
|
}
|
|
9356
9439
|
declare class FailedToSpawnUffdError extends Error {
|
|
9357
9440
|
body: unknown & FreestyleError;
|
|
9441
|
+
traceId?: string | undefined;
|
|
9358
9442
|
static readonly code: string;
|
|
9359
9443
|
static readonly statusCode: number;
|
|
9360
9444
|
static readonly description: string;
|
|
9361
|
-
constructor(body: unknown & FreestyleError);
|
|
9445
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9362
9446
|
}
|
|
9363
9447
|
declare class VmSpawnProcessError extends Error {
|
|
9364
9448
|
body: unknown & FreestyleError;
|
|
9449
|
+
traceId?: string | undefined;
|
|
9365
9450
|
static readonly code: string;
|
|
9366
9451
|
static readonly statusCode: number;
|
|
9367
9452
|
static readonly description: string;
|
|
9368
|
-
constructor(body: unknown & FreestyleError);
|
|
9453
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9369
9454
|
}
|
|
9370
9455
|
declare class VmSubnetNotFoundError extends Error {
|
|
9371
9456
|
body: unknown & FreestyleError;
|
|
9457
|
+
traceId?: string | undefined;
|
|
9372
9458
|
static readonly code: string;
|
|
9373
9459
|
static readonly statusCode: number;
|
|
9374
9460
|
static readonly description: string;
|
|
9375
|
-
constructor(body: unknown & FreestyleError);
|
|
9461
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9376
9462
|
}
|
|
9377
9463
|
interface PublicCreateVmMemNotPowerOfTwo {
|
|
9378
9464
|
got: number;
|
|
@@ -9380,10 +9466,11 @@ interface PublicCreateVmMemNotPowerOfTwo {
|
|
|
9380
9466
|
}
|
|
9381
9467
|
declare class CreateVmMemNotPowerOfTwoError extends Error {
|
|
9382
9468
|
body: PublicCreateVmMemNotPowerOfTwo & FreestyleError;
|
|
9469
|
+
traceId?: string | undefined;
|
|
9383
9470
|
static readonly code: string;
|
|
9384
9471
|
static readonly statusCode: number;
|
|
9385
9472
|
static readonly description: string;
|
|
9386
|
-
constructor(body: PublicCreateVmMemNotPowerOfTwo & FreestyleError);
|
|
9473
|
+
constructor(body: PublicCreateVmMemNotPowerOfTwo & FreestyleError, traceId?: string | undefined);
|
|
9387
9474
|
}
|
|
9388
9475
|
interface PublicCreateVmVcpuNotPowerOfTwo {
|
|
9389
9476
|
got: number;
|
|
@@ -9391,10 +9478,11 @@ interface PublicCreateVmVcpuNotPowerOfTwo {
|
|
|
9391
9478
|
}
|
|
9392
9479
|
declare class CreateVmVcpuNotPowerOfTwoError extends Error {
|
|
9393
9480
|
body: PublicCreateVmVcpuNotPowerOfTwo & FreestyleError;
|
|
9481
|
+
traceId?: string | undefined;
|
|
9394
9482
|
static readonly code: string;
|
|
9395
9483
|
static readonly statusCode: number;
|
|
9396
9484
|
static readonly description: string;
|
|
9397
|
-
constructor(body: PublicCreateVmVcpuNotPowerOfTwo & FreestyleError);
|
|
9485
|
+
constructor(body: PublicCreateVmVcpuNotPowerOfTwo & FreestyleError, traceId?: string | undefined);
|
|
9398
9486
|
}
|
|
9399
9487
|
interface PublicCreateVmRootfsOutOfRange {
|
|
9400
9488
|
got: number;
|
|
@@ -9404,10 +9492,11 @@ interface PublicCreateVmRootfsOutOfRange {
|
|
|
9404
9492
|
}
|
|
9405
9493
|
declare class CreateVmRootfsOutOfRangeError extends Error {
|
|
9406
9494
|
body: PublicCreateVmRootfsOutOfRange & FreestyleError;
|
|
9495
|
+
traceId?: string | undefined;
|
|
9407
9496
|
static readonly code: string;
|
|
9408
9497
|
static readonly statusCode: number;
|
|
9409
9498
|
static readonly description: string;
|
|
9410
|
-
constructor(body: PublicCreateVmRootfsOutOfRange & FreestyleError);
|
|
9499
|
+
constructor(body: PublicCreateVmRootfsOutOfRange & FreestyleError, traceId?: string | undefined);
|
|
9411
9500
|
}
|
|
9412
9501
|
interface PublicCreateVmMemOutOfRange {
|
|
9413
9502
|
got: number;
|
|
@@ -9417,10 +9506,11 @@ interface PublicCreateVmMemOutOfRange {
|
|
|
9417
9506
|
}
|
|
9418
9507
|
declare class CreateVmMemOutOfRangeError extends Error {
|
|
9419
9508
|
body: PublicCreateVmMemOutOfRange & FreestyleError;
|
|
9509
|
+
traceId?: string | undefined;
|
|
9420
9510
|
static readonly code: string;
|
|
9421
9511
|
static readonly statusCode: number;
|
|
9422
9512
|
static readonly description: string;
|
|
9423
|
-
constructor(body: PublicCreateVmMemOutOfRange & FreestyleError);
|
|
9513
|
+
constructor(body: PublicCreateVmMemOutOfRange & FreestyleError, traceId?: string | undefined);
|
|
9424
9514
|
}
|
|
9425
9515
|
interface PublicCreateVmVcpuOutOfRange {
|
|
9426
9516
|
got: number;
|
|
@@ -9429,10 +9519,11 @@ interface PublicCreateVmVcpuOutOfRange {
|
|
|
9429
9519
|
}
|
|
9430
9520
|
declare class CreateVmVcpuOutOfRangeError extends Error {
|
|
9431
9521
|
body: PublicCreateVmVcpuOutOfRange & FreestyleError;
|
|
9522
|
+
traceId?: string | undefined;
|
|
9432
9523
|
static readonly code: string;
|
|
9433
9524
|
static readonly statusCode: number;
|
|
9434
9525
|
static readonly description: string;
|
|
9435
|
-
constructor(body: PublicCreateVmVcpuOutOfRange & FreestyleError);
|
|
9526
|
+
constructor(body: PublicCreateVmVcpuOutOfRange & FreestyleError, traceId?: string | undefined);
|
|
9436
9527
|
}
|
|
9437
9528
|
interface PublicCreateVmBadRequest {
|
|
9438
9529
|
message: string;
|
|
@@ -9440,10 +9531,11 @@ interface PublicCreateVmBadRequest {
|
|
|
9440
9531
|
}
|
|
9441
9532
|
declare class CreateVmBadRequestError extends Error {
|
|
9442
9533
|
body: PublicCreateVmBadRequest & FreestyleError;
|
|
9534
|
+
traceId?: string | undefined;
|
|
9443
9535
|
static readonly code: string;
|
|
9444
9536
|
static readonly statusCode: number;
|
|
9445
9537
|
static readonly description: string;
|
|
9446
|
-
constructor(body: PublicCreateVmBadRequest & FreestyleError);
|
|
9538
|
+
constructor(body: PublicCreateVmBadRequest & FreestyleError, traceId?: string | undefined);
|
|
9447
9539
|
}
|
|
9448
9540
|
interface VmSetupFailedPublic {
|
|
9449
9541
|
snapshotId?: string | null;
|
|
@@ -9475,108 +9567,123 @@ interface ServiceLog {
|
|
|
9475
9567
|
}
|
|
9476
9568
|
declare class VmSetupFailedError extends Error {
|
|
9477
9569
|
body: VmSetupFailedPublic & FreestyleError;
|
|
9570
|
+
traceId?: string | undefined;
|
|
9478
9571
|
static readonly code: string;
|
|
9479
9572
|
static readonly statusCode: number;
|
|
9480
9573
|
static readonly description: string;
|
|
9481
|
-
constructor(body: VmSetupFailedPublic & FreestyleError);
|
|
9574
|
+
constructor(body: VmSetupFailedPublic & FreestyleError, traceId?: string | undefined);
|
|
9482
9575
|
}
|
|
9483
9576
|
declare class WantedByEmptyError extends Error {
|
|
9484
9577
|
body: unknown & FreestyleError;
|
|
9578
|
+
traceId?: string | undefined;
|
|
9485
9579
|
static readonly code: string;
|
|
9486
9580
|
static readonly statusCode: number;
|
|
9487
9581
|
static readonly description: string;
|
|
9488
|
-
constructor(body: unknown & FreestyleError);
|
|
9582
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9489
9583
|
}
|
|
9490
9584
|
declare class WorkdirEmptyError extends Error {
|
|
9491
9585
|
body: unknown & FreestyleError;
|
|
9586
|
+
traceId?: string | undefined;
|
|
9492
9587
|
static readonly code: string;
|
|
9493
9588
|
static readonly statusCode: number;
|
|
9494
9589
|
static readonly description: string;
|
|
9495
|
-
constructor(body: unknown & FreestyleError);
|
|
9590
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9496
9591
|
}
|
|
9497
9592
|
declare class GroupEmptyError extends Error {
|
|
9498
9593
|
body: unknown & FreestyleError;
|
|
9594
|
+
traceId?: string | undefined;
|
|
9499
9595
|
static readonly code: string;
|
|
9500
9596
|
static readonly statusCode: number;
|
|
9501
9597
|
static readonly description: string;
|
|
9502
|
-
constructor(body: unknown & FreestyleError);
|
|
9598
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9503
9599
|
}
|
|
9504
9600
|
declare class UserEmptyError extends Error {
|
|
9505
9601
|
body: unknown & FreestyleError;
|
|
9602
|
+
traceId?: string | undefined;
|
|
9506
9603
|
static readonly code: string;
|
|
9507
9604
|
static readonly statusCode: number;
|
|
9508
9605
|
static readonly description: string;
|
|
9509
|
-
constructor(body: unknown & FreestyleError);
|
|
9606
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9510
9607
|
}
|
|
9511
9608
|
declare class OnFailureArrayContainsEmptyError extends Error {
|
|
9512
9609
|
body: unknown & FreestyleError;
|
|
9610
|
+
traceId?: string | undefined;
|
|
9513
9611
|
static readonly code: string;
|
|
9514
9612
|
static readonly statusCode: number;
|
|
9515
9613
|
static readonly description: string;
|
|
9516
|
-
constructor(body: unknown & FreestyleError);
|
|
9614
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9517
9615
|
}
|
|
9518
9616
|
declare class RequiresArrayContainsEmptyError extends Error {
|
|
9519
9617
|
body: unknown & FreestyleError;
|
|
9618
|
+
traceId?: string | undefined;
|
|
9520
9619
|
static readonly code: string;
|
|
9521
9620
|
static readonly statusCode: number;
|
|
9522
9621
|
static readonly description: string;
|
|
9523
|
-
constructor(body: unknown & FreestyleError);
|
|
9622
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9524
9623
|
}
|
|
9525
9624
|
declare class AfterArrayContainsEmptyError extends Error {
|
|
9526
9625
|
body: unknown & FreestyleError;
|
|
9626
|
+
traceId?: string | undefined;
|
|
9527
9627
|
static readonly code: string;
|
|
9528
9628
|
static readonly statusCode: number;
|
|
9529
9629
|
static readonly description: string;
|
|
9530
|
-
constructor(body: unknown & FreestyleError);
|
|
9630
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9531
9631
|
}
|
|
9532
9632
|
declare class EnvKeyContainsEqualsError extends Error {
|
|
9533
9633
|
body: unknown & FreestyleError;
|
|
9634
|
+
traceId?: string | undefined;
|
|
9534
9635
|
static readonly code: string;
|
|
9535
9636
|
static readonly statusCode: number;
|
|
9536
9637
|
static readonly description: string;
|
|
9537
|
-
constructor(body: unknown & FreestyleError);
|
|
9638
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9538
9639
|
}
|
|
9539
9640
|
declare class EnvKeyEmptyError extends Error {
|
|
9540
9641
|
body: unknown & FreestyleError;
|
|
9642
|
+
traceId?: string | undefined;
|
|
9541
9643
|
static readonly code: string;
|
|
9542
9644
|
static readonly statusCode: number;
|
|
9543
9645
|
static readonly description: string;
|
|
9544
|
-
constructor(body: unknown & FreestyleError);
|
|
9646
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9545
9647
|
}
|
|
9546
9648
|
declare class ExecEmptyError extends Error {
|
|
9547
9649
|
body: unknown & FreestyleError;
|
|
9650
|
+
traceId?: string | undefined;
|
|
9548
9651
|
static readonly code: string;
|
|
9549
9652
|
static readonly statusCode: number;
|
|
9550
9653
|
static readonly description: string;
|
|
9551
|
-
constructor(body: unknown & FreestyleError);
|
|
9654
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9552
9655
|
}
|
|
9553
9656
|
declare class ServiceNameTooLongError extends Error {
|
|
9554
9657
|
body: unknown & FreestyleError;
|
|
9658
|
+
traceId?: string | undefined;
|
|
9555
9659
|
static readonly code: string;
|
|
9556
9660
|
static readonly statusCode: number;
|
|
9557
9661
|
static readonly description: string;
|
|
9558
|
-
constructor(body: unknown & FreestyleError);
|
|
9662
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9559
9663
|
}
|
|
9560
9664
|
declare class ServiceNameInvalidPrefixError extends Error {
|
|
9561
9665
|
body: unknown & FreestyleError;
|
|
9666
|
+
traceId?: string | undefined;
|
|
9562
9667
|
static readonly code: string;
|
|
9563
9668
|
static readonly statusCode: number;
|
|
9564
9669
|
static readonly description: string;
|
|
9565
|
-
constructor(body: unknown & FreestyleError);
|
|
9670
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9566
9671
|
}
|
|
9567
9672
|
declare class ServiceNameInvalidCharsError extends Error {
|
|
9568
9673
|
body: unknown & FreestyleError;
|
|
9674
|
+
traceId?: string | undefined;
|
|
9569
9675
|
static readonly code: string;
|
|
9570
9676
|
static readonly statusCode: number;
|
|
9571
9677
|
static readonly description: string;
|
|
9572
|
-
constructor(body: unknown & FreestyleError);
|
|
9678
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9573
9679
|
}
|
|
9574
9680
|
declare class ServiceNameEmptyError extends Error {
|
|
9575
9681
|
body: unknown & FreestyleError;
|
|
9682
|
+
traceId?: string | undefined;
|
|
9576
9683
|
static readonly code: string;
|
|
9577
9684
|
static readonly statusCode: number;
|
|
9578
9685
|
static readonly description: string;
|
|
9579
|
-
constructor(body: unknown & FreestyleError);
|
|
9686
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9580
9687
|
}
|
|
9581
9688
|
interface PublicServiceAlreadyExists {
|
|
9582
9689
|
serviceName: string;
|
|
@@ -9584,31 +9691,35 @@ interface PublicServiceAlreadyExists {
|
|
|
9584
9691
|
}
|
|
9585
9692
|
declare class ServiceAlreadyExistsError extends Error {
|
|
9586
9693
|
body: PublicServiceAlreadyExists & FreestyleError;
|
|
9694
|
+
traceId?: string | undefined;
|
|
9587
9695
|
static readonly code: string;
|
|
9588
9696
|
static readonly statusCode: number;
|
|
9589
9697
|
static readonly description: string;
|
|
9590
|
-
constructor(body: PublicServiceAlreadyExists & FreestyleError);
|
|
9698
|
+
constructor(body: PublicServiceAlreadyExists & FreestyleError, traceId?: string | undefined);
|
|
9591
9699
|
}
|
|
9592
9700
|
declare class ServiceNotFoundError extends Error {
|
|
9593
9701
|
body: unknown & FreestyleError;
|
|
9702
|
+
traceId?: string | undefined;
|
|
9594
9703
|
static readonly code: string;
|
|
9595
9704
|
static readonly statusCode: number;
|
|
9596
9705
|
static readonly description: string;
|
|
9597
|
-
constructor(body: unknown & FreestyleError);
|
|
9706
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9598
9707
|
}
|
|
9599
9708
|
declare class InvalidRequestError extends Error {
|
|
9600
9709
|
body: unknown & FreestyleError;
|
|
9710
|
+
traceId?: string | undefined;
|
|
9601
9711
|
static readonly code: string;
|
|
9602
9712
|
static readonly statusCode: number;
|
|
9603
9713
|
static readonly description: string;
|
|
9604
|
-
constructor(body: unknown & FreestyleError);
|
|
9714
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9605
9715
|
}
|
|
9606
9716
|
declare class RepoNotFoundError extends Error {
|
|
9607
9717
|
body: unknown & FreestyleError;
|
|
9718
|
+
traceId?: string | undefined;
|
|
9608
9719
|
static readonly code: string;
|
|
9609
9720
|
static readonly statusCode: number;
|
|
9610
9721
|
static readonly description: string;
|
|
9611
|
-
constructor(body: unknown & FreestyleError);
|
|
9722
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9612
9723
|
}
|
|
9613
9724
|
type JavascriptLog = {
|
|
9614
9725
|
message: string;
|
|
@@ -9629,66 +9740,75 @@ interface PublicRuntimeError {
|
|
|
9629
9740
|
}
|
|
9630
9741
|
declare class RuntimeErrorError extends Error {
|
|
9631
9742
|
body: PublicRuntimeError & FreestyleError;
|
|
9743
|
+
traceId?: string | undefined;
|
|
9632
9744
|
static readonly code: string;
|
|
9633
9745
|
static readonly statusCode: number;
|
|
9634
9746
|
static readonly description: string;
|
|
9635
|
-
constructor(body: PublicRuntimeError & FreestyleError);
|
|
9747
|
+
constructor(body: PublicRuntimeError & FreestyleError, traceId?: string | undefined);
|
|
9636
9748
|
}
|
|
9637
9749
|
declare class SyntaxErrorError extends Error {
|
|
9638
9750
|
body: unknown & FreestyleError;
|
|
9751
|
+
traceId?: string | undefined;
|
|
9639
9752
|
static readonly code: string;
|
|
9640
9753
|
static readonly statusCode: number;
|
|
9641
9754
|
static readonly description: string;
|
|
9642
|
-
constructor(body: unknown & FreestyleError);
|
|
9755
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9643
9756
|
}
|
|
9644
9757
|
declare class InternalError extends Error {
|
|
9645
9758
|
body: unknown & FreestyleError;
|
|
9759
|
+
traceId?: string | undefined;
|
|
9646
9760
|
static readonly code: string;
|
|
9647
9761
|
static readonly statusCode: number;
|
|
9648
9762
|
static readonly description: string;
|
|
9649
|
-
constructor(body: unknown & FreestyleError);
|
|
9763
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9650
9764
|
}
|
|
9651
9765
|
declare class SigningError extends Error {
|
|
9652
9766
|
body: unknown & FreestyleError;
|
|
9767
|
+
traceId?: string | undefined;
|
|
9653
9768
|
static readonly code: string;
|
|
9654
9769
|
static readonly statusCode: number;
|
|
9655
9770
|
static readonly description: string;
|
|
9656
|
-
constructor(body: unknown & FreestyleError);
|
|
9771
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9657
9772
|
}
|
|
9658
9773
|
declare class InvalidSignatureError extends Error {
|
|
9659
9774
|
body: unknown & FreestyleError;
|
|
9775
|
+
traceId?: string | undefined;
|
|
9660
9776
|
static readonly code: string;
|
|
9661
9777
|
static readonly statusCode: number;
|
|
9662
9778
|
static readonly description: string;
|
|
9663
|
-
constructor(body: unknown & FreestyleError);
|
|
9779
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9664
9780
|
}
|
|
9665
9781
|
declare class InvalidParametersError extends Error {
|
|
9666
9782
|
body: unknown & FreestyleError;
|
|
9783
|
+
traceId?: string | undefined;
|
|
9667
9784
|
static readonly code: string;
|
|
9668
9785
|
static readonly statusCode: number;
|
|
9669
9786
|
static readonly description: string;
|
|
9670
|
-
constructor(body: unknown & FreestyleError);
|
|
9787
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9671
9788
|
}
|
|
9672
9789
|
declare class MaxUsesExceededError extends Error {
|
|
9673
9790
|
body: unknown & FreestyleError;
|
|
9791
|
+
traceId?: string | undefined;
|
|
9674
9792
|
static readonly code: string;
|
|
9675
9793
|
static readonly statusCode: number;
|
|
9676
9794
|
static readonly description: string;
|
|
9677
|
-
constructor(body: unknown & FreestyleError);
|
|
9795
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9678
9796
|
}
|
|
9679
9797
|
declare class ExpiredError extends Error {
|
|
9680
9798
|
body: unknown & FreestyleError;
|
|
9799
|
+
traceId?: string | undefined;
|
|
9681
9800
|
static readonly code: string;
|
|
9682
9801
|
static readonly statusCode: number;
|
|
9683
9802
|
static readonly description: string;
|
|
9684
|
-
constructor(body: unknown & FreestyleError);
|
|
9803
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9685
9804
|
}
|
|
9686
9805
|
declare class NotFoundError extends Error {
|
|
9687
9806
|
body: unknown & FreestyleError;
|
|
9807
|
+
traceId?: string | undefined;
|
|
9688
9808
|
static readonly code: string;
|
|
9689
9809
|
static readonly statusCode: number;
|
|
9690
9810
|
static readonly description: string;
|
|
9691
|
-
constructor(body: unknown & FreestyleError);
|
|
9811
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9692
9812
|
}
|
|
9693
9813
|
interface PublicTreeNotFound {
|
|
9694
9814
|
hash: string;
|
|
@@ -9696,10 +9816,11 @@ interface PublicTreeNotFound {
|
|
|
9696
9816
|
}
|
|
9697
9817
|
declare class TreeNotFoundError extends Error {
|
|
9698
9818
|
body: PublicTreeNotFound & FreestyleError;
|
|
9819
|
+
traceId?: string | undefined;
|
|
9699
9820
|
static readonly code: string;
|
|
9700
9821
|
static readonly statusCode: number;
|
|
9701
9822
|
static readonly description: string;
|
|
9702
|
-
constructor(body: PublicTreeNotFound & FreestyleError);
|
|
9823
|
+
constructor(body: PublicTreeNotFound & FreestyleError, traceId?: string | undefined);
|
|
9703
9824
|
}
|
|
9704
9825
|
interface PublicBranchNotFound {
|
|
9705
9826
|
branch: string;
|
|
@@ -9707,10 +9828,11 @@ interface PublicBranchNotFound {
|
|
|
9707
9828
|
}
|
|
9708
9829
|
declare class BranchNotFoundError extends Error {
|
|
9709
9830
|
body: PublicBranchNotFound & FreestyleError;
|
|
9831
|
+
traceId?: string | undefined;
|
|
9710
9832
|
static readonly code: string;
|
|
9711
9833
|
static readonly statusCode: number;
|
|
9712
9834
|
static readonly description: string;
|
|
9713
|
-
constructor(body: PublicBranchNotFound & FreestyleError);
|
|
9835
|
+
constructor(body: PublicBranchNotFound & FreestyleError, traceId?: string | undefined);
|
|
9714
9836
|
}
|
|
9715
9837
|
interface PublicCommitNotFound {
|
|
9716
9838
|
hash: string;
|
|
@@ -9718,10 +9840,11 @@ interface PublicCommitNotFound {
|
|
|
9718
9840
|
}
|
|
9719
9841
|
declare class CommitNotFoundError extends Error {
|
|
9720
9842
|
body: PublicCommitNotFound & FreestyleError;
|
|
9843
|
+
traceId?: string | undefined;
|
|
9721
9844
|
static readonly code: string;
|
|
9722
9845
|
static readonly statusCode: number;
|
|
9723
9846
|
static readonly description: string;
|
|
9724
|
-
constructor(body: PublicCommitNotFound & FreestyleError);
|
|
9847
|
+
constructor(body: PublicCommitNotFound & FreestyleError, traceId?: string | undefined);
|
|
9725
9848
|
}
|
|
9726
9849
|
interface PublicParentNotFound {
|
|
9727
9850
|
sha: string;
|
|
@@ -9729,17 +9852,19 @@ interface PublicParentNotFound {
|
|
|
9729
9852
|
}
|
|
9730
9853
|
declare class ParentNotFoundError extends Error {
|
|
9731
9854
|
body: PublicParentNotFound & FreestyleError;
|
|
9855
|
+
traceId?: string | undefined;
|
|
9732
9856
|
static readonly code: string;
|
|
9733
9857
|
static readonly statusCode: number;
|
|
9734
9858
|
static readonly description: string;
|
|
9735
|
-
constructor(body: PublicParentNotFound & FreestyleError);
|
|
9859
|
+
constructor(body: PublicParentNotFound & FreestyleError, traceId?: string | undefined);
|
|
9736
9860
|
}
|
|
9737
9861
|
declare class NoDefaultBranchError extends Error {
|
|
9738
9862
|
body: unknown & FreestyleError;
|
|
9863
|
+
traceId?: string | undefined;
|
|
9739
9864
|
static readonly code: string;
|
|
9740
9865
|
static readonly statusCode: number;
|
|
9741
9866
|
static readonly description: string;
|
|
9742
|
-
constructor(body: unknown & FreestyleError);
|
|
9867
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9743
9868
|
}
|
|
9744
9869
|
interface PublicInvalidBase64Content {
|
|
9745
9870
|
path: string;
|
|
@@ -9747,10 +9872,11 @@ interface PublicInvalidBase64Content {
|
|
|
9747
9872
|
}
|
|
9748
9873
|
declare class InvalidBase64ContentError extends Error {
|
|
9749
9874
|
body: PublicInvalidBase64Content & FreestyleError;
|
|
9875
|
+
traceId?: string | undefined;
|
|
9750
9876
|
static readonly code: string;
|
|
9751
9877
|
static readonly statusCode: number;
|
|
9752
9878
|
static readonly description: string;
|
|
9753
|
-
constructor(body: PublicInvalidBase64Content & FreestyleError);
|
|
9879
|
+
constructor(body: PublicInvalidBase64Content & FreestyleError, traceId?: string | undefined);
|
|
9754
9880
|
}
|
|
9755
9881
|
interface PublicInvalidFileChange {
|
|
9756
9882
|
path: string;
|
|
@@ -9758,10 +9884,11 @@ interface PublicInvalidFileChange {
|
|
|
9758
9884
|
}
|
|
9759
9885
|
declare class InvalidFileChangeError extends Error {
|
|
9760
9886
|
body: PublicInvalidFileChange & FreestyleError;
|
|
9887
|
+
traceId?: string | undefined;
|
|
9761
9888
|
static readonly code: string;
|
|
9762
9889
|
static readonly statusCode: number;
|
|
9763
9890
|
static readonly description: string;
|
|
9764
|
-
constructor(body: PublicInvalidFileChange & FreestyleError);
|
|
9891
|
+
constructor(body: PublicInvalidFileChange & FreestyleError, traceId?: string | undefined);
|
|
9765
9892
|
}
|
|
9766
9893
|
interface PublicInvalidFilePath {
|
|
9767
9894
|
path: string;
|
|
@@ -9769,10 +9896,11 @@ interface PublicInvalidFilePath {
|
|
|
9769
9896
|
}
|
|
9770
9897
|
declare class InvalidFilePathError extends Error {
|
|
9771
9898
|
body: PublicInvalidFilePath & FreestyleError;
|
|
9899
|
+
traceId?: string | undefined;
|
|
9772
9900
|
static readonly code: string;
|
|
9773
9901
|
static readonly statusCode: number;
|
|
9774
9902
|
static readonly description: string;
|
|
9775
|
-
constructor(body: PublicInvalidFilePath & FreestyleError);
|
|
9903
|
+
constructor(body: PublicInvalidFilePath & FreestyleError, traceId?: string | undefined);
|
|
9776
9904
|
}
|
|
9777
9905
|
interface PublicConflictingParent {
|
|
9778
9906
|
expected: string;
|
|
@@ -9781,10 +9909,11 @@ interface PublicConflictingParent {
|
|
|
9781
9909
|
}
|
|
9782
9910
|
declare class ConflictingParentError extends Error {
|
|
9783
9911
|
body: PublicConflictingParent & FreestyleError;
|
|
9912
|
+
traceId?: string | undefined;
|
|
9784
9913
|
static readonly code: string;
|
|
9785
9914
|
static readonly statusCode: number;
|
|
9786
9915
|
static readonly description: string;
|
|
9787
|
-
constructor(body: PublicConflictingParent & FreestyleError);
|
|
9916
|
+
constructor(body: PublicConflictingParent & FreestyleError, traceId?: string | undefined);
|
|
9788
9917
|
}
|
|
9789
9918
|
interface PublicAmbiguous {
|
|
9790
9919
|
rev: string;
|
|
@@ -9792,10 +9921,11 @@ interface PublicAmbiguous {
|
|
|
9792
9921
|
}
|
|
9793
9922
|
declare class AmbiguousError extends Error {
|
|
9794
9923
|
body: PublicAmbiguous & FreestyleError;
|
|
9924
|
+
traceId?: string | undefined;
|
|
9795
9925
|
static readonly code: string;
|
|
9796
9926
|
static readonly statusCode: number;
|
|
9797
9927
|
static readonly description: string;
|
|
9798
|
-
constructor(body: PublicAmbiguous & FreestyleError);
|
|
9928
|
+
constructor(body: PublicAmbiguous & FreestyleError, traceId?: string | undefined);
|
|
9799
9929
|
}
|
|
9800
9930
|
interface PublicInvalid {
|
|
9801
9931
|
rev: string;
|
|
@@ -9803,17 +9933,19 @@ interface PublicInvalid {
|
|
|
9803
9933
|
}
|
|
9804
9934
|
declare class InvalidError extends Error {
|
|
9805
9935
|
body: PublicInvalid & FreestyleError;
|
|
9936
|
+
traceId?: string | undefined;
|
|
9806
9937
|
static readonly code: string;
|
|
9807
9938
|
static readonly statusCode: number;
|
|
9808
9939
|
static readonly description: string;
|
|
9809
|
-
constructor(body: PublicInvalid & FreestyleError);
|
|
9940
|
+
constructor(body: PublicInvalid & FreestyleError, traceId?: string | undefined);
|
|
9810
9941
|
}
|
|
9811
9942
|
declare class ConflictError extends Error {
|
|
9812
9943
|
body: unknown & FreestyleError;
|
|
9944
|
+
traceId?: string | undefined;
|
|
9813
9945
|
static readonly code: string;
|
|
9814
9946
|
static readonly statusCode: number;
|
|
9815
9947
|
static readonly description: string;
|
|
9816
|
-
constructor(body: unknown & FreestyleError);
|
|
9948
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9817
9949
|
}
|
|
9818
9950
|
interface PublicBranchAlreadyExists {
|
|
9819
9951
|
branch: string;
|
|
@@ -9821,10 +9953,11 @@ interface PublicBranchAlreadyExists {
|
|
|
9821
9953
|
}
|
|
9822
9954
|
declare class BranchAlreadyExistsError extends Error {
|
|
9823
9955
|
body: PublicBranchAlreadyExists & FreestyleError;
|
|
9956
|
+
traceId?: string | undefined;
|
|
9824
9957
|
static readonly code: string;
|
|
9825
9958
|
static readonly statusCode: number;
|
|
9826
9959
|
static readonly description: string;
|
|
9827
|
-
constructor(body: PublicBranchAlreadyExists & FreestyleError);
|
|
9960
|
+
constructor(body: PublicBranchAlreadyExists & FreestyleError, traceId?: string | undefined);
|
|
9828
9961
|
}
|
|
9829
9962
|
interface PublicPathNotFound {
|
|
9830
9963
|
path: string;
|
|
@@ -9832,10 +9965,11 @@ interface PublicPathNotFound {
|
|
|
9832
9965
|
}
|
|
9833
9966
|
declare class PathNotFoundError extends Error {
|
|
9834
9967
|
body: PublicPathNotFound & FreestyleError;
|
|
9968
|
+
traceId?: string | undefined;
|
|
9835
9969
|
static readonly code: string;
|
|
9836
9970
|
static readonly statusCode: number;
|
|
9837
9971
|
static readonly description: string;
|
|
9838
|
-
constructor(body: PublicPathNotFound & FreestyleError);
|
|
9972
|
+
constructor(body: PublicPathNotFound & FreestyleError, traceId?: string | undefined);
|
|
9839
9973
|
}
|
|
9840
9974
|
interface PublicReferenceNotFound {
|
|
9841
9975
|
reference: string;
|
|
@@ -9843,38 +9977,43 @@ interface PublicReferenceNotFound {
|
|
|
9843
9977
|
}
|
|
9844
9978
|
declare class ReferenceNotFoundError extends Error {
|
|
9845
9979
|
body: PublicReferenceNotFound & FreestyleError;
|
|
9980
|
+
traceId?: string | undefined;
|
|
9846
9981
|
static readonly code: string;
|
|
9847
9982
|
static readonly statusCode: number;
|
|
9848
9983
|
static readonly description: string;
|
|
9849
|
-
constructor(body: PublicReferenceNotFound & FreestyleError);
|
|
9984
|
+
constructor(body: PublicReferenceNotFound & FreestyleError, traceId?: string | undefined);
|
|
9850
9985
|
}
|
|
9851
9986
|
declare class InvalidServiceError extends Error {
|
|
9852
9987
|
body: unknown & FreestyleError;
|
|
9988
|
+
traceId?: string | undefined;
|
|
9853
9989
|
static readonly code: string;
|
|
9854
9990
|
static readonly statusCode: number;
|
|
9855
9991
|
static readonly description: string;
|
|
9856
|
-
constructor(body: unknown & FreestyleError);
|
|
9992
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9857
9993
|
}
|
|
9858
9994
|
declare class ExpectedServiceError extends Error {
|
|
9859
9995
|
body: unknown & FreestyleError;
|
|
9996
|
+
traceId?: string | undefined;
|
|
9860
9997
|
static readonly code: string;
|
|
9861
9998
|
static readonly statusCode: number;
|
|
9862
9999
|
static readonly description: string;
|
|
9863
|
-
constructor(body: unknown & FreestyleError);
|
|
10000
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9864
10001
|
}
|
|
9865
10002
|
declare class UnauthorizedError extends Error {
|
|
9866
10003
|
body: unknown & FreestyleError;
|
|
10004
|
+
traceId?: string | undefined;
|
|
9867
10005
|
static readonly code: string;
|
|
9868
10006
|
static readonly statusCode: number;
|
|
9869
10007
|
static readonly description: string;
|
|
9870
|
-
constructor(body: unknown & FreestyleError);
|
|
10008
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9871
10009
|
}
|
|
9872
10010
|
declare class ForbiddenError extends Error {
|
|
9873
10011
|
body: unknown & FreestyleError;
|
|
10012
|
+
traceId?: string | undefined;
|
|
9874
10013
|
static readonly code: string;
|
|
9875
10014
|
static readonly statusCode: number;
|
|
9876
10015
|
static readonly description: string;
|
|
9877
|
-
constructor(body: unknown & FreestyleError);
|
|
10016
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9878
10017
|
}
|
|
9879
10018
|
interface PublicInvalidAccountId {
|
|
9880
10019
|
accountId: string;
|
|
@@ -9882,17 +10021,19 @@ interface PublicInvalidAccountId {
|
|
|
9882
10021
|
}
|
|
9883
10022
|
declare class InvalidAccountIdError extends Error {
|
|
9884
10023
|
body: PublicInvalidAccountId & FreestyleError;
|
|
10024
|
+
traceId?: string | undefined;
|
|
9885
10025
|
static readonly code: string;
|
|
9886
10026
|
static readonly statusCode: number;
|
|
9887
10027
|
static readonly description: string;
|
|
9888
|
-
constructor(body: PublicInvalidAccountId & FreestyleError);
|
|
10028
|
+
constructor(body: PublicInvalidAccountId & FreestyleError, traceId?: string | undefined);
|
|
9889
10029
|
}
|
|
9890
10030
|
declare class SourceImportConflictError extends Error {
|
|
9891
10031
|
body: unknown & FreestyleError;
|
|
10032
|
+
traceId?: string | undefined;
|
|
9892
10033
|
static readonly code: string;
|
|
9893
10034
|
static readonly statusCode: number;
|
|
9894
10035
|
static readonly description: string;
|
|
9895
|
-
constructor(body: unknown & FreestyleError);
|
|
10036
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9896
10037
|
}
|
|
9897
10038
|
interface PublicSourceUnauthorized {
|
|
9898
10039
|
url: string;
|
|
@@ -9900,10 +10041,11 @@ interface PublicSourceUnauthorized {
|
|
|
9900
10041
|
}
|
|
9901
10042
|
declare class SourceUnauthorizedError extends Error {
|
|
9902
10043
|
body: PublicSourceUnauthorized & FreestyleError;
|
|
10044
|
+
traceId?: string | undefined;
|
|
9903
10045
|
static readonly code: string;
|
|
9904
10046
|
static readonly statusCode: number;
|
|
9905
10047
|
static readonly description: string;
|
|
9906
|
-
constructor(body: PublicSourceUnauthorized & FreestyleError);
|
|
10048
|
+
constructor(body: PublicSourceUnauthorized & FreestyleError, traceId?: string | undefined);
|
|
9907
10049
|
}
|
|
9908
10050
|
interface PublicSourceNotFound {
|
|
9909
10051
|
url: string;
|
|
@@ -9911,10 +10053,11 @@ interface PublicSourceNotFound {
|
|
|
9911
10053
|
}
|
|
9912
10054
|
declare class SourceNotFoundError extends Error {
|
|
9913
10055
|
body: PublicSourceNotFound & FreestyleError;
|
|
10056
|
+
traceId?: string | undefined;
|
|
9914
10057
|
static readonly code: string;
|
|
9915
10058
|
static readonly statusCode: number;
|
|
9916
10059
|
static readonly description: string;
|
|
9917
|
-
constructor(body: PublicSourceNotFound & FreestyleError);
|
|
10060
|
+
constructor(body: PublicSourceNotFound & FreestyleError, traceId?: string | undefined);
|
|
9918
10061
|
}
|
|
9919
10062
|
interface PublicImportSubdirNotFound {
|
|
9920
10063
|
/**
|
|
@@ -9926,10 +10069,11 @@ interface PublicImportSubdirNotFound {
|
|
|
9926
10069
|
}
|
|
9927
10070
|
declare class ImportSubdirNotFoundError extends Error {
|
|
9928
10071
|
body: PublicImportSubdirNotFound & FreestyleError;
|
|
10072
|
+
traceId?: string | undefined;
|
|
9929
10073
|
static readonly code: string;
|
|
9930
10074
|
static readonly statusCode: number;
|
|
9931
10075
|
static readonly description: string;
|
|
9932
|
-
constructor(body: PublicImportSubdirNotFound & FreestyleError);
|
|
10076
|
+
constructor(body: PublicImportSubdirNotFound & FreestyleError, traceId?: string | undefined);
|
|
9933
10077
|
}
|
|
9934
10078
|
interface PublicRepoAlreadyExists {
|
|
9935
10079
|
repoId: string;
|
|
@@ -9937,10 +10081,11 @@ interface PublicRepoAlreadyExists {
|
|
|
9937
10081
|
}
|
|
9938
10082
|
declare class RepoAlreadyExistsError extends Error {
|
|
9939
10083
|
body: PublicRepoAlreadyExists & FreestyleError;
|
|
10084
|
+
traceId?: string | undefined;
|
|
9940
10085
|
static readonly code: string;
|
|
9941
10086
|
static readonly statusCode: number;
|
|
9942
10087
|
static readonly description: string;
|
|
9943
|
-
constructor(body: PublicRepoAlreadyExists & FreestyleError);
|
|
10088
|
+
constructor(body: PublicRepoAlreadyExists & FreestyleError, traceId?: string | undefined);
|
|
9944
10089
|
}
|
|
9945
10090
|
interface PublicTagNotFound {
|
|
9946
10091
|
hash: string;
|
|
@@ -9948,10 +10093,11 @@ interface PublicTagNotFound {
|
|
|
9948
10093
|
}
|
|
9949
10094
|
declare class TagNotFoundError extends Error {
|
|
9950
10095
|
body: PublicTagNotFound & FreestyleError;
|
|
10096
|
+
traceId?: string | undefined;
|
|
9951
10097
|
static readonly code: string;
|
|
9952
10098
|
static readonly statusCode: number;
|
|
9953
10099
|
static readonly description: string;
|
|
9954
|
-
constructor(body: PublicTagNotFound & FreestyleError);
|
|
10100
|
+
constructor(body: PublicTagNotFound & FreestyleError, traceId?: string | undefined);
|
|
9955
10101
|
}
|
|
9956
10102
|
interface PublicInvalidRevision {
|
|
9957
10103
|
revision: string;
|
|
@@ -9959,10 +10105,11 @@ interface PublicInvalidRevision {
|
|
|
9959
10105
|
}
|
|
9960
10106
|
declare class InvalidRevisionError extends Error {
|
|
9961
10107
|
body: PublicInvalidRevision & FreestyleError;
|
|
10108
|
+
traceId?: string | undefined;
|
|
9962
10109
|
static readonly code: string;
|
|
9963
10110
|
static readonly statusCode: number;
|
|
9964
10111
|
static readonly description: string;
|
|
9965
|
-
constructor(body: PublicInvalidRevision & FreestyleError);
|
|
10112
|
+
constructor(body: PublicInvalidRevision & FreestyleError, traceId?: string | undefined);
|
|
9966
10113
|
}
|
|
9967
10114
|
interface PublicBlobNotFound {
|
|
9968
10115
|
hash: string;
|
|
@@ -9970,17 +10117,19 @@ interface PublicBlobNotFound {
|
|
|
9970
10117
|
}
|
|
9971
10118
|
declare class BlobNotFoundError extends Error {
|
|
9972
10119
|
body: PublicBlobNotFound & FreestyleError;
|
|
10120
|
+
traceId?: string | undefined;
|
|
9973
10121
|
static readonly code: string;
|
|
9974
10122
|
static readonly statusCode: number;
|
|
9975
10123
|
static readonly description: string;
|
|
9976
|
-
constructor(body: PublicBlobNotFound & FreestyleError);
|
|
10124
|
+
constructor(body: PublicBlobNotFound & FreestyleError, traceId?: string | undefined);
|
|
9977
10125
|
}
|
|
9978
10126
|
declare class SendErrorError extends Error {
|
|
9979
10127
|
body: unknown & FreestyleError;
|
|
10128
|
+
traceId?: string | undefined;
|
|
9980
10129
|
static readonly code: string;
|
|
9981
10130
|
static readonly statusCode: number;
|
|
9982
10131
|
static readonly description: string;
|
|
9983
|
-
constructor(body: unknown & FreestyleError);
|
|
10132
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
9984
10133
|
}
|
|
9985
10134
|
type LfsTransferAdapter = ("basic" | "multipart" | "ssh") | {
|
|
9986
10135
|
other: string;
|
|
@@ -9992,10 +10141,11 @@ interface PublicUnsupportedTransfer {
|
|
|
9992
10141
|
}
|
|
9993
10142
|
declare class UnsupportedTransferError extends Error {
|
|
9994
10143
|
body: PublicUnsupportedTransfer & FreestyleError;
|
|
10144
|
+
traceId?: string | undefined;
|
|
9995
10145
|
static readonly code: string;
|
|
9996
10146
|
static readonly statusCode: number;
|
|
9997
10147
|
static readonly description: string;
|
|
9998
|
-
constructor(body: PublicUnsupportedTransfer & FreestyleError);
|
|
10148
|
+
constructor(body: PublicUnsupportedTransfer & FreestyleError, traceId?: string | undefined);
|
|
9999
10149
|
}
|
|
10000
10150
|
interface PublicDiffInvalidPathPattern {
|
|
10001
10151
|
reason: string;
|
|
@@ -10003,10 +10153,11 @@ interface PublicDiffInvalidPathPattern {
|
|
|
10003
10153
|
}
|
|
10004
10154
|
declare class DiffInvalidPathPatternError extends Error {
|
|
10005
10155
|
body: PublicDiffInvalidPathPattern & FreestyleError;
|
|
10156
|
+
traceId?: string | undefined;
|
|
10006
10157
|
static readonly code: string;
|
|
10007
10158
|
static readonly statusCode: number;
|
|
10008
10159
|
static readonly description: string;
|
|
10009
|
-
constructor(body: PublicDiffInvalidPathPattern & FreestyleError);
|
|
10160
|
+
constructor(body: PublicDiffInvalidPathPattern & FreestyleError, traceId?: string | undefined);
|
|
10010
10161
|
}
|
|
10011
10162
|
interface PublicDiffInvalidRegex {
|
|
10012
10163
|
reason: string;
|
|
@@ -10014,17 +10165,19 @@ interface PublicDiffInvalidRegex {
|
|
|
10014
10165
|
}
|
|
10015
10166
|
declare class DiffInvalidRegexError extends Error {
|
|
10016
10167
|
body: PublicDiffInvalidRegex & FreestyleError;
|
|
10168
|
+
traceId?: string | undefined;
|
|
10017
10169
|
static readonly code: string;
|
|
10018
10170
|
static readonly statusCode: number;
|
|
10019
10171
|
static readonly description: string;
|
|
10020
|
-
constructor(body: PublicDiffInvalidRegex & FreestyleError);
|
|
10172
|
+
constructor(body: PublicDiffInvalidRegex & FreestyleError, traceId?: string | undefined);
|
|
10021
10173
|
}
|
|
10022
10174
|
declare class DiffEmptyQueryError extends Error {
|
|
10023
10175
|
body: unknown & FreestyleError;
|
|
10176
|
+
traceId?: string | undefined;
|
|
10024
10177
|
static readonly code: string;
|
|
10025
10178
|
static readonly statusCode: number;
|
|
10026
10179
|
static readonly description: string;
|
|
10027
|
-
constructor(body: unknown & FreestyleError);
|
|
10180
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10028
10181
|
}
|
|
10029
10182
|
interface PublicCommitInvalidRegex {
|
|
10030
10183
|
reason: string;
|
|
@@ -10032,17 +10185,19 @@ interface PublicCommitInvalidRegex {
|
|
|
10032
10185
|
}
|
|
10033
10186
|
declare class CommitInvalidRegexError extends Error {
|
|
10034
10187
|
body: PublicCommitInvalidRegex & FreestyleError;
|
|
10188
|
+
traceId?: string | undefined;
|
|
10035
10189
|
static readonly code: string;
|
|
10036
10190
|
static readonly statusCode: number;
|
|
10037
10191
|
static readonly description: string;
|
|
10038
|
-
constructor(body: PublicCommitInvalidRegex & FreestyleError);
|
|
10192
|
+
constructor(body: PublicCommitInvalidRegex & FreestyleError, traceId?: string | undefined);
|
|
10039
10193
|
}
|
|
10040
10194
|
declare class CommitEmptyQueryError extends Error {
|
|
10041
10195
|
body: unknown & FreestyleError;
|
|
10196
|
+
traceId?: string | undefined;
|
|
10042
10197
|
static readonly code: string;
|
|
10043
10198
|
static readonly statusCode: number;
|
|
10044
10199
|
static readonly description: string;
|
|
10045
|
-
constructor(body: unknown & FreestyleError);
|
|
10200
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10046
10201
|
}
|
|
10047
10202
|
interface PublicFilenameInvalidPattern {
|
|
10048
10203
|
reason: string;
|
|
@@ -10050,17 +10205,19 @@ interface PublicFilenameInvalidPattern {
|
|
|
10050
10205
|
}
|
|
10051
10206
|
declare class FilenameInvalidPatternError extends Error {
|
|
10052
10207
|
body: PublicFilenameInvalidPattern & FreestyleError;
|
|
10208
|
+
traceId?: string | undefined;
|
|
10053
10209
|
static readonly code: string;
|
|
10054
10210
|
static readonly statusCode: number;
|
|
10055
10211
|
static readonly description: string;
|
|
10056
|
-
constructor(body: PublicFilenameInvalidPattern & FreestyleError);
|
|
10212
|
+
constructor(body: PublicFilenameInvalidPattern & FreestyleError, traceId?: string | undefined);
|
|
10057
10213
|
}
|
|
10058
10214
|
declare class FilenameEmptyQueryError extends Error {
|
|
10059
10215
|
body: unknown & FreestyleError;
|
|
10216
|
+
traceId?: string | undefined;
|
|
10060
10217
|
static readonly code: string;
|
|
10061
10218
|
static readonly statusCode: number;
|
|
10062
10219
|
static readonly description: string;
|
|
10063
|
-
constructor(body: unknown & FreestyleError);
|
|
10220
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10064
10221
|
}
|
|
10065
10222
|
interface PublicInvalidRegex {
|
|
10066
10223
|
reason: string;
|
|
@@ -10068,10 +10225,11 @@ interface PublicInvalidRegex {
|
|
|
10068
10225
|
}
|
|
10069
10226
|
declare class InvalidRegexError extends Error {
|
|
10070
10227
|
body: PublicInvalidRegex & FreestyleError;
|
|
10228
|
+
traceId?: string | undefined;
|
|
10071
10229
|
static readonly code: string;
|
|
10072
10230
|
static readonly statusCode: number;
|
|
10073
10231
|
static readonly description: string;
|
|
10074
|
-
constructor(body: PublicInvalidRegex & FreestyleError);
|
|
10232
|
+
constructor(body: PublicInvalidRegex & FreestyleError, traceId?: string | undefined);
|
|
10075
10233
|
}
|
|
10076
10234
|
interface PublicInvalidPathPattern {
|
|
10077
10235
|
reason: string;
|
|
@@ -10079,24 +10237,27 @@ interface PublicInvalidPathPattern {
|
|
|
10079
10237
|
}
|
|
10080
10238
|
declare class InvalidPathPatternError extends Error {
|
|
10081
10239
|
body: PublicInvalidPathPattern & FreestyleError;
|
|
10240
|
+
traceId?: string | undefined;
|
|
10082
10241
|
static readonly code: string;
|
|
10083
10242
|
static readonly statusCode: number;
|
|
10084
10243
|
static readonly description: string;
|
|
10085
|
-
constructor(body: PublicInvalidPathPattern & FreestyleError);
|
|
10244
|
+
constructor(body: PublicInvalidPathPattern & FreestyleError, traceId?: string | undefined);
|
|
10086
10245
|
}
|
|
10087
10246
|
declare class EmptyQueryError extends Error {
|
|
10088
10247
|
body: unknown & FreestyleError;
|
|
10248
|
+
traceId?: string | undefined;
|
|
10089
10249
|
static readonly code: string;
|
|
10090
10250
|
static readonly statusCode: number;
|
|
10091
10251
|
static readonly description: string;
|
|
10092
|
-
constructor(body: unknown & FreestyleError);
|
|
10252
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10093
10253
|
}
|
|
10094
10254
|
declare class PackfileError extends Error {
|
|
10095
10255
|
body: unknown & FreestyleError;
|
|
10256
|
+
traceId?: string | undefined;
|
|
10096
10257
|
static readonly code: string;
|
|
10097
10258
|
static readonly statusCode: number;
|
|
10098
10259
|
static readonly description: string;
|
|
10099
|
-
constructor(body: unknown & FreestyleError);
|
|
10260
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10100
10261
|
}
|
|
10101
10262
|
interface PublicInvalidRange {
|
|
10102
10263
|
since: string;
|
|
@@ -10105,17 +10266,19 @@ interface PublicInvalidRange {
|
|
|
10105
10266
|
}
|
|
10106
10267
|
declare class InvalidRangeError extends Error {
|
|
10107
10268
|
body: PublicInvalidRange & FreestyleError;
|
|
10269
|
+
traceId?: string | undefined;
|
|
10108
10270
|
static readonly code: string;
|
|
10109
10271
|
static readonly statusCode: number;
|
|
10110
10272
|
static readonly description: string;
|
|
10111
|
-
constructor(body: PublicInvalidRange & FreestyleError);
|
|
10273
|
+
constructor(body: PublicInvalidRange & FreestyleError, traceId?: string | undefined);
|
|
10112
10274
|
}
|
|
10113
10275
|
declare class OffsetWithSelectorError extends Error {
|
|
10114
10276
|
body: unknown & FreestyleError;
|
|
10277
|
+
traceId?: string | undefined;
|
|
10115
10278
|
static readonly code: string;
|
|
10116
10279
|
static readonly statusCode: number;
|
|
10117
10280
|
static readonly description: string;
|
|
10118
|
-
constructor(body: unknown & FreestyleError);
|
|
10281
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10119
10282
|
}
|
|
10120
10283
|
interface PublicCommitNotInBranch {
|
|
10121
10284
|
sha: string;
|
|
@@ -10124,17 +10287,19 @@ interface PublicCommitNotInBranch {
|
|
|
10124
10287
|
}
|
|
10125
10288
|
declare class CommitNotInBranchError extends Error {
|
|
10126
10289
|
body: PublicCommitNotInBranch & FreestyleError;
|
|
10290
|
+
traceId?: string | undefined;
|
|
10127
10291
|
static readonly code: string;
|
|
10128
10292
|
static readonly statusCode: number;
|
|
10129
10293
|
static readonly description: string;
|
|
10130
|
-
constructor(body: PublicCommitNotInBranch & FreestyleError);
|
|
10294
|
+
constructor(body: PublicCommitNotInBranch & FreestyleError, traceId?: string | undefined);
|
|
10131
10295
|
}
|
|
10132
10296
|
declare class GitHubSyncConflictError extends Error {
|
|
10133
10297
|
body: unknown & FreestyleError;
|
|
10298
|
+
traceId?: string | undefined;
|
|
10134
10299
|
static readonly code: string;
|
|
10135
10300
|
static readonly statusCode: number;
|
|
10136
10301
|
static readonly description: string;
|
|
10137
|
-
constructor(body: unknown & FreestyleError);
|
|
10302
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10138
10303
|
}
|
|
10139
10304
|
interface InvalidObjectIdPublic {
|
|
10140
10305
|
hash: string;
|
|
@@ -10142,10 +10307,11 @@ interface InvalidObjectIdPublic {
|
|
|
10142
10307
|
}
|
|
10143
10308
|
declare class InvalidObjectIdError extends Error {
|
|
10144
10309
|
body: InvalidObjectIdPublic & FreestyleError;
|
|
10310
|
+
traceId?: string | undefined;
|
|
10145
10311
|
static readonly code: string;
|
|
10146
10312
|
static readonly statusCode: number;
|
|
10147
10313
|
static readonly description: string;
|
|
10148
|
-
constructor(body: InvalidObjectIdPublic & FreestyleError);
|
|
10314
|
+
constructor(body: InvalidObjectIdPublic & FreestyleError, traceId?: string | undefined);
|
|
10149
10315
|
}
|
|
10150
10316
|
interface PublicTooManyConcurrentRepairs {
|
|
10151
10317
|
current: number;
|
|
@@ -10154,10 +10320,11 @@ interface PublicTooManyConcurrentRepairs {
|
|
|
10154
10320
|
}
|
|
10155
10321
|
declare class TooManyConcurrentRepairsError extends Error {
|
|
10156
10322
|
body: PublicTooManyConcurrentRepairs & FreestyleError;
|
|
10323
|
+
traceId?: string | undefined;
|
|
10157
10324
|
static readonly code: string;
|
|
10158
10325
|
static readonly statusCode: number;
|
|
10159
10326
|
static readonly description: string;
|
|
10160
|
-
constructor(body: PublicTooManyConcurrentRepairs & FreestyleError);
|
|
10327
|
+
constructor(body: PublicTooManyConcurrentRepairs & FreestyleError, traceId?: string | undefined);
|
|
10161
10328
|
}
|
|
10162
10329
|
interface PublicAlreadyInProgress {
|
|
10163
10330
|
existingJobId: string;
|
|
@@ -10165,10 +10332,11 @@ interface PublicAlreadyInProgress {
|
|
|
10165
10332
|
}
|
|
10166
10333
|
declare class AlreadyInProgressError extends Error {
|
|
10167
10334
|
body: PublicAlreadyInProgress & FreestyleError;
|
|
10335
|
+
traceId?: string | undefined;
|
|
10168
10336
|
static readonly code: string;
|
|
10169
10337
|
static readonly statusCode: number;
|
|
10170
10338
|
static readonly description: string;
|
|
10171
|
-
constructor(body: PublicAlreadyInProgress & FreestyleError);
|
|
10339
|
+
constructor(body: PublicAlreadyInProgress & FreestyleError, traceId?: string | undefined);
|
|
10172
10340
|
}
|
|
10173
10341
|
interface PublicJobNotFound {
|
|
10174
10342
|
jobId: string;
|
|
@@ -10176,31 +10344,35 @@ interface PublicJobNotFound {
|
|
|
10176
10344
|
}
|
|
10177
10345
|
declare class JobNotFoundError extends Error {
|
|
10178
10346
|
body: PublicJobNotFound & FreestyleError;
|
|
10347
|
+
traceId?: string | undefined;
|
|
10179
10348
|
static readonly code: string;
|
|
10180
10349
|
static readonly statusCode: number;
|
|
10181
10350
|
static readonly description: string;
|
|
10182
|
-
constructor(body: PublicJobNotFound & FreestyleError);
|
|
10351
|
+
constructor(body: PublicJobNotFound & FreestyleError, traceId?: string | undefined);
|
|
10183
10352
|
}
|
|
10184
10353
|
declare class UnavailableError extends Error {
|
|
10185
10354
|
body: unknown & FreestyleError;
|
|
10355
|
+
traceId?: string | undefined;
|
|
10186
10356
|
static readonly code: string;
|
|
10187
10357
|
static readonly statusCode: number;
|
|
10188
10358
|
static readonly description: string;
|
|
10189
|
-
constructor(body: unknown & FreestyleError);
|
|
10359
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10190
10360
|
}
|
|
10191
10361
|
declare class ScheduleNotFoundError extends Error {
|
|
10192
10362
|
body: unknown & FreestyleError;
|
|
10363
|
+
traceId?: string | undefined;
|
|
10193
10364
|
static readonly code: string;
|
|
10194
10365
|
static readonly statusCode: number;
|
|
10195
10366
|
static readonly description: string;
|
|
10196
|
-
constructor(body: unknown & FreestyleError);
|
|
10367
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10197
10368
|
}
|
|
10198
10369
|
declare class ServiceUnavailableError extends Error {
|
|
10199
10370
|
body: unknown & FreestyleError;
|
|
10371
|
+
traceId?: string | undefined;
|
|
10200
10372
|
static readonly code: string;
|
|
10201
10373
|
static readonly statusCode: number;
|
|
10202
10374
|
static readonly description: string;
|
|
10203
|
-
constructor(body: unknown & FreestyleError);
|
|
10375
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10204
10376
|
}
|
|
10205
10377
|
interface PublicRepairAlreadyInProgress {
|
|
10206
10378
|
existingJobId: string;
|
|
@@ -10208,10 +10380,11 @@ interface PublicRepairAlreadyInProgress {
|
|
|
10208
10380
|
}
|
|
10209
10381
|
declare class RepairAlreadyInProgressError extends Error {
|
|
10210
10382
|
body: PublicRepairAlreadyInProgress & FreestyleError;
|
|
10383
|
+
traceId?: string | undefined;
|
|
10211
10384
|
static readonly code: string;
|
|
10212
10385
|
static readonly statusCode: number;
|
|
10213
10386
|
static readonly description: string;
|
|
10214
|
-
constructor(body: PublicRepairAlreadyInProgress & FreestyleError);
|
|
10387
|
+
constructor(body: PublicRepairAlreadyInProgress & FreestyleError, traceId?: string | undefined);
|
|
10215
10388
|
}
|
|
10216
10389
|
interface PublicMemoryStorageQuotaExceeded {
|
|
10217
10390
|
limit: number;
|
|
@@ -10221,10 +10394,11 @@ interface PublicMemoryStorageQuotaExceeded {
|
|
|
10221
10394
|
}
|
|
10222
10395
|
declare class MemoryStorageQuotaExceededError extends Error {
|
|
10223
10396
|
body: PublicMemoryStorageQuotaExceeded & FreestyleError;
|
|
10397
|
+
traceId?: string | undefined;
|
|
10224
10398
|
static readonly code: string;
|
|
10225
10399
|
static readonly statusCode: number;
|
|
10226
10400
|
static readonly description: string;
|
|
10227
|
-
constructor(body: PublicMemoryStorageQuotaExceeded & FreestyleError);
|
|
10401
|
+
constructor(body: PublicMemoryStorageQuotaExceeded & FreestyleError, traceId?: string | undefined);
|
|
10228
10402
|
}
|
|
10229
10403
|
interface PublicRootfsStorageQuotaExceeded {
|
|
10230
10404
|
limit: number;
|
|
@@ -10234,10 +10408,11 @@ interface PublicRootfsStorageQuotaExceeded {
|
|
|
10234
10408
|
}
|
|
10235
10409
|
declare class RootfsStorageQuotaExceededError extends Error {
|
|
10236
10410
|
body: PublicRootfsStorageQuotaExceeded & FreestyleError;
|
|
10411
|
+
traceId?: string | undefined;
|
|
10237
10412
|
static readonly code: string;
|
|
10238
10413
|
static readonly statusCode: number;
|
|
10239
10414
|
static readonly description: string;
|
|
10240
|
-
constructor(body: PublicRootfsStorageQuotaExceeded & FreestyleError);
|
|
10415
|
+
constructor(body: PublicRootfsStorageQuotaExceeded & FreestyleError, traceId?: string | undefined);
|
|
10241
10416
|
}
|
|
10242
10417
|
interface PublicRootfsSizeTooLarge {
|
|
10243
10418
|
gotGb: number;
|
|
@@ -10245,10 +10420,11 @@ interface PublicRootfsSizeTooLarge {
|
|
|
10245
10420
|
}
|
|
10246
10421
|
declare class RootfsSizeTooLargeError extends Error {
|
|
10247
10422
|
body: PublicRootfsSizeTooLarge & FreestyleError;
|
|
10423
|
+
traceId?: string | undefined;
|
|
10248
10424
|
static readonly code: string;
|
|
10249
10425
|
static readonly statusCode: number;
|
|
10250
10426
|
static readonly description: string;
|
|
10251
|
-
constructor(body: PublicRootfsSizeTooLarge & FreestyleError);
|
|
10427
|
+
constructor(body: PublicRootfsSizeTooLarge & FreestyleError, traceId?: string | undefined);
|
|
10252
10428
|
}
|
|
10253
10429
|
interface PublicMemSizeTooLarge {
|
|
10254
10430
|
gotGb: number;
|
|
@@ -10256,10 +10432,11 @@ interface PublicMemSizeTooLarge {
|
|
|
10256
10432
|
}
|
|
10257
10433
|
declare class MemSizeTooLargeError extends Error {
|
|
10258
10434
|
body: PublicMemSizeTooLarge & FreestyleError;
|
|
10435
|
+
traceId?: string | undefined;
|
|
10259
10436
|
static readonly code: string;
|
|
10260
10437
|
static readonly statusCode: number;
|
|
10261
10438
|
static readonly description: string;
|
|
10262
|
-
constructor(body: PublicMemSizeTooLarge & FreestyleError);
|
|
10439
|
+
constructor(body: PublicMemSizeTooLarge & FreestyleError, traceId?: string | undefined);
|
|
10263
10440
|
}
|
|
10264
10441
|
interface PublicRootfsOverPlanLimit {
|
|
10265
10442
|
got: number;
|
|
@@ -10268,10 +10445,11 @@ interface PublicRootfsOverPlanLimit {
|
|
|
10268
10445
|
}
|
|
10269
10446
|
declare class RootfsOverPlanLimitError extends Error {
|
|
10270
10447
|
body: PublicRootfsOverPlanLimit & FreestyleError;
|
|
10448
|
+
traceId?: string | undefined;
|
|
10271
10449
|
static readonly code: string;
|
|
10272
10450
|
static readonly statusCode: number;
|
|
10273
10451
|
static readonly description: string;
|
|
10274
|
-
constructor(body: PublicRootfsOverPlanLimit & FreestyleError);
|
|
10452
|
+
constructor(body: PublicRootfsOverPlanLimit & FreestyleError, traceId?: string | undefined);
|
|
10275
10453
|
}
|
|
10276
10454
|
interface PublicMemOverPlanLimit {
|
|
10277
10455
|
got: number;
|
|
@@ -10280,10 +10458,11 @@ interface PublicMemOverPlanLimit {
|
|
|
10280
10458
|
}
|
|
10281
10459
|
declare class MemOverPlanLimitError extends Error {
|
|
10282
10460
|
body: PublicMemOverPlanLimit & FreestyleError;
|
|
10461
|
+
traceId?: string | undefined;
|
|
10283
10462
|
static readonly code: string;
|
|
10284
10463
|
static readonly statusCode: number;
|
|
10285
10464
|
static readonly description: string;
|
|
10286
|
-
constructor(body: PublicMemOverPlanLimit & FreestyleError);
|
|
10465
|
+
constructor(body: PublicMemOverPlanLimit & FreestyleError, traceId?: string | undefined);
|
|
10287
10466
|
}
|
|
10288
10467
|
interface PublicVcpuOverPlanLimit {
|
|
10289
10468
|
got: number;
|
|
@@ -10292,17 +10471,19 @@ interface PublicVcpuOverPlanLimit {
|
|
|
10292
10471
|
}
|
|
10293
10472
|
declare class VcpuOverPlanLimitError extends Error {
|
|
10294
10473
|
body: PublicVcpuOverPlanLimit & FreestyleError;
|
|
10474
|
+
traceId?: string | undefined;
|
|
10295
10475
|
static readonly code: string;
|
|
10296
10476
|
static readonly statusCode: number;
|
|
10297
10477
|
static readonly description: string;
|
|
10298
|
-
constructor(body: PublicVcpuOverPlanLimit & FreestyleError);
|
|
10478
|
+
constructor(body: PublicVcpuOverPlanLimit & FreestyleError, traceId?: string | undefined);
|
|
10299
10479
|
}
|
|
10300
10480
|
declare class CustomSizingNotAllowedError extends Error {
|
|
10301
10481
|
body: unknown & FreestyleError;
|
|
10482
|
+
traceId?: string | undefined;
|
|
10302
10483
|
static readonly code: string;
|
|
10303
10484
|
static readonly statusCode: number;
|
|
10304
10485
|
static readonly description: string;
|
|
10305
|
-
constructor(body: unknown & FreestyleError);
|
|
10486
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10306
10487
|
}
|
|
10307
10488
|
interface PublicSnapshotLimitExceeded {
|
|
10308
10489
|
limit: number;
|
|
@@ -10311,17 +10492,19 @@ interface PublicSnapshotLimitExceeded {
|
|
|
10311
10492
|
}
|
|
10312
10493
|
declare class SnapshotLimitExceededError extends Error {
|
|
10313
10494
|
body: PublicSnapshotLimitExceeded & FreestyleError;
|
|
10495
|
+
traceId?: string | undefined;
|
|
10314
10496
|
static readonly code: string;
|
|
10315
10497
|
static readonly statusCode: number;
|
|
10316
10498
|
static readonly description: string;
|
|
10317
|
-
constructor(body: PublicSnapshotLimitExceeded & FreestyleError);
|
|
10499
|
+
constructor(body: PublicSnapshotLimitExceeded & FreestyleError, traceId?: string | undefined);
|
|
10318
10500
|
}
|
|
10319
10501
|
declare class PersistentVmsNotAllowedError extends Error {
|
|
10320
10502
|
body: unknown & FreestyleError;
|
|
10503
|
+
traceId?: string | undefined;
|
|
10321
10504
|
static readonly code: string;
|
|
10322
10505
|
static readonly statusCode: number;
|
|
10323
10506
|
static readonly description: string;
|
|
10324
|
-
constructor(body: unknown & FreestyleError);
|
|
10507
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10325
10508
|
}
|
|
10326
10509
|
interface PublicTotalVmLimitExceeded {
|
|
10327
10510
|
limit: number;
|
|
@@ -10330,10 +10513,11 @@ interface PublicTotalVmLimitExceeded {
|
|
|
10330
10513
|
}
|
|
10331
10514
|
declare class TotalVmLimitExceededError extends Error {
|
|
10332
10515
|
body: PublicTotalVmLimitExceeded & FreestyleError;
|
|
10516
|
+
traceId?: string | undefined;
|
|
10333
10517
|
static readonly code: string;
|
|
10334
10518
|
static readonly statusCode: number;
|
|
10335
10519
|
static readonly description: string;
|
|
10336
|
-
constructor(body: PublicTotalVmLimitExceeded & FreestyleError);
|
|
10520
|
+
constructor(body: PublicTotalVmLimitExceeded & FreestyleError, traceId?: string | undefined);
|
|
10337
10521
|
}
|
|
10338
10522
|
interface PublicVmLimitExceeded {
|
|
10339
10523
|
limit: number;
|
|
@@ -10342,10 +10526,11 @@ interface PublicVmLimitExceeded {
|
|
|
10342
10526
|
}
|
|
10343
10527
|
declare class VmLimitExceededError extends Error {
|
|
10344
10528
|
body: PublicVmLimitExceeded & FreestyleError;
|
|
10529
|
+
traceId?: string | undefined;
|
|
10345
10530
|
static readonly code: string;
|
|
10346
10531
|
static readonly statusCode: number;
|
|
10347
10532
|
static readonly description: string;
|
|
10348
|
-
constructor(body: PublicVmLimitExceeded & FreestyleError);
|
|
10533
|
+
constructor(body: PublicVmLimitExceeded & FreestyleError, traceId?: string | undefined);
|
|
10349
10534
|
}
|
|
10350
10535
|
interface PublicObservabilityDatabaseError {
|
|
10351
10536
|
message: string;
|
|
@@ -10353,10 +10538,11 @@ interface PublicObservabilityDatabaseError {
|
|
|
10353
10538
|
}
|
|
10354
10539
|
declare class ObservabilityDatabaseErrorError extends Error {
|
|
10355
10540
|
body: PublicObservabilityDatabaseError & FreestyleError;
|
|
10541
|
+
traceId?: string | undefined;
|
|
10356
10542
|
static readonly code: string;
|
|
10357
10543
|
static readonly statusCode: number;
|
|
10358
10544
|
static readonly description: string;
|
|
10359
|
-
constructor(body: PublicObservabilityDatabaseError & FreestyleError);
|
|
10545
|
+
constructor(body: PublicObservabilityDatabaseError & FreestyleError, traceId?: string | undefined);
|
|
10360
10546
|
}
|
|
10361
10547
|
interface PublicObservabilityAccessDenied {
|
|
10362
10548
|
deploymentId: string;
|
|
@@ -10364,10 +10550,11 @@ interface PublicObservabilityAccessDenied {
|
|
|
10364
10550
|
}
|
|
10365
10551
|
declare class ObservabilityAccessDeniedError extends Error {
|
|
10366
10552
|
body: PublicObservabilityAccessDenied & FreestyleError;
|
|
10553
|
+
traceId?: string | undefined;
|
|
10367
10554
|
static readonly code: string;
|
|
10368
10555
|
static readonly statusCode: number;
|
|
10369
10556
|
static readonly description: string;
|
|
10370
|
-
constructor(body: PublicObservabilityAccessDenied & FreestyleError);
|
|
10557
|
+
constructor(body: PublicObservabilityAccessDenied & FreestyleError, traceId?: string | undefined);
|
|
10371
10558
|
}
|
|
10372
10559
|
interface PublicParseLogsFailed {
|
|
10373
10560
|
message: string;
|
|
@@ -10375,10 +10562,11 @@ interface PublicParseLogsFailed {
|
|
|
10375
10562
|
}
|
|
10376
10563
|
declare class ParseLogsFailedError extends Error {
|
|
10377
10564
|
body: PublicParseLogsFailed & FreestyleError;
|
|
10565
|
+
traceId?: string | undefined;
|
|
10378
10566
|
static readonly code: string;
|
|
10379
10567
|
static readonly statusCode: number;
|
|
10380
10568
|
static readonly description: string;
|
|
10381
|
-
constructor(body: PublicParseLogsFailed & FreestyleError);
|
|
10569
|
+
constructor(body: PublicParseLogsFailed & FreestyleError, traceId?: string | undefined);
|
|
10382
10570
|
}
|
|
10383
10571
|
interface PublicRetrieveLogsFailed {
|
|
10384
10572
|
message: string;
|
|
@@ -10386,10 +10574,11 @@ interface PublicRetrieveLogsFailed {
|
|
|
10386
10574
|
}
|
|
10387
10575
|
declare class RetrieveLogsFailedError extends Error {
|
|
10388
10576
|
body: PublicRetrieveLogsFailed & FreestyleError;
|
|
10577
|
+
traceId?: string | undefined;
|
|
10389
10578
|
static readonly code: string;
|
|
10390
10579
|
static readonly statusCode: number;
|
|
10391
10580
|
static readonly description: string;
|
|
10392
|
-
constructor(body: PublicRetrieveLogsFailed & FreestyleError);
|
|
10581
|
+
constructor(body: PublicRetrieveLogsFailed & FreestyleError, traceId?: string | undefined);
|
|
10393
10582
|
}
|
|
10394
10583
|
interface PublicInvalidQuery {
|
|
10395
10584
|
message: string;
|
|
@@ -10397,10 +10586,11 @@ interface PublicInvalidQuery {
|
|
|
10397
10586
|
}
|
|
10398
10587
|
declare class InvalidQueryError extends Error {
|
|
10399
10588
|
body: PublicInvalidQuery & FreestyleError;
|
|
10589
|
+
traceId?: string | undefined;
|
|
10400
10590
|
static readonly code: string;
|
|
10401
10591
|
static readonly statusCode: number;
|
|
10402
10592
|
static readonly description: string;
|
|
10403
|
-
constructor(body: PublicInvalidQuery & FreestyleError);
|
|
10593
|
+
constructor(body: PublicInvalidQuery & FreestyleError, traceId?: string | undefined);
|
|
10404
10594
|
}
|
|
10405
10595
|
interface PublicLogsNotFound {
|
|
10406
10596
|
deploymentId: string;
|
|
@@ -10408,10 +10598,11 @@ interface PublicLogsNotFound {
|
|
|
10408
10598
|
}
|
|
10409
10599
|
declare class LogsNotFoundError extends Error {
|
|
10410
10600
|
body: PublicLogsNotFound & FreestyleError;
|
|
10601
|
+
traceId?: string | undefined;
|
|
10411
10602
|
static readonly code: string;
|
|
10412
10603
|
static readonly statusCode: number;
|
|
10413
10604
|
static readonly description: string;
|
|
10414
|
-
constructor(body: PublicLogsNotFound & FreestyleError);
|
|
10605
|
+
constructor(body: PublicLogsNotFound & FreestyleError, traceId?: string | undefined);
|
|
10415
10606
|
}
|
|
10416
10607
|
interface PublicTriggerError {
|
|
10417
10608
|
message: string;
|
|
@@ -10419,10 +10610,11 @@ interface PublicTriggerError {
|
|
|
10419
10610
|
}
|
|
10420
10611
|
declare class TriggerErrorError extends Error {
|
|
10421
10612
|
body: PublicTriggerError & FreestyleError;
|
|
10613
|
+
traceId?: string | undefined;
|
|
10422
10614
|
static readonly code: string;
|
|
10423
10615
|
static readonly statusCode: number;
|
|
10424
10616
|
static readonly description: string;
|
|
10425
|
-
constructor(body: PublicTriggerError & FreestyleError);
|
|
10617
|
+
constructor(body: PublicTriggerError & FreestyleError, traceId?: string | undefined);
|
|
10426
10618
|
}
|
|
10427
10619
|
interface PublicTokenError {
|
|
10428
10620
|
message: string;
|
|
@@ -10430,10 +10622,11 @@ interface PublicTokenError {
|
|
|
10430
10622
|
}
|
|
10431
10623
|
declare class TokenErrorError extends Error {
|
|
10432
10624
|
body: PublicTokenError & FreestyleError;
|
|
10625
|
+
traceId?: string | undefined;
|
|
10433
10626
|
static readonly code: string;
|
|
10434
10627
|
static readonly statusCode: number;
|
|
10435
10628
|
static readonly description: string;
|
|
10436
|
-
constructor(body: PublicTokenError & FreestyleError);
|
|
10629
|
+
constructor(body: PublicTokenError & FreestyleError, traceId?: string | undefined);
|
|
10437
10630
|
}
|
|
10438
10631
|
interface PublicPermissionError {
|
|
10439
10632
|
message: string;
|
|
@@ -10441,10 +10634,11 @@ interface PublicPermissionError {
|
|
|
10441
10634
|
}
|
|
10442
10635
|
declare class PermissionErrorError extends Error {
|
|
10443
10636
|
body: PublicPermissionError & FreestyleError;
|
|
10637
|
+
traceId?: string | undefined;
|
|
10444
10638
|
static readonly code: string;
|
|
10445
10639
|
static readonly statusCode: number;
|
|
10446
10640
|
static readonly description: string;
|
|
10447
|
-
constructor(body: PublicPermissionError & FreestyleError);
|
|
10641
|
+
constructor(body: PublicPermissionError & FreestyleError, traceId?: string | undefined);
|
|
10448
10642
|
}
|
|
10449
10643
|
interface PublicIdentityError {
|
|
10450
10644
|
message: string;
|
|
@@ -10452,10 +10646,11 @@ interface PublicIdentityError {
|
|
|
10452
10646
|
}
|
|
10453
10647
|
declare class IdentityErrorError extends Error {
|
|
10454
10648
|
body: PublicIdentityError & FreestyleError;
|
|
10649
|
+
traceId?: string | undefined;
|
|
10455
10650
|
static readonly code: string;
|
|
10456
10651
|
static readonly statusCode: number;
|
|
10457
10652
|
static readonly description: string;
|
|
10458
|
-
constructor(body: PublicIdentityError & FreestyleError);
|
|
10653
|
+
constructor(body: PublicIdentityError & FreestyleError, traceId?: string | undefined);
|
|
10459
10654
|
}
|
|
10460
10655
|
interface PublicGetContentFailed {
|
|
10461
10656
|
message: string;
|
|
@@ -10463,10 +10658,11 @@ interface PublicGetContentFailed {
|
|
|
10463
10658
|
}
|
|
10464
10659
|
declare class GetContentFailedError extends Error {
|
|
10465
10660
|
body: PublicGetContentFailed & FreestyleError;
|
|
10661
|
+
traceId?: string | undefined;
|
|
10466
10662
|
static readonly code: string;
|
|
10467
10663
|
static readonly statusCode: number;
|
|
10468
10664
|
static readonly description: string;
|
|
10469
|
-
constructor(body: PublicGetContentFailed & FreestyleError);
|
|
10665
|
+
constructor(body: PublicGetContentFailed & FreestyleError, traceId?: string | undefined);
|
|
10470
10666
|
}
|
|
10471
10667
|
interface PublicContentNotFound {
|
|
10472
10668
|
path: string;
|
|
@@ -10474,10 +10670,11 @@ interface PublicContentNotFound {
|
|
|
10474
10670
|
}
|
|
10475
10671
|
declare class ContentNotFoundError extends Error {
|
|
10476
10672
|
body: PublicContentNotFound & FreestyleError;
|
|
10673
|
+
traceId?: string | undefined;
|
|
10477
10674
|
static readonly code: string;
|
|
10478
10675
|
static readonly statusCode: number;
|
|
10479
10676
|
static readonly description: string;
|
|
10480
|
-
constructor(body: PublicContentNotFound & FreestyleError);
|
|
10677
|
+
constructor(body: PublicContentNotFound & FreestyleError, traceId?: string | undefined);
|
|
10481
10678
|
}
|
|
10482
10679
|
interface PublicDownloadFailed {
|
|
10483
10680
|
message: string;
|
|
@@ -10485,10 +10682,11 @@ interface PublicDownloadFailed {
|
|
|
10485
10682
|
}
|
|
10486
10683
|
declare class DownloadFailedError extends Error {
|
|
10487
10684
|
body: PublicDownloadFailed & FreestyleError;
|
|
10685
|
+
traceId?: string | undefined;
|
|
10488
10686
|
static readonly code: string;
|
|
10489
10687
|
static readonly statusCode: number;
|
|
10490
10688
|
static readonly description: string;
|
|
10491
|
-
constructor(body: PublicDownloadFailed & FreestyleError);
|
|
10689
|
+
constructor(body: PublicDownloadFailed & FreestyleError, traceId?: string | undefined);
|
|
10492
10690
|
}
|
|
10493
10691
|
interface PublicGitServerError {
|
|
10494
10692
|
message: string;
|
|
@@ -10496,10 +10694,11 @@ interface PublicGitServerError {
|
|
|
10496
10694
|
}
|
|
10497
10695
|
declare class GitServerErrorError extends Error {
|
|
10498
10696
|
body: PublicGitServerError & FreestyleError;
|
|
10697
|
+
traceId?: string | undefined;
|
|
10499
10698
|
static readonly code: string;
|
|
10500
10699
|
static readonly statusCode: number;
|
|
10501
10700
|
static readonly description: string;
|
|
10502
|
-
constructor(body: PublicGitServerError & FreestyleError);
|
|
10701
|
+
constructor(body: PublicGitServerError & FreestyleError, traceId?: string | undefined);
|
|
10503
10702
|
}
|
|
10504
10703
|
interface PublicParseResponseError {
|
|
10505
10704
|
message: string;
|
|
@@ -10507,17 +10706,19 @@ interface PublicParseResponseError {
|
|
|
10507
10706
|
}
|
|
10508
10707
|
declare class ParseResponseErrorError extends Error {
|
|
10509
10708
|
body: PublicParseResponseError & FreestyleError;
|
|
10709
|
+
traceId?: string | undefined;
|
|
10510
10710
|
static readonly code: string;
|
|
10511
10711
|
static readonly statusCode: number;
|
|
10512
10712
|
static readonly description: string;
|
|
10513
|
-
constructor(body: PublicParseResponseError & FreestyleError);
|
|
10713
|
+
constructor(body: PublicParseResponseError & FreestyleError, traceId?: string | undefined);
|
|
10514
10714
|
}
|
|
10515
10715
|
declare class RepositoryAccessDeniedError extends Error {
|
|
10516
10716
|
body: unknown & FreestyleError;
|
|
10717
|
+
traceId?: string | undefined;
|
|
10517
10718
|
static readonly code: string;
|
|
10518
10719
|
static readonly statusCode: number;
|
|
10519
10720
|
static readonly description: string;
|
|
10520
|
-
constructor(body: unknown & FreestyleError);
|
|
10721
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10521
10722
|
}
|
|
10522
10723
|
interface PublicGitHubSyncFailed {
|
|
10523
10724
|
message: string;
|
|
@@ -10525,10 +10726,11 @@ interface PublicGitHubSyncFailed {
|
|
|
10525
10726
|
}
|
|
10526
10727
|
declare class GitHubSyncFailedError extends Error {
|
|
10527
10728
|
body: PublicGitHubSyncFailed & FreestyleError;
|
|
10729
|
+
traceId?: string | undefined;
|
|
10528
10730
|
static readonly code: string;
|
|
10529
10731
|
static readonly statusCode: number;
|
|
10530
10732
|
static readonly description: string;
|
|
10531
|
-
constructor(body: PublicGitHubSyncFailed & FreestyleError);
|
|
10733
|
+
constructor(body: PublicGitHubSyncFailed & FreestyleError, traceId?: string | undefined);
|
|
10532
10734
|
}
|
|
10533
10735
|
interface PublicUpdateDefaultBranchFailed {
|
|
10534
10736
|
message: string;
|
|
@@ -10536,10 +10738,11 @@ interface PublicUpdateDefaultBranchFailed {
|
|
|
10536
10738
|
}
|
|
10537
10739
|
declare class UpdateDefaultBranchFailedError extends Error {
|
|
10538
10740
|
body: PublicUpdateDefaultBranchFailed & FreestyleError;
|
|
10741
|
+
traceId?: string | undefined;
|
|
10539
10742
|
static readonly code: string;
|
|
10540
10743
|
static readonly statusCode: number;
|
|
10541
10744
|
static readonly description: string;
|
|
10542
|
-
constructor(body: PublicUpdateDefaultBranchFailed & FreestyleError);
|
|
10745
|
+
constructor(body: PublicUpdateDefaultBranchFailed & FreestyleError, traceId?: string | undefined);
|
|
10543
10746
|
}
|
|
10544
10747
|
interface PublicGetRepositoryInfoFailed {
|
|
10545
10748
|
message: string;
|
|
@@ -10547,10 +10750,11 @@ interface PublicGetRepositoryInfoFailed {
|
|
|
10547
10750
|
}
|
|
10548
10751
|
declare class GetRepositoryInfoFailedError extends Error {
|
|
10549
10752
|
body: PublicGetRepositoryInfoFailed & FreestyleError;
|
|
10753
|
+
traceId?: string | undefined;
|
|
10550
10754
|
static readonly code: string;
|
|
10551
10755
|
static readonly statusCode: number;
|
|
10552
10756
|
static readonly description: string;
|
|
10553
|
-
constructor(body: PublicGetRepositoryInfoFailed & FreestyleError);
|
|
10757
|
+
constructor(body: PublicGetRepositoryInfoFailed & FreestyleError, traceId?: string | undefined);
|
|
10554
10758
|
}
|
|
10555
10759
|
interface PublicListRepositoriesFailed {
|
|
10556
10760
|
message: string;
|
|
@@ -10558,10 +10762,11 @@ interface PublicListRepositoriesFailed {
|
|
|
10558
10762
|
}
|
|
10559
10763
|
declare class ListRepositoriesFailedError extends Error {
|
|
10560
10764
|
body: PublicListRepositoriesFailed & FreestyleError;
|
|
10765
|
+
traceId?: string | undefined;
|
|
10561
10766
|
static readonly code: string;
|
|
10562
10767
|
static readonly statusCode: number;
|
|
10563
10768
|
static readonly description: string;
|
|
10564
|
-
constructor(body: PublicListRepositoriesFailed & FreestyleError);
|
|
10769
|
+
constructor(body: PublicListRepositoriesFailed & FreestyleError, traceId?: string | undefined);
|
|
10565
10770
|
}
|
|
10566
10771
|
interface PublicDeleteRepositoryFailed {
|
|
10567
10772
|
message: string;
|
|
@@ -10569,10 +10774,11 @@ interface PublicDeleteRepositoryFailed {
|
|
|
10569
10774
|
}
|
|
10570
10775
|
declare class DeleteRepositoryFailedError extends Error {
|
|
10571
10776
|
body: PublicDeleteRepositoryFailed & FreestyleError;
|
|
10777
|
+
traceId?: string | undefined;
|
|
10572
10778
|
static readonly code: string;
|
|
10573
10779
|
static readonly statusCode: number;
|
|
10574
10780
|
static readonly description: string;
|
|
10575
|
-
constructor(body: PublicDeleteRepositoryFailed & FreestyleError);
|
|
10781
|
+
constructor(body: PublicDeleteRepositoryFailed & FreestyleError, traceId?: string | undefined);
|
|
10576
10782
|
}
|
|
10577
10783
|
interface PublicCreateRepositoryFailed {
|
|
10578
10784
|
message: string;
|
|
@@ -10580,10 +10786,11 @@ interface PublicCreateRepositoryFailed {
|
|
|
10580
10786
|
}
|
|
10581
10787
|
declare class CreateRepositoryFailedError extends Error {
|
|
10582
10788
|
body: PublicCreateRepositoryFailed & FreestyleError;
|
|
10789
|
+
traceId?: string | undefined;
|
|
10583
10790
|
static readonly code: string;
|
|
10584
10791
|
static readonly statusCode: number;
|
|
10585
10792
|
static readonly description: string;
|
|
10586
|
-
constructor(body: PublicCreateRepositoryFailed & FreestyleError);
|
|
10793
|
+
constructor(body: PublicCreateRepositoryFailed & FreestyleError, traceId?: string | undefined);
|
|
10587
10794
|
}
|
|
10588
10795
|
interface PublicSerializationError {
|
|
10589
10796
|
message: string;
|
|
@@ -10591,10 +10798,11 @@ interface PublicSerializationError {
|
|
|
10591
10798
|
}
|
|
10592
10799
|
declare class SerializationErrorError extends Error {
|
|
10593
10800
|
body: PublicSerializationError & FreestyleError;
|
|
10801
|
+
traceId?: string | undefined;
|
|
10594
10802
|
static readonly code: string;
|
|
10595
10803
|
static readonly statusCode: number;
|
|
10596
10804
|
static readonly description: string;
|
|
10597
|
-
constructor(body: PublicSerializationError & FreestyleError);
|
|
10805
|
+
constructor(body: PublicSerializationError & FreestyleError, traceId?: string | undefined);
|
|
10598
10806
|
}
|
|
10599
10807
|
interface PublicGitInvalidRequest {
|
|
10600
10808
|
message: string;
|
|
@@ -10602,10 +10810,11 @@ interface PublicGitInvalidRequest {
|
|
|
10602
10810
|
}
|
|
10603
10811
|
declare class GitInvalidRequestError extends Error {
|
|
10604
10812
|
body: PublicGitInvalidRequest & FreestyleError;
|
|
10813
|
+
traceId?: string | undefined;
|
|
10605
10814
|
static readonly code: string;
|
|
10606
10815
|
static readonly statusCode: number;
|
|
10607
10816
|
static readonly description: string;
|
|
10608
|
-
constructor(body: PublicGitInvalidRequest & FreestyleError);
|
|
10817
|
+
constructor(body: PublicGitInvalidRequest & FreestyleError, traceId?: string | undefined);
|
|
10609
10818
|
}
|
|
10610
10819
|
interface PublicRepositoryNotFound {
|
|
10611
10820
|
repoId: string;
|
|
@@ -10613,17 +10822,19 @@ interface PublicRepositoryNotFound {
|
|
|
10613
10822
|
}
|
|
10614
10823
|
declare class RepositoryNotFoundError extends Error {
|
|
10615
10824
|
body: PublicRepositoryNotFound & FreestyleError;
|
|
10825
|
+
traceId?: string | undefined;
|
|
10616
10826
|
static readonly code: string;
|
|
10617
10827
|
static readonly statusCode: number;
|
|
10618
10828
|
static readonly description: string;
|
|
10619
|
-
constructor(body: PublicRepositoryNotFound & FreestyleError);
|
|
10829
|
+
constructor(body: PublicRepositoryNotFound & FreestyleError, traceId?: string | undefined);
|
|
10620
10830
|
}
|
|
10621
10831
|
declare class DomainOwnershipVerificationFailedError extends Error {
|
|
10622
10832
|
body: unknown & FreestyleError;
|
|
10833
|
+
traceId?: string | undefined;
|
|
10623
10834
|
static readonly code: string;
|
|
10624
10835
|
static readonly statusCode: number;
|
|
10625
10836
|
static readonly description: string;
|
|
10626
|
-
constructor(body: unknown & FreestyleError);
|
|
10837
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10627
10838
|
}
|
|
10628
10839
|
interface PublicErrorDeletingRecord {
|
|
10629
10840
|
domain: string;
|
|
@@ -10633,10 +10844,11 @@ interface PublicErrorDeletingRecord {
|
|
|
10633
10844
|
}
|
|
10634
10845
|
declare class ErrorDeletingRecordError extends Error {
|
|
10635
10846
|
body: PublicErrorDeletingRecord & FreestyleError;
|
|
10847
|
+
traceId?: string | undefined;
|
|
10636
10848
|
static readonly code: string;
|
|
10637
10849
|
static readonly statusCode: number;
|
|
10638
10850
|
static readonly description: string;
|
|
10639
|
-
constructor(body: PublicErrorDeletingRecord & FreestyleError);
|
|
10851
|
+
constructor(body: PublicErrorDeletingRecord & FreestyleError, traceId?: string | undefined);
|
|
10640
10852
|
}
|
|
10641
10853
|
interface PublicRecordOwnershipError {
|
|
10642
10854
|
recordId: string;
|
|
@@ -10645,10 +10857,11 @@ interface PublicRecordOwnershipError {
|
|
|
10645
10857
|
}
|
|
10646
10858
|
declare class RecordOwnershipErrorError extends Error {
|
|
10647
10859
|
body: PublicRecordOwnershipError & FreestyleError;
|
|
10860
|
+
traceId?: string | undefined;
|
|
10648
10861
|
static readonly code: string;
|
|
10649
10862
|
static readonly statusCode: number;
|
|
10650
10863
|
static readonly description: string;
|
|
10651
|
-
constructor(body: PublicRecordOwnershipError & FreestyleError);
|
|
10864
|
+
constructor(body: PublicRecordOwnershipError & FreestyleError, traceId?: string | undefined);
|
|
10652
10865
|
}
|
|
10653
10866
|
interface PublicErrorCreatingRecord {
|
|
10654
10867
|
message: string;
|
|
@@ -10656,10 +10869,11 @@ interface PublicErrorCreatingRecord {
|
|
|
10656
10869
|
}
|
|
10657
10870
|
declare class ErrorCreatingRecordError extends Error {
|
|
10658
10871
|
body: PublicErrorCreatingRecord & FreestyleError;
|
|
10872
|
+
traceId?: string | undefined;
|
|
10659
10873
|
static readonly code: string;
|
|
10660
10874
|
static readonly statusCode: number;
|
|
10661
10875
|
static readonly description: string;
|
|
10662
|
-
constructor(body: PublicErrorCreatingRecord & FreestyleError);
|
|
10876
|
+
constructor(body: PublicErrorCreatingRecord & FreestyleError, traceId?: string | undefined);
|
|
10663
10877
|
}
|
|
10664
10878
|
interface PublicDomainOwnershipError {
|
|
10665
10879
|
domain: string;
|
|
@@ -10668,10 +10882,11 @@ interface PublicDomainOwnershipError {
|
|
|
10668
10882
|
}
|
|
10669
10883
|
declare class DomainOwnershipErrorError extends Error {
|
|
10670
10884
|
body: PublicDomainOwnershipError & FreestyleError;
|
|
10885
|
+
traceId?: string | undefined;
|
|
10671
10886
|
static readonly code: string;
|
|
10672
10887
|
static readonly statusCode: number;
|
|
10673
10888
|
static readonly description: string;
|
|
10674
|
-
constructor(body: PublicDomainOwnershipError & FreestyleError);
|
|
10889
|
+
constructor(body: PublicDomainOwnershipError & FreestyleError, traceId?: string | undefined);
|
|
10675
10890
|
}
|
|
10676
10891
|
interface UnauthorizedErrorPublic {
|
|
10677
10892
|
route: string;
|
|
@@ -10680,24 +10895,27 @@ interface UnauthorizedErrorPublic {
|
|
|
10680
10895
|
}
|
|
10681
10896
|
declare class UnauthorizedErrorError extends Error {
|
|
10682
10897
|
body: UnauthorizedErrorPublic & FreestyleError;
|
|
10898
|
+
traceId?: string | undefined;
|
|
10683
10899
|
static readonly code: string;
|
|
10684
10900
|
static readonly statusCode: number;
|
|
10685
10901
|
static readonly description: string;
|
|
10686
|
-
constructor(body: UnauthorizedErrorPublic & FreestyleError);
|
|
10902
|
+
constructor(body: UnauthorizedErrorPublic & FreestyleError, traceId?: string | undefined);
|
|
10687
10903
|
}
|
|
10688
10904
|
declare class BranchNameEmptyError extends Error {
|
|
10689
10905
|
body: unknown & FreestyleError;
|
|
10906
|
+
traceId?: string | undefined;
|
|
10690
10907
|
static readonly code: string;
|
|
10691
10908
|
static readonly statusCode: number;
|
|
10692
10909
|
static readonly description: string;
|
|
10693
|
-
constructor(body: unknown & FreestyleError);
|
|
10910
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10694
10911
|
}
|
|
10695
10912
|
declare class ServerDeploymentFailedError extends Error {
|
|
10696
10913
|
body: unknown & FreestyleError;
|
|
10914
|
+
traceId?: string | undefined;
|
|
10697
10915
|
static readonly code: string;
|
|
10698
10916
|
static readonly statusCode: number;
|
|
10699
10917
|
static readonly description: string;
|
|
10700
|
-
constructor(body: unknown & FreestyleError);
|
|
10918
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10701
10919
|
}
|
|
10702
10920
|
interface PublicLockfileError {
|
|
10703
10921
|
message: string;
|
|
@@ -10705,17 +10923,19 @@ interface PublicLockfileError {
|
|
|
10705
10923
|
}
|
|
10706
10924
|
declare class LockfileErrorError extends Error {
|
|
10707
10925
|
body: PublicLockfileError & FreestyleError;
|
|
10926
|
+
traceId?: string | undefined;
|
|
10708
10927
|
static readonly code: string;
|
|
10709
10928
|
static readonly statusCode: number;
|
|
10710
10929
|
static readonly description: string;
|
|
10711
|
-
constructor(body: PublicLockfileError & FreestyleError);
|
|
10930
|
+
constructor(body: PublicLockfileError & FreestyleError, traceId?: string | undefined);
|
|
10712
10931
|
}
|
|
10713
10932
|
declare class UploadErrorError extends Error {
|
|
10714
10933
|
body: unknown & FreestyleError;
|
|
10934
|
+
traceId?: string | undefined;
|
|
10715
10935
|
static readonly code: string;
|
|
10716
10936
|
static readonly statusCode: number;
|
|
10717
10937
|
static readonly description: string;
|
|
10718
|
-
constructor(body: unknown & FreestyleError);
|
|
10938
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10719
10939
|
}
|
|
10720
10940
|
interface PublicDomainMappingError {
|
|
10721
10941
|
domain: string;
|
|
@@ -10723,10 +10943,11 @@ interface PublicDomainMappingError {
|
|
|
10723
10943
|
}
|
|
10724
10944
|
declare class DomainMappingErrorError extends Error {
|
|
10725
10945
|
body: PublicDomainMappingError & FreestyleError;
|
|
10946
|
+
traceId?: string | undefined;
|
|
10726
10947
|
static readonly code: string;
|
|
10727
10948
|
static readonly statusCode: number;
|
|
10728
10949
|
static readonly description: string;
|
|
10729
|
-
constructor(body: PublicDomainMappingError & FreestyleError);
|
|
10950
|
+
constructor(body: PublicDomainMappingError & FreestyleError, traceId?: string | undefined);
|
|
10730
10951
|
}
|
|
10731
10952
|
interface PublicCertificateProvisioningError {
|
|
10732
10953
|
domain: string;
|
|
@@ -10735,17 +10956,19 @@ interface PublicCertificateProvisioningError {
|
|
|
10735
10956
|
}
|
|
10736
10957
|
declare class CertificateProvisioningErrorError extends Error {
|
|
10737
10958
|
body: PublicCertificateProvisioningError & FreestyleError;
|
|
10959
|
+
traceId?: string | undefined;
|
|
10738
10960
|
static readonly code: string;
|
|
10739
10961
|
static readonly statusCode: number;
|
|
10740
10962
|
static readonly description: string;
|
|
10741
|
-
constructor(body: PublicCertificateProvisioningError & FreestyleError);
|
|
10963
|
+
constructor(body: PublicCertificateProvisioningError & FreestyleError, traceId?: string | undefined);
|
|
10742
10964
|
}
|
|
10743
10965
|
declare class NoEntrypointFoundError extends Error {
|
|
10744
10966
|
body: unknown & FreestyleError;
|
|
10967
|
+
traceId?: string | undefined;
|
|
10745
10968
|
static readonly code: string;
|
|
10746
10969
|
static readonly statusCode: number;
|
|
10747
10970
|
static readonly description: string;
|
|
10748
|
-
constructor(body: unknown & FreestyleError);
|
|
10971
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10749
10972
|
}
|
|
10750
10973
|
interface PublicEntrypointNotFound {
|
|
10751
10974
|
entrypoint: string;
|
|
@@ -10753,10 +10976,11 @@ interface PublicEntrypointNotFound {
|
|
|
10753
10976
|
}
|
|
10754
10977
|
declare class EntrypointNotFoundError extends Error {
|
|
10755
10978
|
body: PublicEntrypointNotFound & FreestyleError;
|
|
10979
|
+
traceId?: string | undefined;
|
|
10756
10980
|
static readonly code: string;
|
|
10757
10981
|
static readonly statusCode: number;
|
|
10758
10982
|
static readonly description: string;
|
|
10759
|
-
constructor(body: PublicEntrypointNotFound & FreestyleError);
|
|
10983
|
+
constructor(body: PublicEntrypointNotFound & FreestyleError, traceId?: string | undefined);
|
|
10760
10984
|
}
|
|
10761
10985
|
interface PublicNoDomainOwnership {
|
|
10762
10986
|
domain: string;
|
|
@@ -10764,10 +10988,11 @@ interface PublicNoDomainOwnership {
|
|
|
10764
10988
|
}
|
|
10765
10989
|
declare class NoDomainOwnershipError extends Error {
|
|
10766
10990
|
body: PublicNoDomainOwnership & FreestyleError;
|
|
10991
|
+
traceId?: string | undefined;
|
|
10767
10992
|
static readonly code: string;
|
|
10768
10993
|
static readonly statusCode: number;
|
|
10769
10994
|
static readonly description: string;
|
|
10770
|
-
constructor(body: PublicNoDomainOwnership & FreestyleError);
|
|
10995
|
+
constructor(body: PublicNoDomainOwnership & FreestyleError, traceId?: string | undefined);
|
|
10771
10996
|
}
|
|
10772
10997
|
interface PublicInvalidDomains {
|
|
10773
10998
|
domains: string[];
|
|
@@ -10775,10 +11000,11 @@ interface PublicInvalidDomains {
|
|
|
10775
11000
|
}
|
|
10776
11001
|
declare class InvalidDomainsError extends Error {
|
|
10777
11002
|
body: PublicInvalidDomains & FreestyleError;
|
|
11003
|
+
traceId?: string | undefined;
|
|
10778
11004
|
static readonly code: string;
|
|
10779
11005
|
static readonly statusCode: number;
|
|
10780
11006
|
static readonly description: string;
|
|
10781
|
-
constructor(body: PublicInvalidDomains & FreestyleError);
|
|
11007
|
+
constructor(body: PublicInvalidDomains & FreestyleError, traceId?: string | undefined);
|
|
10782
11008
|
}
|
|
10783
11009
|
interface PublicWebDeploymentBadRequest {
|
|
10784
11010
|
message: string;
|
|
@@ -10786,10 +11012,11 @@ interface PublicWebDeploymentBadRequest {
|
|
|
10786
11012
|
}
|
|
10787
11013
|
declare class WebDeploymentBadRequestError extends Error {
|
|
10788
11014
|
body: PublicWebDeploymentBadRequest & FreestyleError;
|
|
11015
|
+
traceId?: string | undefined;
|
|
10789
11016
|
static readonly code: string;
|
|
10790
11017
|
static readonly statusCode: number;
|
|
10791
11018
|
static readonly description: string;
|
|
10792
|
-
constructor(body: PublicWebDeploymentBadRequest & FreestyleError);
|
|
11019
|
+
constructor(body: PublicWebDeploymentBadRequest & FreestyleError, traceId?: string | undefined);
|
|
10793
11020
|
}
|
|
10794
11021
|
interface PublicTimeoutLimitExceeded {
|
|
10795
11022
|
requestedMs: number;
|
|
@@ -10798,10 +11025,11 @@ interface PublicTimeoutLimitExceeded {
|
|
|
10798
11025
|
}
|
|
10799
11026
|
declare class TimeoutLimitExceededError extends Error {
|
|
10800
11027
|
body: PublicTimeoutLimitExceeded & FreestyleError;
|
|
11028
|
+
traceId?: string | undefined;
|
|
10801
11029
|
static readonly code: string;
|
|
10802
11030
|
static readonly statusCode: number;
|
|
10803
11031
|
static readonly description: string;
|
|
10804
|
-
constructor(body: PublicTimeoutLimitExceeded & FreestyleError);
|
|
11032
|
+
constructor(body: PublicTimeoutLimitExceeded & FreestyleError, traceId?: string | undefined);
|
|
10805
11033
|
}
|
|
10806
11034
|
interface PublicDeploymentLimitExceeded {
|
|
10807
11035
|
limit: number;
|
|
@@ -10810,17 +11038,19 @@ interface PublicDeploymentLimitExceeded {
|
|
|
10810
11038
|
}
|
|
10811
11039
|
declare class DeploymentLimitExceededError extends Error {
|
|
10812
11040
|
body: PublicDeploymentLimitExceeded & FreestyleError;
|
|
11041
|
+
traceId?: string | undefined;
|
|
10813
11042
|
static readonly code: string;
|
|
10814
11043
|
static readonly statusCode: number;
|
|
10815
11044
|
static readonly description: string;
|
|
10816
|
-
constructor(body: PublicDeploymentLimitExceeded & FreestyleError);
|
|
11045
|
+
constructor(body: PublicDeploymentLimitExceeded & FreestyleError, traceId?: string | undefined);
|
|
10817
11046
|
}
|
|
10818
11047
|
declare class DeploymentNotFoundError extends Error {
|
|
10819
11048
|
body: unknown & FreestyleError;
|
|
11049
|
+
traceId?: string | undefined;
|
|
10820
11050
|
static readonly code: string;
|
|
10821
11051
|
static readonly statusCode: number;
|
|
10822
11052
|
static readonly description: string;
|
|
10823
|
-
constructor(body: unknown & FreestyleError);
|
|
11053
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10824
11054
|
}
|
|
10825
11055
|
interface PublicResizeFailed {
|
|
10826
11056
|
message: string;
|
|
@@ -10828,24 +11058,27 @@ interface PublicResizeFailed {
|
|
|
10828
11058
|
}
|
|
10829
11059
|
declare class ResizeFailedError extends Error {
|
|
10830
11060
|
body: PublicResizeFailed & FreestyleError;
|
|
11061
|
+
traceId?: string | undefined;
|
|
10831
11062
|
static readonly code: string;
|
|
10832
11063
|
static readonly statusCode: number;
|
|
10833
11064
|
static readonly description: string;
|
|
10834
|
-
constructor(body: PublicResizeFailed & FreestyleError);
|
|
11065
|
+
constructor(body: PublicResizeFailed & FreestyleError, traceId?: string | undefined);
|
|
10835
11066
|
}
|
|
10836
11067
|
declare class InternalResizeVmNotFoundError extends Error {
|
|
10837
11068
|
body: unknown & FreestyleError;
|
|
11069
|
+
traceId?: string | undefined;
|
|
10838
11070
|
static readonly code: string;
|
|
10839
11071
|
static readonly statusCode: number;
|
|
10840
11072
|
static readonly description: string;
|
|
10841
|
-
constructor(body: unknown & FreestyleError);
|
|
11073
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10842
11074
|
}
|
|
10843
11075
|
declare class ExecuteLimitExceededError extends Error {
|
|
10844
11076
|
body: unknown & FreestyleError;
|
|
11077
|
+
traceId?: string | undefined;
|
|
10845
11078
|
static readonly code: string;
|
|
10846
11079
|
static readonly statusCode: number;
|
|
10847
11080
|
static readonly description: string;
|
|
10848
|
-
constructor(body: unknown & FreestyleError);
|
|
11081
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10849
11082
|
}
|
|
10850
11083
|
interface PublicDomainOwnershipNotVerified {
|
|
10851
11084
|
domain: string;
|
|
@@ -10853,10 +11086,11 @@ interface PublicDomainOwnershipNotVerified {
|
|
|
10853
11086
|
}
|
|
10854
11087
|
declare class DomainOwnershipNotVerifiedError extends Error {
|
|
10855
11088
|
body: PublicDomainOwnershipNotVerified & FreestyleError;
|
|
11089
|
+
traceId?: string | undefined;
|
|
10856
11090
|
static readonly code: string;
|
|
10857
11091
|
static readonly statusCode: number;
|
|
10858
11092
|
static readonly description: string;
|
|
10859
|
-
constructor(body: PublicDomainOwnershipNotVerified & FreestyleError);
|
|
11093
|
+
constructor(body: PublicDomainOwnershipNotVerified & FreestyleError, traceId?: string | undefined);
|
|
10860
11094
|
}
|
|
10861
11095
|
interface PublicVmAccessDeniedForMapping {
|
|
10862
11096
|
vmId: string;
|
|
@@ -10864,10 +11098,11 @@ interface PublicVmAccessDeniedForMapping {
|
|
|
10864
11098
|
}
|
|
10865
11099
|
declare class VmAccessDeniedForMappingError extends Error {
|
|
10866
11100
|
body: PublicVmAccessDeniedForMapping & FreestyleError;
|
|
11101
|
+
traceId?: string | undefined;
|
|
10867
11102
|
static readonly code: string;
|
|
10868
11103
|
static readonly statusCode: number;
|
|
10869
11104
|
static readonly description: string;
|
|
10870
|
-
constructor(body: PublicVmAccessDeniedForMapping & FreestyleError);
|
|
11105
|
+
constructor(body: PublicVmAccessDeniedForMapping & FreestyleError, traceId?: string | undefined);
|
|
10871
11106
|
}
|
|
10872
11107
|
interface PublicDeploymentAccessDenied {
|
|
10873
11108
|
deploymentId: string;
|
|
@@ -10875,10 +11110,11 @@ interface PublicDeploymentAccessDenied {
|
|
|
10875
11110
|
}
|
|
10876
11111
|
declare class DeploymentAccessDeniedError extends Error {
|
|
10877
11112
|
body: PublicDeploymentAccessDenied & FreestyleError;
|
|
11113
|
+
traceId?: string | undefined;
|
|
10878
11114
|
static readonly code: string;
|
|
10879
11115
|
static readonly statusCode: number;
|
|
10880
11116
|
static readonly description: string;
|
|
10881
|
-
constructor(body: PublicDeploymentAccessDenied & FreestyleError);
|
|
11117
|
+
constructor(body: PublicDeploymentAccessDenied & FreestyleError, traceId?: string | undefined);
|
|
10882
11118
|
}
|
|
10883
11119
|
interface PublicFailedToProvisionCertificateForMapping {
|
|
10884
11120
|
message: string;
|
|
@@ -10886,10 +11122,11 @@ interface PublicFailedToProvisionCertificateForMapping {
|
|
|
10886
11122
|
}
|
|
10887
11123
|
declare class FailedToProvisionCertificateForMappingError extends Error {
|
|
10888
11124
|
body: PublicFailedToProvisionCertificateForMapping & FreestyleError;
|
|
11125
|
+
traceId?: string | undefined;
|
|
10889
11126
|
static readonly code: string;
|
|
10890
11127
|
static readonly statusCode: number;
|
|
10891
11128
|
static readonly description: string;
|
|
10892
|
-
constructor(body: PublicFailedToProvisionCertificateForMapping & FreestyleError);
|
|
11129
|
+
constructor(body: PublicFailedToProvisionCertificateForMapping & FreestyleError, traceId?: string | undefined);
|
|
10893
11130
|
}
|
|
10894
11131
|
interface PublicFailedInsertDomainMapping {
|
|
10895
11132
|
message: string;
|
|
@@ -10897,10 +11134,11 @@ interface PublicFailedInsertDomainMapping {
|
|
|
10897
11134
|
}
|
|
10898
11135
|
declare class FailedInsertDomainMappingError extends Error {
|
|
10899
11136
|
body: PublicFailedInsertDomainMapping & FreestyleError;
|
|
11137
|
+
traceId?: string | undefined;
|
|
10900
11138
|
static readonly code: string;
|
|
10901
11139
|
static readonly statusCode: number;
|
|
10902
11140
|
static readonly description: string;
|
|
10903
|
-
constructor(body: PublicFailedInsertDomainMapping & FreestyleError);
|
|
11141
|
+
constructor(body: PublicFailedInsertDomainMapping & FreestyleError, traceId?: string | undefined);
|
|
10904
11142
|
}
|
|
10905
11143
|
interface PublicDomainAlreadyExists {
|
|
10906
11144
|
domain: string;
|
|
@@ -10908,10 +11146,11 @@ interface PublicDomainAlreadyExists {
|
|
|
10908
11146
|
}
|
|
10909
11147
|
declare class DomainAlreadyExistsError extends Error {
|
|
10910
11148
|
body: PublicDomainAlreadyExists & FreestyleError;
|
|
11149
|
+
traceId?: string | undefined;
|
|
10911
11150
|
static readonly code: string;
|
|
10912
11151
|
static readonly statusCode: number;
|
|
10913
11152
|
static readonly description: string;
|
|
10914
|
-
constructor(body: PublicDomainAlreadyExists & FreestyleError);
|
|
11153
|
+
constructor(body: PublicDomainAlreadyExists & FreestyleError, traceId?: string | undefined);
|
|
10915
11154
|
}
|
|
10916
11155
|
interface PublicFailedToInsertOwnership {
|
|
10917
11156
|
message: string;
|
|
@@ -10919,10 +11158,11 @@ interface PublicFailedToInsertOwnership {
|
|
|
10919
11158
|
}
|
|
10920
11159
|
declare class FailedToInsertOwnershipError extends Error {
|
|
10921
11160
|
body: PublicFailedToInsertOwnership & FreestyleError;
|
|
11161
|
+
traceId?: string | undefined;
|
|
10922
11162
|
static readonly code: string;
|
|
10923
11163
|
static readonly statusCode: number;
|
|
10924
11164
|
static readonly description: string;
|
|
10925
|
-
constructor(body: PublicFailedToInsertOwnership & FreestyleError);
|
|
11165
|
+
constructor(body: PublicFailedToInsertOwnership & FreestyleError, traceId?: string | undefined);
|
|
10926
11166
|
}
|
|
10927
11167
|
interface PublicFailedRemoveDomainMapping {
|
|
10928
11168
|
message: string;
|
|
@@ -10930,10 +11170,11 @@ interface PublicFailedRemoveDomainMapping {
|
|
|
10930
11170
|
}
|
|
10931
11171
|
declare class FailedRemoveDomainMappingError extends Error {
|
|
10932
11172
|
body: PublicFailedRemoveDomainMapping & FreestyleError;
|
|
11173
|
+
traceId?: string | undefined;
|
|
10933
11174
|
static readonly code: string;
|
|
10934
11175
|
static readonly statusCode: number;
|
|
10935
11176
|
static readonly description: string;
|
|
10936
|
-
constructor(body: PublicFailedRemoveDomainMapping & FreestyleError);
|
|
11177
|
+
constructor(body: PublicFailedRemoveDomainMapping & FreestyleError, traceId?: string | undefined);
|
|
10937
11178
|
}
|
|
10938
11179
|
interface PublicFailedPermissionsCheck {
|
|
10939
11180
|
domain: string;
|
|
@@ -10941,10 +11182,11 @@ interface PublicFailedPermissionsCheck {
|
|
|
10941
11182
|
}
|
|
10942
11183
|
declare class FailedPermissionsCheckError extends Error {
|
|
10943
11184
|
body: PublicFailedPermissionsCheck & FreestyleError;
|
|
11185
|
+
traceId?: string | undefined;
|
|
10944
11186
|
static readonly code: string;
|
|
10945
11187
|
static readonly statusCode: number;
|
|
10946
11188
|
static readonly description: string;
|
|
10947
|
-
constructor(body: PublicFailedPermissionsCheck & FreestyleError);
|
|
11189
|
+
constructor(body: PublicFailedPermissionsCheck & FreestyleError, traceId?: string | undefined);
|
|
10948
11190
|
}
|
|
10949
11191
|
interface PublicFailedToCheckDomainMappingPermissions {
|
|
10950
11192
|
message: string;
|
|
@@ -10952,31 +11194,35 @@ interface PublicFailedToCheckDomainMappingPermissions {
|
|
|
10952
11194
|
}
|
|
10953
11195
|
declare class FailedToCheckDomainMappingPermissionsError extends Error {
|
|
10954
11196
|
body: PublicFailedToCheckDomainMappingPermissions & FreestyleError;
|
|
11197
|
+
traceId?: string | undefined;
|
|
10955
11198
|
static readonly code: string;
|
|
10956
11199
|
static readonly statusCode: number;
|
|
10957
11200
|
static readonly description: string;
|
|
10958
|
-
constructor(body: PublicFailedToCheckDomainMappingPermissions & FreestyleError);
|
|
11201
|
+
constructor(body: PublicFailedToCheckDomainMappingPermissions & FreestyleError, traceId?: string | undefined);
|
|
10959
11202
|
}
|
|
10960
11203
|
declare class FailedToPreRegisterError extends Error {
|
|
10961
11204
|
body: unknown & FreestyleError;
|
|
11205
|
+
traceId?: string | undefined;
|
|
10962
11206
|
static readonly code: string;
|
|
10963
11207
|
static readonly statusCode: number;
|
|
10964
11208
|
static readonly description: string;
|
|
10965
|
-
constructor(body: unknown & FreestyleError);
|
|
11209
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10966
11210
|
}
|
|
10967
11211
|
declare class AccessDeniedError extends Error {
|
|
10968
11212
|
body: unknown & FreestyleError;
|
|
11213
|
+
traceId?: string | undefined;
|
|
10969
11214
|
static readonly code: string;
|
|
10970
11215
|
static readonly statusCode: number;
|
|
10971
11216
|
static readonly description: string;
|
|
10972
|
-
constructor(body: unknown & FreestyleError);
|
|
11217
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10973
11218
|
}
|
|
10974
11219
|
declare class PermissionAlreadyExistsError extends Error {
|
|
10975
11220
|
body: unknown & FreestyleError;
|
|
11221
|
+
traceId?: string | undefined;
|
|
10976
11222
|
static readonly code: string;
|
|
10977
11223
|
static readonly statusCode: number;
|
|
10978
11224
|
static readonly description: string;
|
|
10979
|
-
constructor(body: unknown & FreestyleError);
|
|
11225
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
10980
11226
|
}
|
|
10981
11227
|
interface PublicListTokensFailed {
|
|
10982
11228
|
message: string;
|
|
@@ -10984,10 +11230,11 @@ interface PublicListTokensFailed {
|
|
|
10984
11230
|
}
|
|
10985
11231
|
declare class ListTokensFailedError extends Error {
|
|
10986
11232
|
body: PublicListTokensFailed & FreestyleError;
|
|
11233
|
+
traceId?: string | undefined;
|
|
10987
11234
|
static readonly code: string;
|
|
10988
11235
|
static readonly statusCode: number;
|
|
10989
11236
|
static readonly description: string;
|
|
10990
|
-
constructor(body: PublicListTokensFailed & FreestyleError);
|
|
11237
|
+
constructor(body: PublicListTokensFailed & FreestyleError, traceId?: string | undefined);
|
|
10991
11238
|
}
|
|
10992
11239
|
interface PublicRevokeTokenFailed {
|
|
10993
11240
|
message: string;
|
|
@@ -10995,10 +11242,11 @@ interface PublicRevokeTokenFailed {
|
|
|
10995
11242
|
}
|
|
10996
11243
|
declare class RevokeTokenFailedError extends Error {
|
|
10997
11244
|
body: PublicRevokeTokenFailed & FreestyleError;
|
|
11245
|
+
traceId?: string | undefined;
|
|
10998
11246
|
static readonly code: string;
|
|
10999
11247
|
static readonly statusCode: number;
|
|
11000
11248
|
static readonly description: string;
|
|
11001
|
-
constructor(body: PublicRevokeTokenFailed & FreestyleError);
|
|
11249
|
+
constructor(body: PublicRevokeTokenFailed & FreestyleError, traceId?: string | undefined);
|
|
11002
11250
|
}
|
|
11003
11251
|
interface PublicCreateTokenFailed {
|
|
11004
11252
|
message: string;
|
|
@@ -11006,10 +11254,11 @@ interface PublicCreateTokenFailed {
|
|
|
11006
11254
|
}
|
|
11007
11255
|
declare class CreateTokenFailedError extends Error {
|
|
11008
11256
|
body: PublicCreateTokenFailed & FreestyleError;
|
|
11257
|
+
traceId?: string | undefined;
|
|
11009
11258
|
static readonly code: string;
|
|
11010
11259
|
static readonly statusCode: number;
|
|
11011
11260
|
static readonly description: string;
|
|
11012
|
-
constructor(body: PublicCreateTokenFailed & FreestyleError);
|
|
11261
|
+
constructor(body: PublicCreateTokenFailed & FreestyleError, traceId?: string | undefined);
|
|
11013
11262
|
}
|
|
11014
11263
|
interface PublicListPermissionsFailed {
|
|
11015
11264
|
message: string;
|
|
@@ -11017,10 +11266,11 @@ interface PublicListPermissionsFailed {
|
|
|
11017
11266
|
}
|
|
11018
11267
|
declare class ListPermissionsFailedError extends Error {
|
|
11019
11268
|
body: PublicListPermissionsFailed & FreestyleError;
|
|
11269
|
+
traceId?: string | undefined;
|
|
11020
11270
|
static readonly code: string;
|
|
11021
11271
|
static readonly statusCode: number;
|
|
11022
11272
|
static readonly description: string;
|
|
11023
|
-
constructor(body: PublicListPermissionsFailed & FreestyleError);
|
|
11273
|
+
constructor(body: PublicListPermissionsFailed & FreestyleError, traceId?: string | undefined);
|
|
11024
11274
|
}
|
|
11025
11275
|
interface PublicGetPermissionFailed {
|
|
11026
11276
|
message: string;
|
|
@@ -11028,10 +11278,11 @@ interface PublicGetPermissionFailed {
|
|
|
11028
11278
|
}
|
|
11029
11279
|
declare class GetPermissionFailedError extends Error {
|
|
11030
11280
|
body: PublicGetPermissionFailed & FreestyleError;
|
|
11281
|
+
traceId?: string | undefined;
|
|
11031
11282
|
static readonly code: string;
|
|
11032
11283
|
static readonly statusCode: number;
|
|
11033
11284
|
static readonly description: string;
|
|
11034
|
-
constructor(body: PublicGetPermissionFailed & FreestyleError);
|
|
11285
|
+
constructor(body: PublicGetPermissionFailed & FreestyleError, traceId?: string | undefined);
|
|
11035
11286
|
}
|
|
11036
11287
|
interface PublicUpdatePermissionFailed {
|
|
11037
11288
|
message: string;
|
|
@@ -11039,10 +11290,11 @@ interface PublicUpdatePermissionFailed {
|
|
|
11039
11290
|
}
|
|
11040
11291
|
declare class UpdatePermissionFailedError extends Error {
|
|
11041
11292
|
body: PublicUpdatePermissionFailed & FreestyleError;
|
|
11293
|
+
traceId?: string | undefined;
|
|
11042
11294
|
static readonly code: string;
|
|
11043
11295
|
static readonly statusCode: number;
|
|
11044
11296
|
static readonly description: string;
|
|
11045
|
-
constructor(body: PublicUpdatePermissionFailed & FreestyleError);
|
|
11297
|
+
constructor(body: PublicUpdatePermissionFailed & FreestyleError, traceId?: string | undefined);
|
|
11046
11298
|
}
|
|
11047
11299
|
interface PublicRevokePermissionFailed {
|
|
11048
11300
|
message: string;
|
|
@@ -11050,10 +11302,11 @@ interface PublicRevokePermissionFailed {
|
|
|
11050
11302
|
}
|
|
11051
11303
|
declare class RevokePermissionFailedError extends Error {
|
|
11052
11304
|
body: PublicRevokePermissionFailed & FreestyleError;
|
|
11305
|
+
traceId?: string | undefined;
|
|
11053
11306
|
static readonly code: string;
|
|
11054
11307
|
static readonly statusCode: number;
|
|
11055
11308
|
static readonly description: string;
|
|
11056
|
-
constructor(body: PublicRevokePermissionFailed & FreestyleError);
|
|
11309
|
+
constructor(body: PublicRevokePermissionFailed & FreestyleError, traceId?: string | undefined);
|
|
11057
11310
|
}
|
|
11058
11311
|
interface PublicGrantPermissionFailed {
|
|
11059
11312
|
message: string;
|
|
@@ -11061,10 +11314,11 @@ interface PublicGrantPermissionFailed {
|
|
|
11061
11314
|
}
|
|
11062
11315
|
declare class GrantPermissionFailedError extends Error {
|
|
11063
11316
|
body: PublicGrantPermissionFailed & FreestyleError;
|
|
11317
|
+
traceId?: string | undefined;
|
|
11064
11318
|
static readonly code: string;
|
|
11065
11319
|
static readonly statusCode: number;
|
|
11066
11320
|
static readonly description: string;
|
|
11067
|
-
constructor(body: PublicGrantPermissionFailed & FreestyleError);
|
|
11321
|
+
constructor(body: PublicGrantPermissionFailed & FreestyleError, traceId?: string | undefined);
|
|
11068
11322
|
}
|
|
11069
11323
|
interface PublicListIdentitiesFailed {
|
|
11070
11324
|
message: string;
|
|
@@ -11072,10 +11326,11 @@ interface PublicListIdentitiesFailed {
|
|
|
11072
11326
|
}
|
|
11073
11327
|
declare class ListIdentitiesFailedError extends Error {
|
|
11074
11328
|
body: PublicListIdentitiesFailed & FreestyleError;
|
|
11329
|
+
traceId?: string | undefined;
|
|
11075
11330
|
static readonly code: string;
|
|
11076
11331
|
static readonly statusCode: number;
|
|
11077
11332
|
static readonly description: string;
|
|
11078
|
-
constructor(body: PublicListIdentitiesFailed & FreestyleError);
|
|
11333
|
+
constructor(body: PublicListIdentitiesFailed & FreestyleError, traceId?: string | undefined);
|
|
11079
11334
|
}
|
|
11080
11335
|
interface PublicDeleteIdentityFailed {
|
|
11081
11336
|
message: string;
|
|
@@ -11083,10 +11338,11 @@ interface PublicDeleteIdentityFailed {
|
|
|
11083
11338
|
}
|
|
11084
11339
|
declare class DeleteIdentityFailedError extends Error {
|
|
11085
11340
|
body: PublicDeleteIdentityFailed & FreestyleError;
|
|
11341
|
+
traceId?: string | undefined;
|
|
11086
11342
|
static readonly code: string;
|
|
11087
11343
|
static readonly statusCode: number;
|
|
11088
11344
|
static readonly description: string;
|
|
11089
|
-
constructor(body: PublicDeleteIdentityFailed & FreestyleError);
|
|
11345
|
+
constructor(body: PublicDeleteIdentityFailed & FreestyleError, traceId?: string | undefined);
|
|
11090
11346
|
}
|
|
11091
11347
|
interface PublicCreateIdentityFailed {
|
|
11092
11348
|
message: string;
|
|
@@ -11094,66 +11350,75 @@ interface PublicCreateIdentityFailed {
|
|
|
11094
11350
|
}
|
|
11095
11351
|
declare class CreateIdentityFailedError extends Error {
|
|
11096
11352
|
body: PublicCreateIdentityFailed & FreestyleError;
|
|
11353
|
+
traceId?: string | undefined;
|
|
11097
11354
|
static readonly code: string;
|
|
11098
11355
|
static readonly statusCode: number;
|
|
11099
11356
|
static readonly description: string;
|
|
11100
|
-
constructor(body: PublicCreateIdentityFailed & FreestyleError);
|
|
11357
|
+
constructor(body: PublicCreateIdentityFailed & FreestyleError, traceId?: string | undefined);
|
|
11101
11358
|
}
|
|
11102
11359
|
declare class VmPermissionNotFoundError extends Error {
|
|
11103
11360
|
body: unknown & FreestyleError;
|
|
11361
|
+
traceId?: string | undefined;
|
|
11104
11362
|
static readonly code: string;
|
|
11105
11363
|
static readonly statusCode: number;
|
|
11106
11364
|
static readonly description: string;
|
|
11107
|
-
constructor(body: unknown & FreestyleError);
|
|
11365
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
11108
11366
|
}
|
|
11109
11367
|
declare class PermissionNotFoundError extends Error {
|
|
11110
11368
|
body: unknown & FreestyleError;
|
|
11369
|
+
traceId?: string | undefined;
|
|
11111
11370
|
static readonly code: string;
|
|
11112
11371
|
static readonly statusCode: number;
|
|
11113
11372
|
static readonly description: string;
|
|
11114
|
-
constructor(body: unknown & FreestyleError);
|
|
11373
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
11115
11374
|
}
|
|
11116
11375
|
declare class GitRepositoryAccessDeniedError extends Error {
|
|
11117
11376
|
body: unknown & FreestyleError;
|
|
11377
|
+
traceId?: string | undefined;
|
|
11118
11378
|
static readonly code: string;
|
|
11119
11379
|
static readonly statusCode: number;
|
|
11120
11380
|
static readonly description: string;
|
|
11121
|
-
constructor(body: unknown & FreestyleError);
|
|
11381
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
11122
11382
|
}
|
|
11123
11383
|
declare class GitRepositoryNotFoundError extends Error {
|
|
11124
11384
|
body: unknown & FreestyleError;
|
|
11385
|
+
traceId?: string | undefined;
|
|
11125
11386
|
static readonly code: string;
|
|
11126
11387
|
static readonly statusCode: number;
|
|
11127
11388
|
static readonly description: string;
|
|
11128
|
-
constructor(body: unknown & FreestyleError);
|
|
11389
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
11129
11390
|
}
|
|
11130
11391
|
declare class CannotDeleteManagedIdentityError extends Error {
|
|
11131
11392
|
body: unknown & FreestyleError;
|
|
11393
|
+
traceId?: string | undefined;
|
|
11132
11394
|
static readonly code: string;
|
|
11133
11395
|
static readonly statusCode: number;
|
|
11134
11396
|
static readonly description: string;
|
|
11135
|
-
constructor(body: unknown & FreestyleError);
|
|
11397
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
11136
11398
|
}
|
|
11137
11399
|
declare class CannotModifyManagedIdentityError extends Error {
|
|
11138
11400
|
body: unknown & FreestyleError;
|
|
11401
|
+
traceId?: string | undefined;
|
|
11139
11402
|
static readonly code: string;
|
|
11140
11403
|
static readonly statusCode: number;
|
|
11141
11404
|
static readonly description: string;
|
|
11142
|
-
constructor(body: unknown & FreestyleError);
|
|
11405
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
11143
11406
|
}
|
|
11144
11407
|
declare class IdentityAccessDeniedError extends Error {
|
|
11145
11408
|
body: unknown & FreestyleError;
|
|
11409
|
+
traceId?: string | undefined;
|
|
11146
11410
|
static readonly code: string;
|
|
11147
11411
|
static readonly statusCode: number;
|
|
11148
11412
|
static readonly description: string;
|
|
11149
|
-
constructor(body: unknown & FreestyleError);
|
|
11413
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
11150
11414
|
}
|
|
11151
11415
|
declare class IdentityNotFoundError extends Error {
|
|
11152
11416
|
body: unknown & FreestyleError;
|
|
11417
|
+
traceId?: string | undefined;
|
|
11153
11418
|
static readonly code: string;
|
|
11154
11419
|
static readonly statusCode: number;
|
|
11155
11420
|
static readonly description: string;
|
|
11156
|
-
constructor(body: unknown & FreestyleError);
|
|
11421
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
11157
11422
|
}
|
|
11158
11423
|
interface PublicExecuteInternalError {
|
|
11159
11424
|
message: string;
|
|
@@ -11161,17 +11426,19 @@ interface PublicExecuteInternalError {
|
|
|
11161
11426
|
}
|
|
11162
11427
|
declare class ExecuteInternalErrorError extends Error {
|
|
11163
11428
|
body: PublicExecuteInternalError & FreestyleError;
|
|
11429
|
+
traceId?: string | undefined;
|
|
11164
11430
|
static readonly code: string;
|
|
11165
11431
|
static readonly statusCode: number;
|
|
11166
11432
|
static readonly description: string;
|
|
11167
|
-
constructor(body: PublicExecuteInternalError & FreestyleError);
|
|
11433
|
+
constructor(body: PublicExecuteInternalError & FreestyleError, traceId?: string | undefined);
|
|
11168
11434
|
}
|
|
11169
11435
|
declare class ExecuteAccessDeniedError extends Error {
|
|
11170
11436
|
body: unknown & FreestyleError;
|
|
11437
|
+
traceId?: string | undefined;
|
|
11171
11438
|
static readonly code: string;
|
|
11172
11439
|
static readonly statusCode: number;
|
|
11173
11440
|
static readonly description: string;
|
|
11174
|
-
constructor(body: unknown & FreestyleError);
|
|
11441
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
11175
11442
|
}
|
|
11176
11443
|
interface PublicListRunsFailed {
|
|
11177
11444
|
message: string;
|
|
@@ -11179,10 +11446,11 @@ interface PublicListRunsFailed {
|
|
|
11179
11446
|
}
|
|
11180
11447
|
declare class ListRunsFailedError extends Error {
|
|
11181
11448
|
body: PublicListRunsFailed & FreestyleError;
|
|
11449
|
+
traceId?: string | undefined;
|
|
11182
11450
|
static readonly code: string;
|
|
11183
11451
|
static readonly statusCode: number;
|
|
11184
11452
|
static readonly description: string;
|
|
11185
|
-
constructor(body: PublicListRunsFailed & FreestyleError);
|
|
11453
|
+
constructor(body: PublicListRunsFailed & FreestyleError, traceId?: string | undefined);
|
|
11186
11454
|
}
|
|
11187
11455
|
interface PublicExecutionError {
|
|
11188
11456
|
message: string;
|
|
@@ -11190,10 +11458,11 @@ interface PublicExecutionError {
|
|
|
11190
11458
|
}
|
|
11191
11459
|
declare class ExecutionErrorError extends Error {
|
|
11192
11460
|
body: PublicExecutionError & FreestyleError;
|
|
11461
|
+
traceId?: string | undefined;
|
|
11193
11462
|
static readonly code: string;
|
|
11194
11463
|
static readonly statusCode: number;
|
|
11195
11464
|
static readonly description: string;
|
|
11196
|
-
constructor(body: PublicExecutionError & FreestyleError);
|
|
11465
|
+
constructor(body: PublicExecutionError & FreestyleError, traceId?: string | undefined);
|
|
11197
11466
|
}
|
|
11198
11467
|
interface PublicConnectionFailed {
|
|
11199
11468
|
message: string;
|
|
@@ -11201,10 +11470,11 @@ interface PublicConnectionFailed {
|
|
|
11201
11470
|
}
|
|
11202
11471
|
declare class ConnectionFailedError extends Error {
|
|
11203
11472
|
body: PublicConnectionFailed & FreestyleError;
|
|
11473
|
+
traceId?: string | undefined;
|
|
11204
11474
|
static readonly code: string;
|
|
11205
11475
|
static readonly statusCode: number;
|
|
11206
11476
|
static readonly description: string;
|
|
11207
|
-
constructor(body: PublicConnectionFailed & FreestyleError);
|
|
11477
|
+
constructor(body: PublicConnectionFailed & FreestyleError, traceId?: string | undefined);
|
|
11208
11478
|
}
|
|
11209
11479
|
interface PublicMetadataWriteFailed {
|
|
11210
11480
|
message: string;
|
|
@@ -11212,10 +11482,11 @@ interface PublicMetadataWriteFailed {
|
|
|
11212
11482
|
}
|
|
11213
11483
|
declare class MetadataWriteFailedError extends Error {
|
|
11214
11484
|
body: PublicMetadataWriteFailed & FreestyleError;
|
|
11485
|
+
traceId?: string | undefined;
|
|
11215
11486
|
static readonly code: string;
|
|
11216
11487
|
static readonly statusCode: number;
|
|
11217
11488
|
static readonly description: string;
|
|
11218
|
-
constructor(body: PublicMetadataWriteFailed & FreestyleError);
|
|
11489
|
+
constructor(body: PublicMetadataWriteFailed & FreestyleError, traceId?: string | undefined);
|
|
11219
11490
|
}
|
|
11220
11491
|
interface PublicNodeModulesInstallFailed {
|
|
11221
11492
|
message: string;
|
|
@@ -11223,10 +11494,11 @@ interface PublicNodeModulesInstallFailed {
|
|
|
11223
11494
|
}
|
|
11224
11495
|
declare class NodeModulesInstallFailedError extends Error {
|
|
11225
11496
|
body: PublicNodeModulesInstallFailed & FreestyleError;
|
|
11497
|
+
traceId?: string | undefined;
|
|
11226
11498
|
static readonly code: string;
|
|
11227
11499
|
static readonly statusCode: number;
|
|
11228
11500
|
static readonly description: string;
|
|
11229
|
-
constructor(body: PublicNodeModulesInstallFailed & FreestyleError);
|
|
11501
|
+
constructor(body: PublicNodeModulesInstallFailed & FreestyleError, traceId?: string | undefined);
|
|
11230
11502
|
}
|
|
11231
11503
|
interface PublicNodeModulesDownloadFailed {
|
|
11232
11504
|
message: string;
|
|
@@ -11234,10 +11506,11 @@ interface PublicNodeModulesDownloadFailed {
|
|
|
11234
11506
|
}
|
|
11235
11507
|
declare class NodeModulesDownloadFailedError extends Error {
|
|
11236
11508
|
body: PublicNodeModulesDownloadFailed & FreestyleError;
|
|
11509
|
+
traceId?: string | undefined;
|
|
11237
11510
|
static readonly code: string;
|
|
11238
11511
|
static readonly statusCode: number;
|
|
11239
11512
|
static readonly description: string;
|
|
11240
|
-
constructor(body: PublicNodeModulesDownloadFailed & FreestyleError);
|
|
11513
|
+
constructor(body: PublicNodeModulesDownloadFailed & FreestyleError, traceId?: string | undefined);
|
|
11241
11514
|
}
|
|
11242
11515
|
interface PublicLockGenerationFailed {
|
|
11243
11516
|
message: string;
|
|
@@ -11245,10 +11518,11 @@ interface PublicLockGenerationFailed {
|
|
|
11245
11518
|
}
|
|
11246
11519
|
declare class LockGenerationFailedError extends Error {
|
|
11247
11520
|
body: PublicLockGenerationFailed & FreestyleError;
|
|
11521
|
+
traceId?: string | undefined;
|
|
11248
11522
|
static readonly code: string;
|
|
11249
11523
|
static readonly statusCode: number;
|
|
11250
11524
|
static readonly description: string;
|
|
11251
|
-
constructor(body: PublicLockGenerationFailed & FreestyleError);
|
|
11525
|
+
constructor(body: PublicLockGenerationFailed & FreestyleError, traceId?: string | undefined);
|
|
11252
11526
|
}
|
|
11253
11527
|
interface PublicWriteScriptFailed {
|
|
11254
11528
|
message: string;
|
|
@@ -11256,10 +11530,11 @@ interface PublicWriteScriptFailed {
|
|
|
11256
11530
|
}
|
|
11257
11531
|
declare class WriteScriptFailedError extends Error {
|
|
11258
11532
|
body: PublicWriteScriptFailed & FreestyleError;
|
|
11533
|
+
traceId?: string | undefined;
|
|
11259
11534
|
static readonly code: string;
|
|
11260
11535
|
static readonly statusCode: number;
|
|
11261
11536
|
static readonly description: string;
|
|
11262
|
-
constructor(body: PublicWriteScriptFailed & FreestyleError);
|
|
11537
|
+
constructor(body: PublicWriteScriptFailed & FreestyleError, traceId?: string | undefined);
|
|
11263
11538
|
}
|
|
11264
11539
|
interface PublicDirectoryCreationFailed {
|
|
11265
11540
|
message: string;
|
|
@@ -11267,10 +11542,11 @@ interface PublicDirectoryCreationFailed {
|
|
|
11267
11542
|
}
|
|
11268
11543
|
declare class DirectoryCreationFailedError extends Error {
|
|
11269
11544
|
body: PublicDirectoryCreationFailed & FreestyleError;
|
|
11545
|
+
traceId?: string | undefined;
|
|
11270
11546
|
static readonly code: string;
|
|
11271
11547
|
static readonly statusCode: number;
|
|
11272
11548
|
static readonly description: string;
|
|
11273
|
-
constructor(body: PublicDirectoryCreationFailed & FreestyleError);
|
|
11549
|
+
constructor(body: PublicDirectoryCreationFailed & FreestyleError, traceId?: string | undefined);
|
|
11274
11550
|
}
|
|
11275
11551
|
interface PublicNetworkPermissionsFailed {
|
|
11276
11552
|
message: string;
|
|
@@ -11278,10 +11554,11 @@ interface PublicNetworkPermissionsFailed {
|
|
|
11278
11554
|
}
|
|
11279
11555
|
declare class NetworkPermissionsFailedError extends Error {
|
|
11280
11556
|
body: PublicNetworkPermissionsFailed & FreestyleError;
|
|
11557
|
+
traceId?: string | undefined;
|
|
11281
11558
|
static readonly code: string;
|
|
11282
11559
|
static readonly statusCode: number;
|
|
11283
11560
|
static readonly description: string;
|
|
11284
|
-
constructor(body: PublicNetworkPermissionsFailed & FreestyleError);
|
|
11561
|
+
constructor(body: PublicNetworkPermissionsFailed & FreestyleError, traceId?: string | undefined);
|
|
11285
11562
|
}
|
|
11286
11563
|
interface PublicLoggingFailed {
|
|
11287
11564
|
message: string;
|
|
@@ -11289,10 +11566,11 @@ interface PublicLoggingFailed {
|
|
|
11289
11566
|
}
|
|
11290
11567
|
declare class LoggingFailedError extends Error {
|
|
11291
11568
|
body: PublicLoggingFailed & FreestyleError;
|
|
11569
|
+
traceId?: string | undefined;
|
|
11292
11570
|
static readonly code: string;
|
|
11293
11571
|
static readonly statusCode: number;
|
|
11294
11572
|
static readonly description: string;
|
|
11295
|
-
constructor(body: PublicLoggingFailed & FreestyleError);
|
|
11573
|
+
constructor(body: PublicLoggingFailed & FreestyleError, traceId?: string | undefined);
|
|
11296
11574
|
}
|
|
11297
11575
|
interface PublicRunNotFound {
|
|
11298
11576
|
runId: string;
|
|
@@ -11300,10 +11578,11 @@ interface PublicRunNotFound {
|
|
|
11300
11578
|
}
|
|
11301
11579
|
declare class RunNotFoundError extends Error {
|
|
11302
11580
|
body: PublicRunNotFound & FreestyleError;
|
|
11581
|
+
traceId?: string | undefined;
|
|
11303
11582
|
static readonly code: string;
|
|
11304
11583
|
static readonly statusCode: number;
|
|
11305
11584
|
static readonly description: string;
|
|
11306
|
-
constructor(body: PublicRunNotFound & FreestyleError);
|
|
11585
|
+
constructor(body: PublicRunNotFound & FreestyleError, traceId?: string | undefined);
|
|
11307
11586
|
}
|
|
11308
11587
|
interface PublicLimitExceeded {
|
|
11309
11588
|
limit: number;
|
|
@@ -11312,10 +11591,11 @@ interface PublicLimitExceeded {
|
|
|
11312
11591
|
}
|
|
11313
11592
|
declare class LimitExceededError extends Error {
|
|
11314
11593
|
body: PublicLimitExceeded & FreestyleError;
|
|
11594
|
+
traceId?: string | undefined;
|
|
11315
11595
|
static readonly code: string;
|
|
11316
11596
|
static readonly statusCode: number;
|
|
11317
11597
|
static readonly description: string;
|
|
11318
|
-
constructor(body: PublicLimitExceeded & FreestyleError);
|
|
11598
|
+
constructor(body: PublicLimitExceeded & FreestyleError, traceId?: string | undefined);
|
|
11319
11599
|
}
|
|
11320
11600
|
interface PublicFailedToProvisionCertificate {
|
|
11321
11601
|
message: string;
|
|
@@ -11323,10 +11603,11 @@ interface PublicFailedToProvisionCertificate {
|
|
|
11323
11603
|
}
|
|
11324
11604
|
declare class FailedToProvisionCertificateError extends Error {
|
|
11325
11605
|
body: PublicFailedToProvisionCertificate & FreestyleError;
|
|
11606
|
+
traceId?: string | undefined;
|
|
11326
11607
|
static readonly code: string;
|
|
11327
11608
|
static readonly statusCode: number;
|
|
11328
11609
|
static readonly description: string;
|
|
11329
|
-
constructor(body: PublicFailedToProvisionCertificate & FreestyleError);
|
|
11610
|
+
constructor(body: PublicFailedToProvisionCertificate & FreestyleError, traceId?: string | undefined);
|
|
11330
11611
|
}
|
|
11331
11612
|
interface PublicFailedToInsertDomainMapping {
|
|
11332
11613
|
message: string;
|
|
@@ -11334,10 +11615,11 @@ interface PublicFailedToInsertDomainMapping {
|
|
|
11334
11615
|
}
|
|
11335
11616
|
declare class FailedToInsertDomainMappingError extends Error {
|
|
11336
11617
|
body: PublicFailedToInsertDomainMapping & FreestyleError;
|
|
11618
|
+
traceId?: string | undefined;
|
|
11337
11619
|
static readonly code: string;
|
|
11338
11620
|
static readonly statusCode: number;
|
|
11339
11621
|
static readonly description: string;
|
|
11340
|
-
constructor(body: PublicFailedToInsertDomainMapping & FreestyleError);
|
|
11622
|
+
constructor(body: PublicFailedToInsertDomainMapping & FreestyleError, traceId?: string | undefined);
|
|
11341
11623
|
}
|
|
11342
11624
|
interface PublicPermissionDenied {
|
|
11343
11625
|
message: string;
|
|
@@ -11345,10 +11627,11 @@ interface PublicPermissionDenied {
|
|
|
11345
11627
|
}
|
|
11346
11628
|
declare class PermissionDeniedError extends Error {
|
|
11347
11629
|
body: PublicPermissionDenied & FreestyleError;
|
|
11630
|
+
traceId?: string | undefined;
|
|
11348
11631
|
static readonly code: string;
|
|
11349
11632
|
static readonly statusCode: number;
|
|
11350
11633
|
static readonly description: string;
|
|
11351
|
-
constructor(body: PublicPermissionDenied & FreestyleError);
|
|
11634
|
+
constructor(body: PublicPermissionDenied & FreestyleError, traceId?: string | undefined);
|
|
11352
11635
|
}
|
|
11353
11636
|
interface PublicFailedToCheckPermissions {
|
|
11354
11637
|
message: string;
|
|
@@ -11356,10 +11639,11 @@ interface PublicFailedToCheckPermissions {
|
|
|
11356
11639
|
}
|
|
11357
11640
|
declare class FailedToCheckPermissionsError extends Error {
|
|
11358
11641
|
body: PublicFailedToCheckPermissions & FreestyleError;
|
|
11642
|
+
traceId?: string | undefined;
|
|
11359
11643
|
static readonly code: string;
|
|
11360
11644
|
static readonly statusCode: number;
|
|
11361
11645
|
static readonly description: string;
|
|
11362
|
-
constructor(body: PublicFailedToCheckPermissions & FreestyleError);
|
|
11646
|
+
constructor(body: PublicFailedToCheckPermissions & FreestyleError, traceId?: string | undefined);
|
|
11363
11647
|
}
|
|
11364
11648
|
interface PublicFailedToListDomains {
|
|
11365
11649
|
message: string;
|
|
@@ -11367,10 +11651,11 @@ interface PublicFailedToListDomains {
|
|
|
11367
11651
|
}
|
|
11368
11652
|
declare class FailedToListDomainsError extends Error {
|
|
11369
11653
|
body: PublicFailedToListDomains & FreestyleError;
|
|
11654
|
+
traceId?: string | undefined;
|
|
11370
11655
|
static readonly code: string;
|
|
11371
11656
|
static readonly statusCode: number;
|
|
11372
11657
|
static readonly description: string;
|
|
11373
|
-
constructor(body: PublicFailedToListDomains & FreestyleError);
|
|
11658
|
+
constructor(body: PublicFailedToListDomains & FreestyleError, traceId?: string | undefined);
|
|
11374
11659
|
}
|
|
11375
11660
|
interface PublicFailedToListVerifications {
|
|
11376
11661
|
message: string;
|
|
@@ -11378,10 +11663,11 @@ interface PublicFailedToListVerifications {
|
|
|
11378
11663
|
}
|
|
11379
11664
|
declare class FailedToListVerificationsError extends Error {
|
|
11380
11665
|
body: PublicFailedToListVerifications & FreestyleError;
|
|
11666
|
+
traceId?: string | undefined;
|
|
11381
11667
|
static readonly code: string;
|
|
11382
11668
|
static readonly statusCode: number;
|
|
11383
11669
|
static readonly description: string;
|
|
11384
|
-
constructor(body: PublicFailedToListVerifications & FreestyleError);
|
|
11670
|
+
constructor(body: PublicFailedToListVerifications & FreestyleError, traceId?: string | undefined);
|
|
11385
11671
|
}
|
|
11386
11672
|
interface PublicFailedToVerifyDomain {
|
|
11387
11673
|
message: string;
|
|
@@ -11389,10 +11675,11 @@ interface PublicFailedToVerifyDomain {
|
|
|
11389
11675
|
}
|
|
11390
11676
|
declare class FailedToVerifyDomainError extends Error {
|
|
11391
11677
|
body: PublicFailedToVerifyDomain & FreestyleError;
|
|
11678
|
+
traceId?: string | undefined;
|
|
11392
11679
|
static readonly code: string;
|
|
11393
11680
|
static readonly statusCode: number;
|
|
11394
11681
|
static readonly description: string;
|
|
11395
|
-
constructor(body: PublicFailedToVerifyDomain & FreestyleError);
|
|
11682
|
+
constructor(body: PublicFailedToVerifyDomain & FreestyleError, traceId?: string | undefined);
|
|
11396
11683
|
}
|
|
11397
11684
|
interface PublicVerificationFailed {
|
|
11398
11685
|
message: string;
|
|
@@ -11400,10 +11687,11 @@ interface PublicVerificationFailed {
|
|
|
11400
11687
|
}
|
|
11401
11688
|
declare class VerificationFailedError extends Error {
|
|
11402
11689
|
body: PublicVerificationFailed & FreestyleError;
|
|
11690
|
+
traceId?: string | undefined;
|
|
11403
11691
|
static readonly code: string;
|
|
11404
11692
|
static readonly statusCode: number;
|
|
11405
11693
|
static readonly description: string;
|
|
11406
|
-
constructor(body: PublicVerificationFailed & FreestyleError);
|
|
11694
|
+
constructor(body: PublicVerificationFailed & FreestyleError, traceId?: string | undefined);
|
|
11407
11695
|
}
|
|
11408
11696
|
interface PublicFailedToDeleteVerification {
|
|
11409
11697
|
message: string;
|
|
@@ -11411,10 +11699,11 @@ interface PublicFailedToDeleteVerification {
|
|
|
11411
11699
|
}
|
|
11412
11700
|
declare class FailedToDeleteVerificationError extends Error {
|
|
11413
11701
|
body: PublicFailedToDeleteVerification & FreestyleError;
|
|
11702
|
+
traceId?: string | undefined;
|
|
11414
11703
|
static readonly code: string;
|
|
11415
11704
|
static readonly statusCode: number;
|
|
11416
11705
|
static readonly description: string;
|
|
11417
|
-
constructor(body: PublicFailedToDeleteVerification & FreestyleError);
|
|
11706
|
+
constructor(body: PublicFailedToDeleteVerification & FreestyleError, traceId?: string | undefined);
|
|
11418
11707
|
}
|
|
11419
11708
|
interface PublicVerificationNotFound {
|
|
11420
11709
|
domain: string;
|
|
@@ -11422,10 +11711,11 @@ interface PublicVerificationNotFound {
|
|
|
11422
11711
|
}
|
|
11423
11712
|
declare class VerificationNotFoundError extends Error {
|
|
11424
11713
|
body: PublicVerificationNotFound & FreestyleError;
|
|
11714
|
+
traceId?: string | undefined;
|
|
11425
11715
|
static readonly code: string;
|
|
11426
11716
|
static readonly statusCode: number;
|
|
11427
11717
|
static readonly description: string;
|
|
11428
|
-
constructor(body: PublicVerificationNotFound & FreestyleError);
|
|
11718
|
+
constructor(body: PublicVerificationNotFound & FreestyleError, traceId?: string | undefined);
|
|
11429
11719
|
}
|
|
11430
11720
|
interface PublicFailedToCreateVerificationCode {
|
|
11431
11721
|
message: string;
|
|
@@ -11433,10 +11723,11 @@ interface PublicFailedToCreateVerificationCode {
|
|
|
11433
11723
|
}
|
|
11434
11724
|
declare class FailedToCreateVerificationCodeError extends Error {
|
|
11435
11725
|
body: PublicFailedToCreateVerificationCode & FreestyleError;
|
|
11726
|
+
traceId?: string | undefined;
|
|
11436
11727
|
static readonly code: string;
|
|
11437
11728
|
static readonly statusCode: number;
|
|
11438
11729
|
static readonly description: string;
|
|
11439
|
-
constructor(body: PublicFailedToCreateVerificationCode & FreestyleError);
|
|
11730
|
+
constructor(body: PublicFailedToCreateVerificationCode & FreestyleError, traceId?: string | undefined);
|
|
11440
11731
|
}
|
|
11441
11732
|
interface PublicInvalidDomain {
|
|
11442
11733
|
domain: string;
|
|
@@ -11444,10 +11735,11 @@ interface PublicInvalidDomain {
|
|
|
11444
11735
|
}
|
|
11445
11736
|
declare class InvalidDomainError extends Error {
|
|
11446
11737
|
body: PublicInvalidDomain & FreestyleError;
|
|
11738
|
+
traceId?: string | undefined;
|
|
11447
11739
|
static readonly code: string;
|
|
11448
11740
|
static readonly statusCode: number;
|
|
11449
11741
|
static readonly description: string;
|
|
11450
|
-
constructor(body: PublicInvalidDomain & FreestyleError);
|
|
11742
|
+
constructor(body: PublicInvalidDomain & FreestyleError, traceId?: string | undefined);
|
|
11451
11743
|
}
|
|
11452
11744
|
interface PublicCloudstateInternalError {
|
|
11453
11745
|
message: string;
|
|
@@ -11455,10 +11747,11 @@ interface PublicCloudstateInternalError {
|
|
|
11455
11747
|
}
|
|
11456
11748
|
declare class CloudstateInternalErrorError extends Error {
|
|
11457
11749
|
body: PublicCloudstateInternalError & FreestyleError;
|
|
11750
|
+
traceId?: string | undefined;
|
|
11458
11751
|
static readonly code: string;
|
|
11459
11752
|
static readonly statusCode: number;
|
|
11460
11753
|
static readonly description: string;
|
|
11461
|
-
constructor(body: PublicCloudstateInternalError & FreestyleError);
|
|
11754
|
+
constructor(body: PublicCloudstateInternalError & FreestyleError, traceId?: string | undefined);
|
|
11462
11755
|
}
|
|
11463
11756
|
interface PublicCloudstateDatabaseError {
|
|
11464
11757
|
message: string;
|
|
@@ -11466,10 +11759,11 @@ interface PublicCloudstateDatabaseError {
|
|
|
11466
11759
|
}
|
|
11467
11760
|
declare class CloudstateDatabaseErrorError extends Error {
|
|
11468
11761
|
body: PublicCloudstateDatabaseError & FreestyleError;
|
|
11762
|
+
traceId?: string | undefined;
|
|
11469
11763
|
static readonly code: string;
|
|
11470
11764
|
static readonly statusCode: number;
|
|
11471
11765
|
static readonly description: string;
|
|
11472
|
-
constructor(body: PublicCloudstateDatabaseError & FreestyleError);
|
|
11766
|
+
constructor(body: PublicCloudstateDatabaseError & FreestyleError, traceId?: string | undefined);
|
|
11473
11767
|
}
|
|
11474
11768
|
interface PublicCloudstateAccessDenied {
|
|
11475
11769
|
projectId: string;
|
|
@@ -11477,10 +11771,11 @@ interface PublicCloudstateAccessDenied {
|
|
|
11477
11771
|
}
|
|
11478
11772
|
declare class CloudstateAccessDeniedError extends Error {
|
|
11479
11773
|
body: PublicCloudstateAccessDenied & FreestyleError;
|
|
11774
|
+
traceId?: string | undefined;
|
|
11480
11775
|
static readonly code: string;
|
|
11481
11776
|
static readonly statusCode: number;
|
|
11482
11777
|
static readonly description: string;
|
|
11483
|
-
constructor(body: PublicCloudstateAccessDenied & FreestyleError);
|
|
11778
|
+
constructor(body: PublicCloudstateAccessDenied & FreestyleError, traceId?: string | undefined);
|
|
11484
11779
|
}
|
|
11485
11780
|
interface PublicRestoreFailed {
|
|
11486
11781
|
message: string;
|
|
@@ -11488,10 +11783,11 @@ interface PublicRestoreFailed {
|
|
|
11488
11783
|
}
|
|
11489
11784
|
declare class RestoreFailedError extends Error {
|
|
11490
11785
|
body: PublicRestoreFailed & FreestyleError;
|
|
11786
|
+
traceId?: string | undefined;
|
|
11491
11787
|
static readonly code: string;
|
|
11492
11788
|
static readonly statusCode: number;
|
|
11493
11789
|
static readonly description: string;
|
|
11494
|
-
constructor(body: PublicRestoreFailed & FreestyleError);
|
|
11790
|
+
constructor(body: PublicRestoreFailed & FreestyleError, traceId?: string | undefined);
|
|
11495
11791
|
}
|
|
11496
11792
|
interface PublicCreateBackupFailed {
|
|
11497
11793
|
message: string;
|
|
@@ -11499,10 +11795,11 @@ interface PublicCreateBackupFailed {
|
|
|
11499
11795
|
}
|
|
11500
11796
|
declare class CreateBackupFailedError extends Error {
|
|
11501
11797
|
body: PublicCreateBackupFailed & FreestyleError;
|
|
11798
|
+
traceId?: string | undefined;
|
|
11502
11799
|
static readonly code: string;
|
|
11503
11800
|
static readonly statusCode: number;
|
|
11504
11801
|
static readonly description: string;
|
|
11505
|
-
constructor(body: PublicCreateBackupFailed & FreestyleError);
|
|
11802
|
+
constructor(body: PublicCreateBackupFailed & FreestyleError, traceId?: string | undefined);
|
|
11506
11803
|
}
|
|
11507
11804
|
interface PublicBackupFailed {
|
|
11508
11805
|
message: string;
|
|
@@ -11510,10 +11807,11 @@ interface PublicBackupFailed {
|
|
|
11510
11807
|
}
|
|
11511
11808
|
declare class BackupFailedError extends Error {
|
|
11512
11809
|
body: PublicBackupFailed & FreestyleError;
|
|
11810
|
+
traceId?: string | undefined;
|
|
11513
11811
|
static readonly code: string;
|
|
11514
11812
|
static readonly statusCode: number;
|
|
11515
11813
|
static readonly description: string;
|
|
11516
|
-
constructor(body: PublicBackupFailed & FreestyleError);
|
|
11814
|
+
constructor(body: PublicBackupFailed & FreestyleError, traceId?: string | undefined);
|
|
11517
11815
|
}
|
|
11518
11816
|
interface PublicDeploymentFailed {
|
|
11519
11817
|
message: string;
|
|
@@ -11521,10 +11819,11 @@ interface PublicDeploymentFailed {
|
|
|
11521
11819
|
}
|
|
11522
11820
|
declare class DeploymentFailedError extends Error {
|
|
11523
11821
|
body: PublicDeploymentFailed & FreestyleError;
|
|
11822
|
+
traceId?: string | undefined;
|
|
11524
11823
|
static readonly code: string;
|
|
11525
11824
|
static readonly statusCode: number;
|
|
11526
11825
|
static readonly description: string;
|
|
11527
|
-
constructor(body: PublicDeploymentFailed & FreestyleError);
|
|
11826
|
+
constructor(body: PublicDeploymentFailed & FreestyleError, traceId?: string | undefined);
|
|
11528
11827
|
}
|
|
11529
11828
|
interface PublicInvalidDeploymentRequest {
|
|
11530
11829
|
message: string;
|
|
@@ -11532,10 +11831,11 @@ interface PublicInvalidDeploymentRequest {
|
|
|
11532
11831
|
}
|
|
11533
11832
|
declare class InvalidDeploymentRequestError extends Error {
|
|
11534
11833
|
body: PublicInvalidDeploymentRequest & FreestyleError;
|
|
11834
|
+
traceId?: string | undefined;
|
|
11535
11835
|
static readonly code: string;
|
|
11536
11836
|
static readonly statusCode: number;
|
|
11537
11837
|
static readonly description: string;
|
|
11538
|
-
constructor(body: PublicInvalidDeploymentRequest & FreestyleError);
|
|
11838
|
+
constructor(body: PublicInvalidDeploymentRequest & FreestyleError, traceId?: string | undefined);
|
|
11539
11839
|
}
|
|
11540
11840
|
interface PublicProjectNotFound {
|
|
11541
11841
|
projectId: string;
|
|
@@ -11543,24 +11843,27 @@ interface PublicProjectNotFound {
|
|
|
11543
11843
|
}
|
|
11544
11844
|
declare class ProjectNotFoundError extends Error {
|
|
11545
11845
|
body: PublicProjectNotFound & FreestyleError;
|
|
11846
|
+
traceId?: string | undefined;
|
|
11546
11847
|
static readonly code: string;
|
|
11547
11848
|
static readonly statusCode: number;
|
|
11548
11849
|
static readonly description: string;
|
|
11549
|
-
constructor(body: PublicProjectNotFound & FreestyleError);
|
|
11850
|
+
constructor(body: PublicProjectNotFound & FreestyleError, traceId?: string | undefined);
|
|
11550
11851
|
}
|
|
11551
11852
|
declare class GitRepoLimitExceededError extends Error {
|
|
11552
11853
|
body: unknown & FreestyleError;
|
|
11854
|
+
traceId?: string | undefined;
|
|
11553
11855
|
static readonly code: string;
|
|
11554
11856
|
static readonly statusCode: number;
|
|
11555
11857
|
static readonly description: string;
|
|
11556
|
-
constructor(body: unknown & FreestyleError);
|
|
11858
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
11557
11859
|
}
|
|
11558
11860
|
declare class EmptyTagError extends Error {
|
|
11559
11861
|
body: unknown & FreestyleError;
|
|
11862
|
+
traceId?: string | undefined;
|
|
11560
11863
|
static readonly code: string;
|
|
11561
11864
|
static readonly statusCode: number;
|
|
11562
11865
|
static readonly description: string;
|
|
11563
|
-
constructor(body: unknown & FreestyleError);
|
|
11866
|
+
constructor(body: unknown & FreestyleError, traceId?: string | undefined);
|
|
11564
11867
|
}
|
|
11565
11868
|
declare const FREESTYLE_ERROR_CODE_MAP: {
|
|
11566
11869
|
GIT_ERROR: typeof GitErrorError;
|