github.com/pulumi/pulumi/sdk/v3@v3.108.1/nodejs/proto/errors_pb.d.ts (about)

     1  // package: pulumirpc
     2  // file: pulumi/errors.proto
     3  
     4  /* tslint:disable */
     5  /* eslint-disable */
     6  
     7  import * as jspb from "google-protobuf";
     8  
     9  export class ErrorCause extends jspb.Message { 
    10      getMessage(): string;
    11      setMessage(value: string): ErrorCause;
    12      getStacktrace(): string;
    13      setStacktrace(value: string): ErrorCause;
    14  
    15      serializeBinary(): Uint8Array;
    16      toObject(includeInstance?: boolean): ErrorCause.AsObject;
    17      static toObject(includeInstance: boolean, msg: ErrorCause): ErrorCause.AsObject;
    18      static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
    19      static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
    20      static serializeBinaryToWriter(message: ErrorCause, writer: jspb.BinaryWriter): void;
    21      static deserializeBinary(bytes: Uint8Array): ErrorCause;
    22      static deserializeBinaryFromReader(message: ErrorCause, reader: jspb.BinaryReader): ErrorCause;
    23  }
    24  
    25  export namespace ErrorCause {
    26      export type AsObject = {
    27          message: string,
    28          stacktrace: string,
    29      }
    30  }