protoConfigStatic static method

ProtoMessageConfig protoConfigStatic()

Implementation

static ProtoMessageConfig protoConfigStatic() {
  return ProtoMessageConfig(
    syntax: ProtoSyntax.v3,
    options: [
      ProtoOptionHttp(
        name: "google.api.http.get",
        method: RequestMethod.get,
        path: "/compute/v1beta1/encrypted_seed/{cert_hash}",
      ),
    ],
    fields: [ProtoFieldConfig.string(1), ProtoFieldConfig.int64(2)],
  );
}